Skip to content
Draft
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
761 changes: 356 additions & 405 deletions Cargo.lock

Large diffs are not rendered by default.

29 changes: 16 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,23 @@ version = "0.7.0"
license = "Apache-2.0"
repository = "https://github.com/apache/iceberg-rust"
# Check the MSRV policy in README.md before changing this
rust-version = "1.87"
rust-version = "1.88"

[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(FALSE)'] }

[workspace.dependencies]
anyhow = "1.0.72"
apache-avro = { version = "0.20", features = ["zstandard"] }
array-init = "2"
arrow-arith = "56.2"
arrow-array = "56.2"
arrow-buffer = "56.2"
arrow-cast = "56.2"
arrow-ord = "56.2"
arrow-schema = "56.2"
arrow-select = "56.2"
arrow-string = "56.2"
arrow-arith = "57.0"
arrow-array = "57.0"
arrow-buffer = "57.0"
arrow-cast = "57.0"
arrow-ord = "57.0"
arrow-schema = "57.0"
arrow-select = "57.0"
arrow-string = "57.0"
as-any = "0.3.2"
async-trait = "0.1.89"
aws-config = "1.8.7"
Expand All @@ -62,9 +65,9 @@ bytes = "1.10"
chrono = "0.4.41"
clap = { version = "4.5.48", features = ["derive", "cargo"] }
ctor = "0.2.8"
datafusion = "50"
datafusion-cli = "50"
datafusion-sqllogictest = "50"
datafusion = { git = "https://github.com/apache/datafusion.git", rev = "f32984b2dbf9e5a193c20643ce624167295fbd61" }
datafusion-cli = { git = "https://github.com/apache/datafusion.git", rev = "f32984b2dbf9e5a193c20643ce624167295fbd61" }
datafusion-sqllogictest = { git = "https://github.com/apache/datafusion.git", rev = "f32984b2dbf9e5a193c20643ce624167295fbd61" }
derive_builder = "0.20"
dirs = "6"
enum-ordinalize = "4.3.0"
Expand Down Expand Up @@ -101,7 +104,7 @@ num-bigint = "0.4.6"
once_cell = "1.20"
opendal = "0.54.0"
ordered-float = "4"
parquet = "56.2"
parquet = "57.0"
pilota = "0.11.10"
port_scanner = "0.1.5"
pretty_assertions = "1.4"
Expand Down
Loading
Loading