-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (39 loc) · 1.17 KB
/
Copy pathCargo.toml
File metadata and controls
49 lines (39 loc) · 1.17 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
[package]
name = "iceberg-diff"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Fast parallel diff between two Iceberg snapshots, using Arrow + DataFusion"
[[bin]]
name = "iceberg-diff"
path = "src/main.rs"
[lib]
name = "iceberg_diff"
path = "src/lib.rs"
[dependencies]
iceberg = { git = "https://github.com/apache/iceberg-rust", tag = "v0.5.1" }
iceberg-catalog-rest = { git = "https://github.com/apache/iceberg-rust", tag = "v0.5.1" }
iceberg-datafusion = { git = "https://github.com/apache/iceberg-rust", tag = "v0.5.1" }
datafusion = "47"
arrow = "55"
arrow-array = "55"
arrow-schema = "55"
arrow-row = "55"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
clap = { version = "4", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1"
thiserror = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
parquet = { version = "55", features = ["arrow", "async"] }
uuid = { version = "1", features = ["v4"] }
tempfile = "3"
[[bin]]
name = "gen_fixture"
path = "src/bin/gen_fixture.rs"
[dev-dependencies]
anyhow = "1"