-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
42 lines (40 loc) · 1.18 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
[workspace]
members = [
"iceberg-rust-spec",
"iceberg-rust",
"datafusion_iceberg",
"datafusion-iceberg-sql",
"catalogs/iceberg-sql-catalog",
"catalogs/iceberg-rest-catalog",
"catalogs/iceberg-file-catalog",
"catalogs/iceberg-glue-catalog",
"catalogs/iceberg-s3tables-catalog",
]
resolver = "2"
[workspace.dependencies]
apache-avro = "0.17.0"
object_store = { version = "0.11.1", features = ["aws", "gcp"] }
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
futures = "0.3.30"
async-trait = "0.1"
chrono = { version = "0.4", default-features = false, features = ["serde", "clock"] }
arrow = "53.3.0"
arrow-schema = "53.3.0"
datafusion = "43.0.0"
datafusion-sql = "43.0.0"
datafusion-expr = "43.0.0"
datafusion-common = "43.0.0"
datafusion-execution = "43.0.0"
datafusion-functions = { version = "43.0.0", features = ["crypto_expressions"] }
datafusion-functions-aggregate = "43.0.0"
parquet = { version = "53.3.0", features = ["async", "object_store"] }
sqlparser = { version = "0.51.0", features = ["visitor"] }
thiserror = "2"
url = "^2.2"
uuid = { version = "1.3.2", features = ["serde", "v4"] }
itertools = "0.10.5"
derive-getters = "0.3.0"
tracing = "0.1"
tracing-futures = "0.2"