forked from JanKaul/iceberg-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (53 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
55 lines (53 loc) · 1.47 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
[workspace]
members = [
"catalogs/iceberg-file-catalog",
"catalogs/iceberg-glue-catalog",
"catalogs/iceberg-rest-catalog",
"catalogs/iceberg-s3tables-catalog",
"catalogs/iceberg-sql-catalog",
"datafusion-iceberg-sql",
"datafusion_iceberg",
"iceberg-rust",
"iceberg-rust-spec",
]
resolver = "2"
[workspace.dependencies]
apache-avro = "0.18"
arrow = "56"
arrow-schema = "56"
async-trait = "0.1"
bytes = "1"
chrono = { version = "0.4", default-features = false, features = [
"serde",
"clock",
] }
datafusion = "50"
datafusion-common = "50"
datafusion-execution = "50"
datafusion-expr = "50"
datafusion-functions = { version = "50", features = ["crypto_expressions"] }
datafusion-functions-aggregate = "50"
datafusion-sql = "50"
derive-getters = "0.5.0"
derive_builder = "0.20"
futures = "0.3.31"
getrandom = { version = "0.3.1", features = ["std"] }
itertools = "0.14.0"
lazy_static = "1.5.0"
lru = "0.16.0"
object_store = { version = "0.12", features = ["aws", "gcp", "azure"] }
murmur3 = { version = "0.5.2" }
parquet = { version = "56", features = ["async", "object_store"] }
pin-project-lite = "0.2"
regex = "1.11.1"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
sqlparser = { git = "https://github.com/Embucket/datafusion-sqlparser-rs.git", rev = "28012078c09714542c95ddbad8203a282fa37cb2", features = [
"visitor",
] }
thiserror = "2"
tracing = "0.1"
tracing-futures = "0.2"
url = "^2.5"
uuid = { version = "1.13.2", features = ["serde", "v4"] }