forked from datafusion-contrib/datafusion-federation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 823 Bytes
/
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
[workspace]
resolver = "2"
members = [
"datafusion-federation",
"datafusion-flight-sql-server",
"datafusion-flight-sql-table-provider",
]
[workspace.package]
version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/datafusion-contrib/datafusion-federation"
[workspace.dependencies]
arrow = "53.0.0"
arrow-flight = { version = "53.0.0", features = ["flight-sql-experimental"] }
arrow-json = "53.0.0"
async-stream = "0.3.5"
async-trait = "0.1.81"
datafusion = "42.0.0"
datafusion-federation = { path = "./datafusion-federation", version = "0.3.0" }
datafusion-substrait = "42.0.0"
futures = "0.3.30"
tokio = { version = "1.39.3", features = ["full"] }
tonic = { version = "0.12.1", features = [
"tls",
"transport",
"codegen",
"prost",
] }