forked from datafusion-contrib/datafusion-distributed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (60 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
67 lines (60 loc) · 1.8 KB
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
[workspace]
members = ["benchmarks"]
[workspace.dependencies]
datafusion = { version = "50.0.0", default-features = false }
datafusion-proto = { version = "50.0.0" }
[package]
name = "datafusion-distributed"
version = "0.1.0"
edition = "2024"
[dependencies]
chrono = { version = "0.4.42" }
datafusion = { workspace = true }
datafusion-proto = { workspace = true }
arrow-flight = "56.1.0"
arrow-select = "56.1.0"
async-trait = "0.1.88"
tokio = { version = "1.46.1", features = ["full"] }
# Updated to 0.13.1 to match arrow-flight 56.1.0
tonic = { version = "0.13.1", features = ["transport"] }
tower = "0.5.2"
http = "1.3.1"
itertools = "0.14.0"
futures = "0.3.31"
url = "2.5.4"
uuid = "1.17.0"
delegate = "0.13.4"
dashmap = "6.1.0"
prost = "0.13.5"
rand = "0.8.5"
object_store = "0.12.3"
bytes = "1.10.1"
# integration_tests deps
insta = { version = "1.43.1", features = ["filters"], optional = true }
tpchgen = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68", optional = true }
tpchgen-arrow = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68", optional = true }
parquet = { version = "56.1.0", optional = true }
arrow = { version = "56.1.0", optional = true }
tokio-stream = { version = "0.1.17", optional = true }
hyper-util = { version = "0.1.16", optional = true }
pin-project = "1.1.10"
[features]
integration = [
"insta",
"tpchgen",
"tpchgen-arrow",
"parquet",
"arrow",
"tokio-stream",
"hyper-util",
]
tpch = ["integration"]
[dev-dependencies]
structopt = "0.3"
insta = { version = "1.43.1", features = ["filters"] }
tpchgen = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68" }
tpchgen-arrow = { git = "https://github.com/clflushopt/tpchgen-rs", rev = "482ee68" }
parquet = "56.1.0"
arrow = "56.1.0"
tokio-stream = "0.1.17"
hyper-util = "0.1.16"