diff --git a/Cargo.lock b/Cargo.lock index a22a0b44c17..2ec254715d3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1642,7 +1642,7 @@ dependencies = [ "indicatif", "itertools 0.14.0", "lance-bench", - "parquet 58.1.0", + "parquet", "regex", "tokio", "tracing", @@ -2219,7 +2219,7 @@ dependencies = [ "log", "object_store 0.13.2", "parking_lot", - "parquet 58.1.0", + "parquet", "rand 0.9.4", "regex", "sqlparser 0.61.0", @@ -2392,7 +2392,7 @@ dependencies = [ "libc", "log", "object_store 0.13.2", - "parquet 58.1.0", + "parquet", "paste", "recursive", "sqlparser 0.61.0", @@ -2672,7 +2672,7 @@ dependencies = [ "log", "object_store 0.13.2", "parking_lot", - "parquet 58.1.0", + "parquet", "tokio", ] @@ -5138,13 +5138,13 @@ name = "lance-bench" version = "0.1.0" dependencies = [ "anyhow", - "arrow-cast 57.3.0", + "arrow-cast 58.1.0", "async-trait", "clap", "futures", "lance", "lance-encoding", - "parquet 57.3.0", + "parquet", "tempfile", "tokio", "tracing", @@ -6616,40 +6616,6 @@ dependencies = [ "windows-link", ] -[[package]] -name = "parquet" -version = "57.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ee96b29972a257b855ff2341b37e61af5f12d6af1158b6dcdb5b31ea07bb3cb" -dependencies = [ - "ahash 0.8.12", - "arrow-array 57.3.0", - "arrow-buffer 57.3.0", - "arrow-cast 57.3.0", - "arrow-data 57.3.0", - "arrow-ipc 57.3.0", - "arrow-schema 57.3.0", - "arrow-select 57.3.0", - "base64", - "brotli", - "bytes", - "chrono", - "flate2", - "half", - "hashbrown 0.16.1", - "lz4_flex 0.12.1", - "num-bigint", - "num-integer", - "num-traits", - "paste", - "seq-macro", - "simdutf8", - "snap", - "thrift", - "twox-hash", - "zstd", -] - [[package]] name = "parquet" version = "58.1.0" @@ -9969,7 +9935,7 @@ dependencies = [ "clap", "futures", "indicatif", - "parquet 58.1.0", + "parquet", "rand 0.10.1", "serde", "tabled", @@ -9998,7 +9964,7 @@ dependencies = [ "fastlanes", "futures", "mimalloc", - "parquet 58.1.0", + "parquet", "paste", "rand 0.10.1", "rand_distr 0.6.0", @@ -10153,7 +10119,7 @@ dependencies = [ "noodles-bgzf", "noodles-vcf", "parking_lot", - "parquet 58.1.0", + "parquet", "rand 0.10.1", "regex", "reqwest 0.13.2", @@ -10251,7 +10217,7 @@ dependencies = [ "bytes", "clap", "futures", - "parquet 58.1.0", + "parquet", "reqwest 0.13.2", "serde", "serde_json", @@ -10958,7 +10924,7 @@ dependencies = [ "indicatif", "itertools 0.14.0", "js-sys", - "parquet 58.1.0", + "parquet", "ratatui", "ratzilla", "serde", diff --git a/benchmarks/lance-bench/Cargo.toml b/benchmarks/lance-bench/Cargo.toml index 775b051dd9c..8423e01378b 100644 --- a/benchmarks/lance-bench/Cargo.toml +++ b/benchmarks/lance-bench/Cargo.toml @@ -19,11 +19,11 @@ lance = { version = "4", default-features = false } lance-encoding = { version = "4" } anyhow = { workspace = true } -arrow-cast = { version = "57" } +arrow-cast = { version = "58" } async-trait = { workspace = true } clap = { workspace = true, features = ["derive"] } futures = { workspace = true } -parquet = { version = "57" } +parquet = { version = "58" } tempfile = { workspace = true } tokio = { workspace = true, features = ["full"] } tracing = { workspace = true }