Skip to content

Commit ee6aeda

Browse files
committed
Merge branch 'main' of github.com:apache/iceberg-rust into fd-avro-pyiceberg
2 parents cff3d2b + f9061cc commit ee6aeda

File tree

21 files changed

+1046
-500
lines changed

21 files changed

+1046
-500
lines changed

Cargo.lock

Lines changed: 693 additions & 332 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,26 @@ rust-version = "1.84"
4242
anyhow = "1.0.72"
4343
apache-avro = "0.17"
4444
array-init = "2"
45-
arrow-arith = { version = "54.2.0" }
46-
arrow-array = { version = "54.2.0" }
47-
arrow-buffer = { version = "54.2.0" }
48-
arrow-cast = { version = "54.2.0" }
49-
arrow-ord = { version = "54.2.0" }
50-
arrow-schema = { version = "54.2.0" }
51-
arrow-select = { version = "54.2.0" }
52-
arrow-string = { version = "54.2.0" }
45+
arrow-arith = { version = "55" }
46+
arrow-array = { version = "55" }
47+
arrow-buffer = { version = "55" }
48+
arrow-cast = { version = "55" }
49+
arrow-ord = { version = "55" }
50+
arrow-schema = { version = "55" }
51+
arrow-select = { version = "55" }
52+
arrow-string = { version = "55" }
5353
async-std = "1.12"
54-
async-trait = "0.1.86"
55-
aws-config = "1.5"
54+
async-trait = "0.1.88"
55+
aws-config = "1.6.1"
5656
aws-sdk-glue = "1.39"
5757
bimap = "0.6"
58-
bytes = "1.9"
59-
chrono = "0.4.38"
60-
clap = { version = "4.5.27", features = ["derive", "cargo"] }
58+
bytes = "1.10"
59+
chrono = "0.4.40"
60+
clap = { version = "4.5.35", features = ["derive", "cargo"] }
6161
ctor = "0.2.8"
62-
datafusion = "45"
63-
datafusion-cli = "45"
64-
datafusion-sqllogictest = "45"
62+
datafusion = "47"
63+
datafusion-cli = "47"
64+
datafusion-sqllogictest = "47"
6565
derive_builder = "0.20"
6666
dirs = "6"
6767
enum-ordinalize = "4.3.0"
@@ -71,7 +71,7 @@ fnv = "1.0.7"
7171
fs-err = "3.1.0"
7272
futures = "0.3"
7373
hive_metastore = "0.1"
74-
http = "1.1"
74+
http = "1.2"
7575
iceberg = { version = "0.4.0", path = "./crates/iceberg" }
7676
iceberg-catalog-memory = { version = "0.4.0", path = "./crates/catalog/memory" }
7777
iceberg-catalog-rest = { version = "0.4.0", path = "./crates/catalog/rest" }
@@ -82,38 +82,39 @@ linkedbytes = "0.1.8"
8282
metainfo = "0.7.14"
8383
mimalloc = "0.1.46"
8484
mockito = "1"
85+
motore-macros = "0.4.3"
8586
murmur3 = "0.5.2"
8687
num-bigint = "0.4.6"
8788
once_cell = "1.20"
8889
opendal = "0.53.0"
8990
ordered-float = "4"
90-
parquet = "54.2.0"
91+
parquet = "55"
9192
pilota = "0.11.2"
9293
port_scanner = "0.1.5"
9394
pretty_assertions = "1.4"
9495
rand = "0.8.5"
9596
regex = "1.10.5"
9697
reqwest = { version = "0.12.12", default-features = false, features = ["json"] }
9798
roaring = { version = "0.10.12" }
98-
rust_decimal = "1.36"
99-
serde = { version = "1.0.204", features = ["rc"] }
99+
rust_decimal = "1.37.1"
100+
serde = { version = "1.0.210", features = ["rc"] }
100101
serde_bytes = "0.11.15"
101-
serde_derive = "1.0.204"
102+
serde_derive = "1.0.210"
102103
serde_json = "1.0.138"
103104
serde_repr = "0.1.16"
104105
serde_with = "3.4"
105-
sqllogictest = "0.26.4"
106+
sqllogictest = "0.28"
106107
stacker = "0.1.20"
107108
tempfile = "3.18"
108109
tera = "1"
109110
thrift = "0.17.0"
110111
tokio = { version = "1.44", default-features = false }
111112
toml = "0.8"
112-
tracing = "0.1.37"
113+
tracing = "0.1.40"
113114
tracing-subscriber = "0.3.8"
114115
typed-builder = "0.20"
115116
url = "2.5.4"
116-
uuid = { version = "1.14", features = ["v7"] }
117+
uuid = { version = "1.16", features = ["v7"] }
117118
volo = "0.10.6"
118119
volo-thrift = "0.10.6"
119120
zstd = "0.13.2"

0 commit comments

Comments
 (0)