forked from delta-io/kafka-delta-ingest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (47 loc) · 1.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "kafka-delta-ingest"
version = "0.1.0"
authors = ["R. Tyler Croy <[email protected]>", "Christian Williams <[email protected]>"]
edition = "2018"
[dependencies]
anyhow = "1"
async-trait = "0.1"
base64 = "0.13"
chrono = "0"
clap = { version = "3", features = ["color"] }
dipstick = "0.9"
env_logger = "0"
futures = "0.3"
jmespatch = { version = "0.3", features = ["sync"] }
lazy_static = "1"
log = "0"
maplit = "1"
parquet-format = "~2.6.1"
rdkafka = { version = "0.28", features = ["ssl-vendored"] }
rusoto_core = { version = "0.46" }
rusoto_credential = { version = "0.46" }
rusoto_s3 = { version = "0.46" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
strum = "0.20"
strum_macros = "0.20"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0", features = ["fs"] }
tokio-util = "0.6.3"
uuid = { version = "0.8", features = ["serde", "v4"] }
arrow = "6"
parquet = "6"
deltalake = { git = "https://github.com/delta-io/delta-rs.git", rev = "cba4e3d316c56c65dc1cb660dc7e6d380ddd3a6b", features = ["s3"] }
# sentry
sentry = { version = "0.23.0", optional = true }
[features]
sentry-ext = ["sentry"]
dynamic-linking = [ "rdkafka/dynamic-linking" ]
[dev-dependencies]
utime = "0.3"
serial_test = "*"
tempfile = "3"
parquet = { version = "6", features = ["cli"] }
[profile.release]
lto = true