diff --git a/Cargo.lock b/Cargo.lock index 85e9bf9..590b123 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -111,7 +111,7 @@ dependencies = [ "arrow-data", "arrow-ord", "arrow-row", - "arrow-schema", + "arrow-schema 53.4.1", "arrow-select", "arrow-string", ] @@ -125,7 +125,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "chrono", "half", "num", @@ -140,7 +140,7 @@ dependencies = [ "ahash", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "chrono", "half", "hashbrown 0.15.5", @@ -167,7 +167,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "arrow-select", "atoi", "base64", @@ -185,7 +185,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd962fc3bf7f60705b25bcaa8eb3318b2545aa1d528656525ebdd6a17a6cd6fb" dependencies = [ "arrow-buffer", - "arrow-schema", + "arrow-schema 53.4.1", "half", "num", ] @@ -199,7 +199,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "arrow-select", "half", "num", @@ -215,7 +215,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "half", ] @@ -228,6 +228,12 @@ dependencies = [ "bitflags", ] +[[package]] +name = "arrow-schema" +version = "60.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f85a9a58cd03560526b0066487574aacb9008e413504fa0ee23d61141e96c338" + [[package]] name = "arrow-select" version = "53.4.1" @@ -238,7 +244,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "num", ] @@ -251,7 +257,7 @@ dependencies = [ "arrow-array", "arrow-buffer", "arrow-data", - "arrow-schema", + "arrow-schema 53.4.1", "arrow-select", "memchr", "num", @@ -1032,7 +1038,7 @@ name = "justybase-spreadsheet" version = "0.1.1" dependencies = [ "arrow-array", - "arrow-schema", + "arrow-schema 60.0.0", "atoi_simd", "calamine", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 2c2143d..e9335cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ itoa = "1" # Arrow major here avoids duplicate/incompatible RecordBatch types in the # comparison example. This also constrains its chrono dependency to <0.4.40. arrow-array = "53" -arrow-schema = "53" +arrow-schema = "60" # Exact pin keeps the calamine cross-check/fingerprint benchmark reproducible. calamine = "=0.36.1" criterion = "0.8"