-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (58 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "rustcdc"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
[dependencies]
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.0", features = ["full"] }
tokio-stream = { version = "0.1.8", features = ["fs"], optional = true }
bytes = { version = "1"}
bitflags = "1.3"
thiserror = "1.0.30"
memchr = { version = "2.4.1", default-features = false }
futures-core = { version = "0.3.19", default-features = false }
futures-util = { version = "0.3.19", default-features = false, features = ["alloc", "sink"] }
futures = "0.3.21"
digest = { version = "0.10.3", features = ["std"] }
generic-array = "0.14.6"
rand = { version = "0.8.5", features = ["std", "std_rng"] }
rsa = "0.6.1"
sha1 = "0.10.1"
sha2 = "0.10.2"
smallvec = "1.7.0"
bit-set = "0.5.3"
byteorder = "1"
uuid = "1"
serde_json = "1"
serde = {version = "1", features=["derive"] }
bigdecimal = { version="^0.3.0", features=["serde"] }
base64 = "0.13"
regex = "1.6.0"
log = "0.4"
env_logger = "0.9.0"
chrono = "0"
deltalake = { git = "https://github.com/delta-io/delta-rs.git" }
once_cell = "1.14.0"
arrow = { version = "22" }
parquet = { version = "22" }
parquet2 = { version = "0.16" }
parquet-format = { version = "~4.0.0" }
#datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev = "07bc2c754805f536fe1cd873dbe6adfc0a21cbb3" }
datafusion = "12.0.0"
#[features]
#default = ["arrow", "parquet"]
#datafusion-ext = [
# "arrow",
# "parquet",
#]
sqlparser = "0.23.0"
stable-bloom-filter = "0.3"
[dev-dependencies]
tempdir = "0"
tempfile = "3"
[dependencies.rocksdb]
version = "0.18.0"
default-features = false
features = ["lz4"]