forked from GlareDB/glaredb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (47 loc) · 1.37 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
[workspace]
members = ["crates/*", "xtask", "bindings/*", "rstests"]
default-members = ["crates/*", "xtask", "rstests"]
resolver = "2"
[workspace.package]
version = "0.9.5"
edition = "2021"
[profile.release]
lto = "thin"
opt-level = 3
codegen-units = 1
strip = true
[workspace.lints.clippy]
wildcard_imports = "deny"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(release)'] }
[workspace.dependencies]
clap = { version = "4.5.20", features = ["derive"] }
datafusion = { version = "36.0.0", features = ["avro"] }
arrow-flight = { version = "50.0.0", features = ["flight-sql-experimental"] }
datafusion-proto = { version = "36.0.0" }
reqwest = { version = "0.12.8", default-features = false, features = [
"json",
"rustls-tls",
] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tonic = { version = "0.10", features = ["transport", "tls", "tls-roots"] }
anyhow = "1.0.91"
async-trait = "0.1.83"
chrono = "0.4.38"
futures = "0.3.31"
object_store = "0.9"
prost = "0.12"
prost-build = "0.12"
prost-types = "0.12"
rustls = "0.23.15"
serde_json = "1.0.128"
tempfile = "3.13.0"
thiserror = "1.0"
tracing = "0.1"
url = "2.5.2"
bytes = "1.8.0"
[workspace.dependencies.deltalake]
git = "https://github.com/GlareDB/delta-rs.git"
rev = "94773cb304ebc5eaa48d7540eb01cdf08f8b401f"
features = ["s3", "gcs", "azure", "datafusion"]