@@ -4,18 +4,25 @@ members = ["benchmarks"]
44[workspace .dependencies ]
55datafusion = { version = " 50.0.0" , default-features = false }
66datafusion-proto = { version = " 50.0.0" }
7+ arrow-flight = { version = " 56.1.0" , features = [" flight-sql-experimental" ] }
78
89[package ]
910name = " datafusion-distributed"
1011version = " 0.1.0"
1112edition = " 2024"
1213
14+ [[bin ]]
15+ name = " fuzz_sql_server"
16+ path = " src/bin/fuzz_sql_server.rs"
17+
1318[dependencies ]
1419chrono = { version = " 0.4.42" }
1520datafusion = { workspace = true }
1621datafusion-proto = { workspace = true }
17- arrow-flight = " 56.1.0 "
22+ arrow-flight = { workspace = true }
1823arrow-select = " 56.1.0"
24+ arrow-schema = " 56.1.0"
25+ arrow = " 56.1.0"
1926async-trait = " 0.1.88"
2027tokio = { version = " 1.46.1" , features = [" full" ] }
2128# Updated to 0.13.1 to match arrow-flight 56.1.0
@@ -38,18 +45,19 @@ insta = { version = "1.43.1", features = ["filters"], optional = true }
3845tpchgen = { git = " https://github.com/clflushopt/tpchgen-rs" , rev = " 482ee68" , optional = true }
3946tpchgen-arrow = { git = " https://github.com/clflushopt/tpchgen-rs" , rev = " 482ee68" , optional = true }
4047parquet = { version = " 56.1.0" , optional = true }
41- arrow = { version = " 56.1.0" , optional = true }
4248tokio-stream = { version = " 0.1.17" , optional = true }
4349hyper-util = { version = " 0.1.16" , optional = true }
4450pin-project = " 1.1.10"
51+ env_logger = " 0.10"
52+ log = " 0.4"
53+ mimalloc = " 0.1"
4554
4655[features ]
4756integration = [
4857 " insta" ,
4958 " tpchgen" ,
5059 " tpchgen-arrow" ,
5160 " parquet" ,
52- " arrow" ,
5361 " tokio-stream" ,
5462 " hyper-util" ,
5563]
0 commit comments