diff --git a/Cargo.lock b/Cargo.lock index 56f6ed8af..c9ef66014 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,19 +259,37 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e833808ff2d94ed40d9379848a950d995043c7fb3e81a30b383f4c6033821cc" dependencies = [ - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", + "arrow-arith 56.2.0", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-cast 56.2.0", "arrow-csv", - "arrow-data", - "arrow-ipc", + "arrow-data 56.2.0", + "arrow-ipc 56.2.0", "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-ord 56.2.0", + "arrow-row 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", + "arrow-string 56.2.0", +] + +[[package]] +name = "arrow" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb372a7cbcac02a35d3fb7b3fc1f969ec078e871f9bb899bf00a2e1809bec8a3" +dependencies = [ + "arrow-arith 57.1.0", + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-cast 57.1.0", + "arrow-data 57.1.0", + "arrow-ord 57.1.0", + "arrow-row 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", + "arrow-string 57.1.0", ] [[package]] @@ -280,14 +298,28 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad08897b81588f60ba983e3ca39bda2b179bdd84dced378e7df81a5313802ef8" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", "chrono", "num", ] +[[package]] +name = "arrow-arith" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f377dcd19e440174596d83deb49cd724886d91060c07fec4f67014ef9d54049" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "chrono", + "num-traits", +] + [[package]] name = "arrow-array" version = "56.2.0" @@ -295,9 +327,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d" dependencies = [ "ahash 0.8.12", - "arrow-buffer", - "arrow-data", - "arrow-schema", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", "chrono", "chrono-tz", "half", @@ -305,6 +337,24 @@ dependencies = [ "num", ] +[[package]] +name = "arrow-array" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a23eaff85a44e9fa914660fb0d0bb00b79c4a3d888b5334adb3ea4330c84f002" +dependencies = [ + "ahash 0.8.12", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "chrono", + "half", + "hashbrown 0.16.0", + "num-complex", + "num-integer", + "num-traits", +] + [[package]] name = "arrow-buffer" version = "56.2.0" @@ -316,17 +366,29 @@ dependencies = [ "num", ] +[[package]] +name = "arrow-buffer" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2819d893750cb3380ab31ebdc8c68874dd4429f90fd09180f3c93538bd21626" +dependencies = [ + "bytes", + "half", + "num-bigint", + "num-traits", +] + [[package]] name = "arrow-cast" version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", "atoi", "base64 0.22.1", "chrono", @@ -337,15 +399,36 @@ dependencies = [ "ryu", ] +[[package]] +name = "arrow-cast" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3d131abb183f80c450d4591dc784f8d7750c50c6e2bc3fcaad148afc8361271" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-ord 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", + "atoi", + "base64 0.22.1", + "chrono", + "half", + "lexical-core", + "num-traits", + "ryu", +] + [[package]] name = "arrow-csv" version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa9bf02705b5cf762b6f764c65f04ae9082c7cfc4e96e0c33548ee3f67012eb" dependencies = [ - "arrow-array", - "arrow-cast", - "arrow-schema", + "arrow-array 56.2.0", + "arrow-cast 56.2.0", + "arrow-schema 56.2.0", "chrono", "csv", "csv-core", @@ -358,39 +441,66 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0" dependencies = [ - "arrow-buffer", - "arrow-schema", + "arrow-buffer 56.2.0", + "arrow-schema 56.2.0", "half", "num", ] +[[package]] +name = "arrow-data" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05738f3d42cb922b9096f7786f606fcb8669260c2640df8490533bb2fa38c9d3" +dependencies = [ + "arrow-buffer 57.1.0", + "arrow-schema 57.1.0", + "half", + "num-integer", + "num-traits", +] + [[package]] name = "arrow-ipc" version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d3594dcddccc7f20fd069bc8e9828ce37220372680ff638c5e00dea427d88f5" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", "flatbuffers", "lz4_flex", "zstd", ] +[[package]] +name = "arrow-ipc" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d09446e8076c4b3f235603d9ea7c5494e73d441b01cd61fb33d7254c11964b3" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", + "flatbuffers", +] + [[package]] name = "arrow-json" version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "88cf36502b64a127dc659e3b305f1d993a544eab0d48cce704424e62074dc04b" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-schema", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-cast 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", "chrono", "half", "indexmap 2.12.0", @@ -408,11 +518,24 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c8f82583eb4f8d84d4ee55fd1cb306720cddead7596edce95b50ee418edf66f" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", +] + +[[package]] +name = "arrow-ord" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbc94fc7adec5d1ba9e8cd1b1e8d6f72423b33fe978bf1f46d970fafab787521" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", ] [[package]] @@ -421,10 +544,23 @@ version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d07ba24522229d9085031df6b94605e0f4b26e099fb7cdeec37abd941a73753" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", + "half", +] + +[[package]] +name = "arrow-row" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "169676f317157dc079cc5def6354d16db63d8861d61046d2f3883268ced6f99f" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", "half", ] @@ -439,6 +575,17 @@ dependencies = [ "serde_json", ] +[[package]] +name = "arrow-schema" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d27609cd7dd45f006abae27995c2729ef6f4b9361cde1ddd019dc31a5aa017e0" +dependencies = [ + "serde", + "serde_core", + "serde_json", +] + [[package]] name = "arrow-select" version = "56.2.0" @@ -446,30 +593,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a" dependencies = [ "ahash 0.8.12", - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", "num", ] +[[package]] +name = "arrow-select" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae980d021879ea119dd6e2a13912d81e64abed372d53163e804dfe84639d8010" +dependencies = [ + "ahash 0.8.12", + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "num-traits", +] + [[package]] name = "arrow-string" version = "56.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53f5183c150fbc619eede22b861ea7c0eebed8eaac0333eaa7f6da5205fd504d" dependencies = [ - "arrow-array", - "arrow-buffer", - "arrow-data", - "arrow-schema", - "arrow-select", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-data 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", "memchr", "num", "regex", "regex-syntax", ] +[[package]] +name = "arrow-string" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf35e8ef49dcf0c5f6d175edee6b8af7b45611805333129c541a8b89a0fc0534" +dependencies = [ + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-data 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", + "memchr", + "num-traits", + "regex", + "regex-syntax", +] + [[package]] name = "as-any" version = "0.3.2" @@ -2078,9 +2256,9 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2af15bb3c6ffa33011ef579f6b0bcbe7c26584688bd6c994f548e44df67f011a" dependencies = [ - "arrow", - "arrow-ipc", - "arrow-schema", + "arrow 56.2.0", + "arrow-ipc 56.2.0", + "arrow-schema 56.2.0", "async-trait", "bytes", "bzip2 0.6.1", @@ -2117,7 +2295,7 @@ dependencies = [ "log", "object_store", "parking_lot", - "parquet", + "parquet 56.2.0", "rand 0.9.2", "regex", "sqlparser 0.58.0", @@ -2135,7 +2313,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "187622262ad8f7d16d3be9202b4c1e0116f1c9aa387e5074245538b755261621" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "dashmap", "datafusion-common", @@ -2161,7 +2339,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9657314f0a32efd0382b9a46fdeb2d233273ece64baa68a7c45f5a192daf0f83" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "datafusion-catalog", "datafusion-common", @@ -2184,7 +2362,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a0b9c821d14e79070f42ea3a6d6618ced04d94277f0a32301918d7a022c250f" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "aws-config", "aws-credential-types", @@ -2197,7 +2375,7 @@ dependencies = [ "mimalloc", "object_store", "parking_lot", - "parquet", + "parquet 56.2.0", "regex", "rustyline", "tokio", @@ -2212,8 +2390,8 @@ checksum = "5a83760d9a13122d025fbdb1d5d5aaf93dd9ada5e90ea229add92aa30898b2d1" dependencies = [ "ahash 0.8.12", "apache-avro 0.20.0", - "arrow", - "arrow-ipc", + "arrow 56.2.0", + "arrow-ipc 56.2.0", "base64 0.22.1", "chrono", "half", @@ -2223,7 +2401,7 @@ dependencies = [ "libc", "log", "object_store", - "parquet", + "parquet 56.2.0", "paste", "recursive", "sqlparser 0.58.0", @@ -2248,7 +2426,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7256c9cb27a78709dd42d0c80f0178494637209cac6e29d5c93edd09b6721b86" dependencies = [ - "arrow", + "arrow 56.2.0", "async-compression", "async-trait", "bytes", @@ -2269,7 +2447,7 @@ dependencies = [ "itertools 0.14.0", "log", "object_store", - "parquet", + "parquet 56.2.0", "rand 0.9.2", "tempfile", "tokio", @@ -2286,7 +2464,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10d40b6953ebc9099b37adfd12fde97eb73ff0cee44355c6dea64b8a4537d561" dependencies = [ "apache-avro 0.20.0", - "arrow", + "arrow 56.2.0", "async-trait", "bytes", "chrono", @@ -2310,7 +2488,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64533a90f78e1684bfb113d200b540f18f268134622d7c96bbebc91354d04825" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "bytes", "datafusion-catalog", @@ -2335,7 +2513,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d7ebeb12c77df0aacad26f21b0d033aeede423a64b2b352f53048a75bf1d6e6" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "bytes", "datafusion-catalog", @@ -2360,7 +2538,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09e783c4c7d7faa1199af2df4761c68530634521b176a8d1331ddbc5a5c75133" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "bytes", "datafusion-catalog", @@ -2383,7 +2561,7 @@ dependencies = [ "log", "object_store", "parking_lot", - "parquet", + "parquet 56.2.0", "rand 0.9.2", "tokio", ] @@ -2400,7 +2578,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4cec0a57653bec7b933fb248d3ffa3fa3ab3bd33bd140dc917f714ac036f531" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "dashmap", "datafusion-common", @@ -2409,7 +2587,7 @@ dependencies = [ "log", "object_store", "parking_lot", - "parquet", + "parquet 56.2.0", "rand 0.9.2", "tempfile", "url", @@ -2421,7 +2599,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef76910bdca909722586389156d0aa4da4020e1631994d50fadd8ad4b1aa05fe" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "chrono", "datafusion-common", @@ -2443,7 +2621,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d155ccbda29591ca71a1344dd6bed26c65a4438072b400df9db59447f590bb6" dependencies = [ - "arrow", + "arrow 56.2.0", "datafusion-common", "indexmap 2.12.0", "itertools 0.14.0", @@ -2456,8 +2634,8 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7de2782136bd6014670fd84fe3b0ca3b3e4106c96403c3ae05c0598577139977" dependencies = [ - "arrow", - "arrow-buffer", + "arrow 56.2.0", + "arrow-buffer 56.2.0", "base64 0.22.1", "blake2", "blake3", @@ -2486,7 +2664,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07331fc13603a9da97b74fd8a273f4238222943dffdbbed1c4c6f862a30105bf" dependencies = [ "ahash 0.8.12", - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-doc", "datafusion-execution", @@ -2507,7 +2685,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b5951e572a8610b89968a09b5420515a121fbc305c0258651f318dc07c97ab17" dependencies = [ "ahash 0.8.12", - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-expr-common", "datafusion-physical-expr-common", @@ -2519,8 +2697,8 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdacca9302c3d8fc03f3e94f338767e786a88a33f5ebad6ffc0e7b50364b9ea3" dependencies = [ - "arrow", - "arrow-ord", + "arrow 56.2.0", + "arrow-ord 56.2.0", "datafusion-common", "datafusion-doc", "datafusion-execution", @@ -2541,7 +2719,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c37ff8a99434fbbad604a7e0669717c58c7c4f14c472d45067c4b016621d981" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "datafusion-catalog", "datafusion-common", @@ -2557,7 +2735,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48e2aea7c79c926cffabb13dc27309d4eaeb130f4a21c8ba91cdd241c813652b" dependencies = [ - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-doc", "datafusion-expr", @@ -2596,7 +2774,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6583ef666ae000a613a837e69e456681a9faa96347bf3877661e9e89e141d8a" dependencies = [ - "arrow", + "arrow 56.2.0", "chrono", "datafusion-common", "datafusion-expr", @@ -2617,7 +2795,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c8668103361a272cbbe3a61f72eca60c9b7c706e87cc3565bcf21e2b277b84f6" dependencies = [ "ahash 0.8.12", - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-expr", "datafusion-expr-common", @@ -2639,7 +2817,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "815acced725d30601b397e39958e0e55630e0a10d66ef7769c14ae6597298bb0" dependencies = [ - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-expr", "datafusion-functions", @@ -2655,7 +2833,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6652fe7b5bf87e85ed175f571745305565da2c0b599d98e697bcbedc7baa47c3" dependencies = [ "ahash 0.8.12", - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-expr-common", "hashbrown 0.14.5", @@ -2668,7 +2846,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49b7d623eb6162a3332b564a0907ba00895c505d101b99af78345f1acf929b5c" dependencies = [ - "arrow", + "arrow 56.2.0", "datafusion-common", "datafusion-execution", "datafusion-expr", @@ -2689,9 +2867,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2f7f778a1a838dec124efb96eae6144237d546945587557c9e6936b3414558c" dependencies = [ "ahash 0.8.12", - "arrow", - "arrow-ord", - "arrow-schema", + "arrow 56.2.0", + "arrow-ord 56.2.0", + "arrow-schema 56.2.0", "async-trait", "chrono", "datafusion-common", @@ -2719,8 +2897,8 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd1e59e2ca14fe3c30f141600b10ad8815e2856caa59ebbd0e3e07cd3d127a65" dependencies = [ - "arrow", - "arrow-schema", + "arrow 56.2.0", + "arrow-schema 56.2.0", "datafusion-common", "datafusion-datasource", "datafusion-expr-common", @@ -2737,7 +2915,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "21ef8e2745583619bd7a49474e8f45fbe98ebb31a133f27802217125a7b3d58d" dependencies = [ - "arrow", + "arrow 56.2.0", "async-trait", "dashmap", "datafusion-common", @@ -2761,7 +2939,7 @@ version = "50.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "89abd9868770386fede29e5a4b14f49c0bf48d652c3b9d7a8a0332329b87d50b" dependencies = [ - "arrow", + "arrow 56.2.0", "bigdecimal", "datafusion-common", "datafusion-expr", @@ -2787,7 +2965,7 @@ version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb6b80fa39021744edf13509bbdd7caef94c1bf101e384990210332dbddddf44" dependencies = [ - "arrow", + "arrow 56.2.0", "bytes", "chrono", "comfy-table", @@ -2796,7 +2974,7 @@ dependencies = [ "indexmap 2.12.0", "itertools 0.14.0", "object_store", - "parquet", + "parquet 56.2.0", "reqwest", "roaring", "rustc_version", @@ -2866,17 +3044,17 @@ version = "0.29.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "058a672565db45b857617c925f1b9a006bba4d339a87d2f9b1845e183b2ff4a9" dependencies = [ - "arrow", - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-ipc", + "arrow 56.2.0", + "arrow-arith 56.2.0", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-cast 56.2.0", + "arrow-ipc 56.2.0", "arrow-json", - "arrow-ord", - "arrow-row", - "arrow-schema", - "arrow-select", + "arrow-ord 56.2.0", + "arrow-row 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", "async-trait", "bytes", "cfg-if", @@ -2893,7 +3071,7 @@ dependencies = [ "num_cpus", "object_store", "parking_lot", - "parquet", + "parquet 56.2.0", "percent-encoding", "percent-encoding-rfc3986", "pin-project-lite", @@ -3993,14 +4171,14 @@ dependencies = [ "anyhow", "apache-avro 0.21.0", "array-init", - "arrow-arith", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-ord", - "arrow-schema", - "arrow-select", - "arrow-string", + "arrow-arith 56.2.0", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-cast 56.2.0", + "arrow-ord 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", + "arrow-string 56.2.0", "as-any", "async-trait", "backon", @@ -4020,7 +4198,7 @@ dependencies = [ "once_cell", "opendal", "ordered-float 4.6.0", - "parquet", + "parquet 56.2.0", "rand 0.8.5", "reqsign", "reqwest", @@ -4768,9 +4946,9 @@ version = "0.0.1" dependencies = [ "ahash 0.8.12", "anyhow", - "arrow", - "arrow-array", - "arrow-schema", + "arrow 57.1.0", + "arrow-array 57.1.0", + "arrow-schema 57.1.0", "async-stream", "async-trait", "backon", @@ -4806,7 +4984,7 @@ dependencies = [ "opentelemetry", "opentelemetry-otlp", "opentelemetry_sdk", - "parquet", + "parquet 57.1.0", "pico-args", "pprof", "prost 0.14.1", @@ -4834,9 +5012,9 @@ name = "moonlink_backend" version = "0.0.1" dependencies = [ "apache-avro 0.21.0", - "arrow", - "arrow-array", - "arrow-schema", + "arrow 57.1.0", + "arrow-array 57.1.0", + "arrow-schema 57.1.0", "futures", "iceberg", "moonlink", @@ -4847,7 +5025,7 @@ dependencies = [ "more-asserts", "native-tls", "nix 0.30.1", - "parquet", + "parquet 57.1.0", "postgres-native-tls", "rand 0.9.2", "roaring", @@ -4869,9 +5047,9 @@ version = "0.0.1" dependencies = [ "anyhow", "apache-avro 0.21.0", - "arrow", - "arrow-array", - "arrow-schema", + "arrow 57.1.0", + "arrow-array 57.1.0", + "arrow-schema 57.1.0", "async-stream", "async-trait", "bigdecimal", @@ -4887,7 +5065,7 @@ dependencies = [ "more-asserts", "native-tls", "num-traits", - "parquet", + "parquet 57.1.0", "pg_escape", "pin-project-lite", "postgres-native-tls", @@ -4908,8 +5086,8 @@ dependencies = [ name = "moonlink_datafusion" version = "0.0.1" dependencies = [ - "arrow", - "arrow-ipc", + "arrow 57.1.0", + "arrow-ipc 57.1.0", "async-trait", "bincode", "clap", @@ -4919,7 +5097,7 @@ dependencies = [ "moonlink_rpc", "moonlink_table_metadata", "object_store", - "parquet", + "parquet 57.1.0", "roaring", "tempfile", "thiserror", @@ -4988,11 +5166,11 @@ version = "0.0.1" dependencies = [ "anyhow", "apache-avro 0.21.0", - "arrow", - "arrow-array", - "arrow-buffer", - "arrow-ipc", - "arrow-schema", + "arrow 57.1.0", + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-ipc 57.1.0", + "arrow-schema 57.1.0", "async-recursion", "axum 0.8.6", "bytes", @@ -5013,7 +5191,7 @@ dependencies = [ "opentelemetry-proto", "opentelemetry-stdout", "opentelemetry_sdk", - "parquet", + "parquet 57.1.0", "prost 0.14.1", "reqwest", "serde", @@ -5599,13 +5777,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0dbd48ad52d7dccf8ea1b90a3ddbfaea4f69878dd7683e51c507d4bc52b5b27" dependencies = [ "ahash 0.8.12", - "arrow-array", - "arrow-buffer", - "arrow-cast", - "arrow-data", - "arrow-ipc", - "arrow-schema", - "arrow-select", + "arrow-array 56.2.0", + "arrow-buffer 56.2.0", + "arrow-cast 56.2.0", + "arrow-data 56.2.0", + "arrow-ipc 56.2.0", + "arrow-schema 56.2.0", + "arrow-select 56.2.0", "base64 0.22.1", "brotli", "bytes", @@ -5629,6 +5807,36 @@ dependencies = [ "zstd", ] +[[package]] +name = "parquet" +version = "57.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be3e4f6d320dd92bfa7d612e265d7d08bba0a240bab86af3425e1d255a511d89" +dependencies = [ + "ahash 0.8.12", + "arrow-array 57.1.0", + "arrow-buffer 57.1.0", + "arrow-cast 57.1.0", + "arrow-data 57.1.0", + "arrow-ipc 57.1.0", + "arrow-schema 57.1.0", + "arrow-select 57.1.0", + "base64 0.22.1", + "bytes", + "chrono", + "futures", + "half", + "hashbrown 0.16.0", + "num-bigint", + "num-integer", + "num-traits", + "paste", + "seq-macro", + "thrift", + "tokio", + "twox-hash", +] + [[package]] name = "paste" version = "1.0.15" diff --git a/Cargo.toml b/Cargo.toml index d35e8b225..decdf5247 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,13 +21,13 @@ license = "LicenseRef-BSL-1.1" [workspace.dependencies] anyhow = "1.0" apache-avro = "0.21" -arrow = { version = "56", default-features = false, features = [ +arrow = { version = "57", default-features = false, features = [ "canonical_extension_types", ] } -arrow-array = "56" -arrow-buffer = "56" -arrow-ipc = "56" -arrow-schema = { version = "56", features = ["serde"] } +arrow-array = "57" +arrow-buffer = "57" +arrow-ipc = "57" +arrow-schema = { version = "57", features = ["serde"] } async-stream = "0.3" async-trait = "0.1" backon = "1.6" @@ -88,7 +88,7 @@ opentelemetry_sdk = { version = "0.31", default-features = false, features = [ "trace", "metrics", ] } -parquet = { version = "56", default-features = false, features = [ +parquet = { version = "57", default-features = false, features = [ "arrow", "async", "arrow_canonical_extension_types",