diff --git a/.gitattributes b/.gitattributes index 9add35da..a313521e 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,2 @@ -# Auto-generated dependency files — collapse in GitHub diffs -*.tsv linguist-generated=true +# Generated TSVs keep trailing empty columns. +*.tsv text eol=lf linguist-generated=true whitespace=-blank-at-eol diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c32b5ff3..0c10b63f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,18 +47,46 @@ jobs: uses: apache/skywalking-eyes/header@v0.8.0 - name: Install cargo-deny - uses: taiki-e/install-action@v2 + uses: taiki-e/install-action@a6b2e2dcd845ddd7f509ce4f3ed3d922b80cc5d9 # v2.84.0 with: - tool: cargo-deny@0.19.0 + tool: cargo-deny@0.19.6 - - name: Check dependency licenses (Apache-compatible) - run: cargo deny check licenses + - name: Fetch locked dependencies + run: cargo fetch --locked + + - name: Check dependency policy + run: cargo deny --locked --all-features check --warn unmaintained advisories licenses + + - name: Verify dependency reports + run: python3 scripts/dependencies.py verify - name: Format run: cargo fmt --all -- --check - name: Clippy - run: cargo clippy --all-targets --workspace --features fulltext,vortex -- -D warnings + run: cargo clippy --locked --all-targets --workspace --features fulltext,vortex -- -D warnings + + msrv: + runs-on: ubuntu-latest + env: + PYO3_PYTHON: python3.11 + steps: + - uses: actions/checkout@v7 + + - uses: actions/setup-python@v6 + with: + python-version: "3.11" + + - name: Install Rust 1.91.0 + run: rustup toolchain install 1.91.0 --profile minimal + + - name: Validate workspace MSRV metadata + run: | + cargo +1.91.0 metadata --locked --format-version 1 --no-deps | + jq -e '.packages | all(.rust_version == "1.91.0")' >/dev/null + + - name: Check workspace at MSRV + run: cargo +1.91.0 check --locked --workspace --all-targets --all-features build: runs-on: ${{ matrix.os }} @@ -71,7 +99,7 @@ jobs: steps: - uses: actions/checkout@v7 - name: Build - run: cargo build --features fulltext,vortex + run: cargo build --locked --features fulltext,vortex unit: runs-on: ${{ matrix.os }} @@ -85,7 +113,7 @@ jobs: - uses: actions/checkout@v7 - name: Test - run: cargo test -p paimon --all-targets --features fulltext,vortex + run: cargo test --locked -p paimon --all-targets --features fulltext,vortex env: RUST_LOG: DEBUG RUST_BACKTRACE: full @@ -95,7 +123,7 @@ jobs: # catalog tests are likewise gated with `#[cfg(not(windows))]`). - name: Test paimon-rest-server if: runner.os != 'Windows' - run: cargo test -p paimon-rest-server --all-targets + run: cargo test --locked -p paimon-rest-server --all-targets env: RUST_LOG: DEBUG RUST_BACKTRACE: full @@ -150,7 +178,7 @@ jobs: - name: Rust Integration Test if: matrix.suite == 'rust' - run: cargo test -p paimon-integration-tests --all-targets + run: cargo test --locked -p paimon-integration-tests --all-targets - name: Install lumina native library if: matrix.needs_lumina == true @@ -161,7 +189,7 @@ jobs: - name: Core Lumina Native Build Test if: matrix.suite == 'lumina' run: > - cargo test -p paimon + cargo test --locked -p paimon table::lumina_index_build_builder::tests::test_execute_writes_lumina_index_manifest --features fulltext,vortex -- --ignored --exact @@ -169,18 +197,18 @@ jobs: - name: DataFusion Lumina Build Query E2E Test if: matrix.suite == 'lumina' run: > - cargo test -p paimon-datafusion + cargo test --locked -p paimon-datafusion --features vortex vector_search_tests::test_lumina_build_then_vector_search_query -- --ignored --exact - name: DataFusion Integration Test if: matrix.suite == 'datafusion' - run: cargo test -p paimon-datafusion --all-targets + run: cargo test --locked -p paimon-datafusion --all-targets - name: DataFusion Vortex Integration Test if: matrix.suite == 'datafusion' - run: cargo test -p paimon-datafusion --features vortex --test vortex_tables + run: cargo test --locked -p paimon-datafusion --features vortex --test vortex_tables - name: Install uv if: matrix.needs_uv == true diff --git a/.gitignore b/.gitignore index 61c09050..2ed1d6f4 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,6 @@ # under the License. /target -/Cargo.lock .idea .vscode **/.DS_Store diff --git a/.licenserc.yaml b/.licenserc.yaml index ffbce011..44db53da 100644 --- a/.licenserc.yaml +++ b/.licenserc.yaml @@ -23,6 +23,7 @@ header: paths-ignore: - "LICENSE" - "NOTICE" + - "Cargo.lock" - ".gitattributes" - ".github/PULL_REQUEST_TEMPLATE.md" - "crates/paimon/tests/**/*.json" diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..889ccd99 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,8275 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aes" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures 0.2.17", +] + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "const-random", + "getrandom 0.3.4", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" + +[[package]] +name = "apache-avro" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36fa98bc79671c7981272d91a8753a928ff6a1cd8e4f20a44c45bd5d313840bf" +dependencies = [ + "bigdecimal", + "bon", + "crc32fast", + "digest 0.10.7", + "log", + "miniz_oxide", + "num-bigint", + "quad-rand", + "rand 0.9.5", + "regex-lite", + "serde", + "serde_bytes", + "serde_json", + "snap", + "strum", + "strum_macros", + "thiserror 2.0.19", + "uuid", + "zstd", +] + +[[package]] +name = "approx" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6" +dependencies = [ + "num-traits", +] + +[[package]] +name = "ar_archive_writer" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4087686b4b0a3427190bae57a1d9a478dbb2d40c5dc1bd6e2b6d797913bdd348" +dependencies = [ + "object", +] + +[[package]] +name = "arc-swap" +version = "1.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c049c0be4daef0b145cb3555416b3b8ef5b7888a38aea1a3a155801fe7b0810b" +dependencies = [ + "rustversion", +] + +[[package]] +name = "arcref" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28f6098a1e8ab66ff91324cce8fea6643101882cf7d09c85acdb1485ecf61e29" + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" + +[[package]] +name = "arrow" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "378530e55cd479eda3c14eb345310799717e6f76d0c332041e8487022166b471" +dependencies = [ + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-csv", + "arrow-data", + "arrow-ipc", + "arrow-json", + "arrow-ord", + "arrow-pyarrow", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", +] + +[[package]] +name = "arrow-arith" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0ab212d2c1886e802f51c5212d78ebbcbb0bec980fff9dadc1eb8d45cd0b738" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "num-traits", +] + +[[package]] +name = "arrow-array" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfd33d3e92f207444098c75b42de99d329562be0cf686b307b097cc52b4e999e" +dependencies = [ + "ahash", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "chrono", + "chrono-tz", + "half", + "hashbrown 0.17.1", + "num-complex", + "num-integer", + "num-traits", +] + +[[package]] +name = "arrow-buffer" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c6cd424c2693bcdbc150d843dc9d4d137dd2de4782ce6df491ad11a3a0416c0" +dependencies = [ + "bytes", + "half", + "num-bigint", + "num-traits", +] + +[[package]] +name = "arrow-cast" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c5aefb56a2c02e9e2b30746241058b85f8983f0fcff2ba0c6d09006e1cded7f" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "atoi", + "base64", + "chrono", + "comfy-table", + "half", + "lexical-core", + "num-traits", + "ryu", +] + +[[package]] +name = "arrow-csv" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94e8cf7e517657a52b91ea1263acf38c4ca62a84655d72458a3359b12ab97de" +dependencies = [ + "arrow-array", + "arrow-cast", + "arrow-schema", + "chrono", + "csv", + "csv-core", + "regex", +] + +[[package]] +name = "arrow-data" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c88210023a2bfee1896af366309a3028fc3bcbd6515fa29a7990ee1baa08ee0" +dependencies = [ + "arrow-buffer", + "arrow-schema", + "half", + "num-integer", + "num-traits", +] + +[[package]] +name = "arrow-ipc" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "238438f0834483703d88896db6fe5a7138b2230debc31b34c0336c2996e3c64f" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "flatbuffers", + "lz4_flex 0.13.1", + "zstd", +] + +[[package]] +name = "arrow-json" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "205ca2119e6d679d5c133c6f30e68f027738d95ed948cf77677ea69c7800036b" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-ord", + "arrow-schema", + "arrow-select", + "chrono", + "half", + "indexmap 2.14.0", + "itoa", + "lexical-core", + "memchr", + "num-traits", + "ryu", + "serde_core", + "serde_json", + "simdutf8", +] + +[[package]] +name = "arrow-ord" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bffd8fd2579286a5d63bac898159873e5094a79009940bcb42bbfce4f19f1d0" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", +] + +[[package]] +name = "arrow-pyarrow" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29abdf672a81c1aeb57fd2661457f9918964d49aed0e9f18932535f2a9e49ce" +dependencies = [ + "arrow-array", + "arrow-data", + "arrow-schema", + "pyo3", +] + +[[package]] +name = "arrow-row" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bab5994731204603c73ba69267616c50f80780774c6bb0476f1f830625115e0c" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "half", +] + +[[package]] +name = "arrow-schema" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f633dbfdf39c039ada1bf9e34c694816eb71fbb7dc78f613993b7245e078a1ed" +dependencies = [ + "bitflags 2.13.1", + "serde_core", + "serde_json", +] + +[[package]] +name = "arrow-select" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8cd065c54172ac787cf3f2f8d4107e0d3fdc26edba76fdf4f4cc170258942222" +dependencies = [ + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "num-traits", +] + +[[package]] +name = "arrow-string" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29dd7cda3ab9692f43a2e4acc444d760cc17b12bb6d8232ddf64e9bab7c06b42" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-schema", + "arrow-select", + "memchr", + "num-traits", + "regex", + "regex-syntax", +] + +[[package]] +name = "async-channel" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-compression" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac" +dependencies = [ + "compression-codecs", + "compression-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "async-executor" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", + "pin-project-lite", + "slab", +] + +[[package]] +name = "async-ffi" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4de21c0feef7e5a556e51af767c953f0501f7f300ba785cc99c47bdc8081a50" + +[[package]] +name = "async-fs" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" +dependencies = [ + "async-lock", + "blocking", + "futures-lite", +] + +[[package]] +name = "async-io" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" +dependencies = [ + "autocfg", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix 1.1.4", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-lock" +version = "3.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" +dependencies = [ + "event-listener", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-net" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" +dependencies = [ + "async-io", + "blocking", + "futures-lite", +] + +[[package]] +name = "async-process" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" +dependencies = [ + "async-channel", + "async-io", + "async-lock", + "async-signal", + "async-task", + "blocking", + "cfg-if", + "event-listener", + "futures-lite", + "rustix 1.1.4", +] + +[[package]] +name = "async-signal" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485" +dependencies = [ + "async-io", + "async-lock", + "atomic-waker", + "cfg-if", + "futures-core", + "futures-io", + "rustix 1.1.4", + "signal-hook-registry", + "slab", + "windows-sys 0.61.2", +] + +[[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "async-trait" +version = "0.1.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae36dc4177970ef04fde5178d3e2429882def40e57a451f919c098f72baa6cec" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.2", +] + +[[package]] +name = "atoi" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" +dependencies = [ + "num-traits", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "aws-lc-rs" +version = "1.17.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00bdb5da18dac48ca2cc7cd4a98e533e8635a58e2361d13a1a4ee3888e0d72f1" +dependencies = [ + "aws-lc-sys", + "zeroize", +] + +[[package]] +name = "aws-lc-sys" +version = "0.43.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43103168cc76fe62678a375e722fc9cb3a0146159ac5828bc4f0dfd755c2224c" +dependencies = [ + "cc", + "cmake", + "dunce", + "fs_extra", + "pkg-config", +] + +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "axum-macros", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" + +[[package]] +name = "better_io" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef0a3155e943e341e557863e69a708999c94ede624e37865c8e2a91b94efa78f" + +[[package]] +name = "bigdecimal" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695" +dependencies = [ + "autocfg", + "libm", + "num-bigint", + "num-integer", + "num-traits", + "serde", +] + +[[package]] +name = "bindgen" +version = "0.72.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" +dependencies = [ + "bitflags 2.13.1", + "cexpr", + "clang-sys", + "itertools 0.13.0", + "proc-macro2", + "quote", + "regex", + "rustc-hash 2.1.3", + "shlex 1.3.0", + "syn 2.0.119", +] + +[[package]] +name = "bit-vec" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51" +dependencies = [ + "serde", +] + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" + +[[package]] +name = "bitpacking" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96a7139abd3d9cebf8cd6f920a389cf3dc9576172e32f4563f188cae3c3eb019" +dependencies = [ + "crunchy", +] + +[[package]] +name = "bitvec" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake2" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "blake3" +version = "1.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" +dependencies = [ + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", + "cpufeatures 0.3.0", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block-buffer" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" +dependencies = [ + "hybrid-array", +] + +[[package]] +name = "block-padding" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" +dependencies = [ + "generic-array", +] + +[[package]] +name = "blocking" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21" +dependencies = [ + "async-channel", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "bon" +version = "3.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561" +dependencies = [ + "bon-macros", + "rustversion", +] + +[[package]] +name = "bon-macros" +version = "3.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f" +dependencies = [ + "darling", + "ident_case", + "prettyplease", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.119", +] + +[[package]] +name = "brotli" +version = "8.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bs58" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "bytemuck" +version = "1.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" + +[[package]] +name = "bzip2" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c" +dependencies = [ + "libbz2-rs-sys", +] + +[[package]] +name = "cbc" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" +dependencies = [ + "cipher", +] + +[[package]] +name = "cc" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89588d05638b5b4594a3348a2d6c20277e43a7f5c5202b05cc56888475a47b8" +dependencies = [ + "find-msvc-tools", + "jobserver", + "libc", + "shlex 2.0.1", +] + +[[package]] +name = "census" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0" + +[[package]] +name = "cexpr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +dependencies = [ + "nom", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" + +[[package]] +name = "chacha20" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "rand_core 0.10.1", +] + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link", +] + +[[package]] +name = "chrono-tz" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" +dependencies = [ + "chrono", + "phf", +] + +[[package]] +name = "cipher" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common 0.1.7", + "inout", +] + +[[package]] +name = "clang-sys" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +dependencies = [ + "glob", + "libc", + "libloading 0.8.9", +] + +[[package]] +name = "clap" +version = "4.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + +[[package]] +name = "cmake" +version = "0.1.58" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678" +dependencies = [ + "cc", +] + +[[package]] +name = "cmov" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a" + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "comfy-table" +version = "7.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" +dependencies = [ + "unicode-segmentation", + "unicode-width", +] + +[[package]] +name = "compression-codecs" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf" +dependencies = [ + "bzip2", + "compression-core", + "flate2", + "liblzma", + "memchr", + "zstd", + "zstd-safe", +] + +[[package]] +name = "compression-core" +version = "0.4.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789" + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + +[[package]] +name = "const-random" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359" +dependencies = [ + "const-random-macro", +] + +[[package]] +name = "const-random-macro" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "tiny-keccak", +] + +[[package]] +name = "const_for" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "988d3bd6bf67b6d7ae2b519c55296fa57411c27c312575e47b2975f8d1d8590b" + +[[package]] +name = "constant_time_eq" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core_detect" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f8f80099a98041a3d1622845c271458a2d73e688351bf3cb999266764b81d48" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" +dependencies = [ + "libc", +] + +[[package]] +name = "crc" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" + +[[package]] +name = "crc-fast" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e75b2483e97a5a7da73ac68a05b629f9c53cff58d8ed1c77866079e18b00dba5" +dependencies = [ + "digest 0.10.7", + "spin 0.10.1", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "crypto-common" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" +dependencies = [ + "hybrid-array", +] + +[[package]] +name = "csv" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938" +dependencies = [ + "csv-core", + "itoa", + "ryu", + "serde_core", +] + +[[package]] +name = "csv-core" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782" +dependencies = [ + "memchr", +] + +[[package]] +name = "ctr" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher", +] + +[[package]] +name = "ctutils" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d5515a3834141de9eafb9717ad39eea8247b5674e6066c404e8c4b365d2a29e" +dependencies = [ + "cmov", +] + +[[package]] +name = "custom-labels" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4121f4f539659ad975da5bc6702b7d7d6de59ff1bbaec328dfe7dd5058052ef2" +dependencies = [ + "bindgen", + "cc", + "libc", + "pin-project-lite", +] + +[[package]] +name = "darling" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" +dependencies = [ + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.119", +] + +[[package]] +name = "darling_macro" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "dashmap" +version = "6.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", +] + +[[package]] +name = "datafusion" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "997a31e15872606a49478e670c58302094c97cb96abb0a7d60720f8e92170040" +dependencies = [ + "arrow", + "arrow-schema", + "async-trait", + "bzip2", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-nested", + "datafusion-functions-table", + "datafusion-functions-window", + "datafusion-optimizer", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-session", + "datafusion-sql", + "flate2", + "futures", + "indexmap 2.14.0", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "parking_lot", + "parquet", + "sqlparser", + "tempfile", + "tokio", + "url", + "uuid", + "zstd", +] + +[[package]] +name = "datafusion-catalog" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7dd61161508f8f5fa1107774ea687bd753c22d83a32eebf963549f89de14139" +dependencies = [ + "arrow", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "tokio", +] + +[[package]] +name = "datafusion-catalog-listing" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897c70f871277f9ce99aa38347be0d679bbe3e617156c4d2a8378cec8a2a0891" +dependencies = [ + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "futures", + "itertools 0.14.0", + "log", + "object_store", +] + +[[package]] +name = "datafusion-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c9ded5d87d9172319e006f2afdb9928d72dbacd6a90a458d8acb1e3b43a65" +dependencies = [ + "arrow", + "arrow-ipc", + "arrow-schema", + "chrono", + "foldhash 0.2.0", + "half", + "hashbrown 0.17.1", + "indexmap 2.14.0", + "itertools 0.14.0", + "libc", + "log", + "object_store", + "parquet", + "recursive", + "sqlparser", + "tokio", + "uuid", + "web-time", +] + +[[package]] +name = "datafusion-common-runtime" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "981b9dae74f78ee3d9f714fb49b01919eab975461b56149510c3ba9ea11287d1" +dependencies = [ + "futures", + "log", + "tokio", +] + +[[package]] +name = "datafusion-datasource" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffd7d295b2ec7c00d8a56562f41ed41062cf0af75549ed891c12a0a09eddfefe" +dependencies = [ + "arrow", + "async-compression", + "async-trait", + "bytes", + "bzip2", + "chrono", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "flate2", + "futures", + "glob", + "itertools 0.14.0", + "liblzma", + "log", + "object_store", + "parking_lot", + "rand 0.9.5", + "tokio", + "tokio-util", + "url", + "zstd", +] + +[[package]] +name = "datafusion-datasource-arrow" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "552b0b3f342f7ec41b3fbd70f6339dc82a30cfd0349e7f280e7852528085349f" +dependencies = [ + "arrow", + "arrow-ipc", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "itertools 0.14.0", + "object_store", + "tokio", +] + +[[package]] +name = "datafusion-datasource-csv" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68850aa426b897e879c8b87e512ea8124f1d0a2869a4e51808ddaaddf1bc0ada" +dependencies = [ + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "regex", + "tokio", +] + +[[package]] +name = "datafusion-datasource-json" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "402f93242ae08ef99139ee2c528a49d087efe88d5c7b2c3ff5480855a40ce54f" +dependencies = [ + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-session", + "futures", + "object_store", + "tokio", + "tokio-stream", +] + +[[package]] +name = "datafusion-datasource-parquet" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffd2499c1bee0eeccf6a57156105700eeeb17bc701899ac719183c4e74231450" +dependencies = [ + "arrow", + "async-trait", + "bytes", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-adapter", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "datafusion-session", + "futures", + "itertools 0.14.0", + "log", + "object_store", + "parking_lot", + "parquet", + "tokio", +] + +[[package]] +name = "datafusion-doc" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb9e7e5d11130c48c8bd4e80c79a9772dd28ce6dc330baca9246205d245b9e2e" + +[[package]] +name = "datafusion-execution" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37a8643ab852eb68864e1b72ae789e8066282dce48eea6347ffb0aee33d1ccc0" +dependencies = [ + "arrow", + "arrow-buffer", + "async-trait", + "dashmap", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-expr-common", + "futures", + "log", + "object_store", + "parking_lot", + "rand 0.9.5", + "tempfile", + "url", +] + +[[package]] +name = "datafusion-expr" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6932f4d71eed9c8d9341476a2b845aadfabde5495d08dbcd8fc23881f49fa7a0" +dependencies = [ + "arrow", + "arrow-schema", + "async-trait", + "chrono", + "datafusion-common", + "datafusion-doc", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr-common", + "indexmap 2.14.0", + "itertools 0.14.0", + "recursive", + "serde_json", + "sqlparser", +] + +[[package]] +name = "datafusion-expr-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0225491839a31b1f7d2cb8092c2d50792e2fe1c1724e4e6d08e011f5feaf4ed2" +dependencies = [ + "arrow", + "datafusion-common", + "indexmap 2.14.0", + "itertools 0.14.0", +] + +[[package]] +name = "datafusion-ffi" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5660e8fa79fd51e29ce46f3026b67317ef738ebd633e106beb1a1907a406152" +dependencies = [ + "arrow", + "arrow-schema", + "async-ffi", + "async-trait", + "chrono", + "datafusion-catalog", + "datafusion-common", + "datafusion-datasource", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-optimizer", + "datafusion-physical-plan", + "datafusion-proto", + "datafusion-proto-common", + "datafusion-session", + "futures", + "libloading 0.9.0", + "log", + "prost 0.14.4", + "semver", + "stabby", + "tokio", +] + +[[package]] +name = "datafusion-functions" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14872c47bfc3d21e53ec82f57074e6987a15941c1e2f43cde4ac6ae2746634e3" +dependencies = [ + "arrow", + "arrow-buffer", + "base64", + "blake2", + "blake3", + "chrono", + "chrono-tz", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "hex", + "itertools 0.14.0", + "log", + "md-5 0.11.0", + "memchr", + "num-traits", + "rand 0.9.5", + "regex", + "sha2 0.11.0", + "uuid", +] + +[[package]] +name = "datafusion-functions-aggregate" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75a2ca14e1b609be21e657e2d3130b2f446456b08393b377bb721a33952d2e09" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "foldhash 0.2.0", + "half", + "log", + "num-traits", +] + +[[package]] +name = "datafusion-functions-aggregate-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ece74ba09092d2ef9c9b54a38445450aea292a1f8b04faf531936b723a24b3c" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-expr-common", + "datafusion-physical-expr-common", +] + +[[package]] +name = "datafusion-functions-nested" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f3e3f9ee8ca59bf70518802107de6f1b88a9509efdc629fadc5de9d6b2d5ef5" +dependencies = [ + "arrow", + "arrow-ord", + "datafusion-common", + "datafusion-doc", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions", + "datafusion-functions-aggregate", + "datafusion-functions-aggregate-common", + "datafusion-macros", + "datafusion-physical-expr-common", + "hashbrown 0.17.1", + "itertools 0.14.0", + "itoa", + "log", + "memchr", +] + +[[package]] +name = "datafusion-functions-table" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89161dffc22cf2b50f9f4b1bee83b5221d3b4ed7c2e37fd7aa2b22a5297b3a26" +dependencies = [ + "arrow", + "async-trait", + "datafusion-catalog", + "datafusion-common", + "datafusion-expr", + "datafusion-physical-expr", + "datafusion-physical-plan", + "parking_lot", +] + +[[package]] +name = "datafusion-functions-window" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7339345b226b3874037708bf5023ba1c2de705128f8457a095aae5ae9cb9c78" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-doc", + "datafusion-expr", + "datafusion-functions-window-common", + "datafusion-macros", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "log", +] + +[[package]] +name = "datafusion-functions-window-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa84836dc2392df6f43d6a29d37fb56a8ebdc8b3f4e10ae8dc15861fd20278fb" +dependencies = [ + "datafusion-common", + "datafusion-physical-expr-common", +] + +[[package]] +name = "datafusion-macros" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "587164e03ad68732aa9e7bfe5686e3f25970d4c64fd4bd80790749840892dae5" +dependencies = [ + "datafusion-doc", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "datafusion-optimizer" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77f20e8cf9e8654d92f4c16b24c487353ee5bf153ffc12d5772cd399ab8cd281" +dependencies = [ + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "indexmap 2.14.0", + "itertools 0.14.0", + "log", + "recursive", + "regex", + "regex-syntax", +] + +[[package]] +name = "datafusion-physical-expr" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f015a4a82f6f7ff7e1d8d4bf3870a936752fa38b17705dfcc14adef95aa8922c" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-functions-aggregate-common", + "datafusion-physical-expr-common", + "half", + "hashbrown 0.17.1", + "indexmap 2.14.0", + "itertools 0.14.0", + "parking_lot", + "petgraph", + "recursive", + "tokio", +] + +[[package]] +name = "datafusion-physical-expr-adapter" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51e6ffff8acdfe54e0ea15ccf38115c4a9184433b0439f42907637928d00a235" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-expr", + "datafusion-functions", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "itertools 0.14.0", +] + +[[package]] +name = "datafusion-physical-expr-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7967a3e171c6a4bf09474b3f7a14f1a3db13ed1714ba12156f33fcce2bba54e8" +dependencies = [ + "arrow", + "chrono", + "datafusion-common", + "datafusion-expr-common", + "hashbrown 0.17.1", + "indexmap 2.14.0", + "itertools 0.14.0", + "parking_lot", + "pin-project", +] + +[[package]] +name = "datafusion-physical-optimizer" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ff803e2a96054cb6d83f35f9e60fd4f42eac515e1932bd1b2dbc91d5fcbf36" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-pruning", + "itertools 0.14.0", + "recursive", +] + +[[package]] +name = "datafusion-physical-plan" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "776ee54d47d15bdb126452f9ca17b03761e3b004682914beaedd3f86eb507fbc" +dependencies = [ + "arrow", + "arrow-data", + "arrow-ipc", + "arrow-ord", + "arrow-schema", + "async-trait", + "datafusion-common", + "datafusion-common-runtime", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions", + "datafusion-functions-aggregate-common", + "datafusion-functions-window-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "futures", + "half", + "hashbrown 0.17.1", + "indexmap 2.14.0", + "itertools 0.14.0", + "log", + "num-traits", + "parking_lot", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "datafusion-proto" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dd15a1ba5d3af93808241065c6c44dbca8296a189845e8a587c45c07bf0ffae" +dependencies = [ + "arrow", + "chrono", + "datafusion-catalog", + "datafusion-catalog-listing", + "datafusion-common", + "datafusion-datasource", + "datafusion-datasource-arrow", + "datafusion-datasource-csv", + "datafusion-datasource-json", + "datafusion-datasource-parquet", + "datafusion-execution", + "datafusion-expr", + "datafusion-functions-table", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "datafusion-proto-common", + "object_store", + "prost 0.14.4", +] + +[[package]] +name = "datafusion-proto-common" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90042982cf9462eb06a0b81f92efa4188dae871e7ea3ab8dc61aa9c9349b2530" +dependencies = [ + "arrow", + "datafusion-common", + "prost 0.14.4", +] + +[[package]] +name = "datafusion-pruning" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5fb9e5774660aa69c3ba93c610f175f75b65cb8c3776edb3626de8f3a4f4ee3" +dependencies = [ + "arrow", + "datafusion-common", + "datafusion-datasource", + "datafusion-expr-common", + "datafusion-physical-expr", + "datafusion-physical-expr-common", + "datafusion-physical-plan", + "log", +] + +[[package]] +name = "datafusion-session" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15ce715fa2a61f4623cc234bcc14a3ef6a91f189128d5b14b468a6a17cdfc417" +dependencies = [ + "async-trait", + "datafusion-common", + "datafusion-execution", + "datafusion-expr", + "datafusion-physical-plan", + "parking_lot", +] + +[[package]] +name = "datafusion-sql" +version = "54.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6094ad36a3ed6d7ac87b20b479b2d0b118250f66cf997603829fdc65b44a7099" +dependencies = [ + "arrow", + "bigdecimal", + "chrono", + "datafusion-common", + "datafusion-expr", + "datafusion-functions-nested", + "indexmap 2.14.0", + "log", + "recursive", + "regex", + "sqlparser", +] + +[[package]] +name = "defmt" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2953bfe4f93bbd20cc71198842756f77d161884c99ebbabc41d80231ded88d1" +dependencies = [ + "bitflags 1.3.2", + "defmt-macros", +] + +[[package]] +name = "defmt-macros" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bad9c72e7ca2137e0dc3813245a0d282fd6daad32fd800af018306a9169b5fe8" +dependencies = [ + "defmt-parser", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "defmt-parser" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10d60334b3b2e7c9d91ef8150abfb6fa4c1c39ebbcf4a81c2e346aad939fee3e" +dependencies = [ + "thiserror 2.0.19", +] + +[[package]] +name = "der" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" +dependencies = [ + "const-oid 0.9.6", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "serde_core", +] + +[[package]] +name = "des" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e" +dependencies = [ + "cipher", +] + +[[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", +] + +[[package]] +name = "digest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" +dependencies = [ + "block-buffer 0.12.1", + "const-oid 0.10.2", + "crypto-common 0.2.2", + "ctutils", +] + +[[package]] +name = "displaydoc" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "dlv-list" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f" +dependencies = [ + "const-random", +] + +[[package]] +name = "dns-lookup" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e39034cee21a2f5bbb66ba0e3689819c4bb5d00382a282006e802a7ffa6c41d" +dependencies = [ + "cfg-if", + "libc", + "socket2", + "windows-sys 0.60.2", +] + +[[package]] +name = "downcast-rs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dtype_dispatch" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab23e69df104e2fd85ee63a533a22d2132ef5975dc6b36f9f3e5a7305e4a8ed7" + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "either" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" + +[[package]] +name = "encoding_rs" +version = "0.8.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "enum-iterator" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4549325971814bda7a44061bf3fe7e487d447cba01e4220a4b454d630d7a016" +dependencies = [ + "enum-iterator-derive", +] + +[[package]] +name = "enum-iterator-derive" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685adfa4d6f3d765a26bc5dbc936577de9abf756c1feeb3089b01dd395034842" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "event-listener" +version = "5.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" +dependencies = [ + "event-listener", + "pin-project-lite", +] + +[[package]] +name = "ext-trait" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d772df1c1a777963712fb68e014235e80863d6a91a85c4e06ba2d16243a310e5" +dependencies = [ + "ext-trait-proc_macros", +] + +[[package]] +name = "ext-trait-proc_macros" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ab7934152eaf26aa5aa9f7371408ad5af4c31357073c9e84c3b9d7f11ad639a" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "extension-traits" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a296e5a895621edf9fa8329c83aa1cb69a964643e36cf54d8d7a69b789089537" +dependencies = [ + "ext-trait", +] + +[[package]] +name = "fallible-streaming-iterator" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" + +[[package]] +name = "fastdivide" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471" + +[[package]] +name = "fastlanes" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9272a674b446f53253f66582596614e41552d14968a3d1aaa590576a91c1188" +dependencies = [ + "const_for", + "core_detect", + "num-traits", + "paste", + "seq-macro", +] + +[[package]] +name = "fastrand" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" + +[[package]] +name = "filetime" +version = "0.2.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" +dependencies = [ + "cfg-if", + "libc", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "fixedbitset" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + +[[package]] +name = "flatbuffers" +version = "25.12.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3" +dependencies = [ + "bitflags 2.13.1", + "rustc_version", +] + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", + "zlib-rs", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fs4" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8" +dependencies = [ + "rustix 0.38.44", + "windows-sys 0.52.0", +] + +[[package]] +name = "fs_extra" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" + +[[package]] +name = "fsst-rs" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b13ac798afc0d9194eb4efefef8b9332efbd80b43f302a968cb8cb23b9d5360" +dependencies = [ + "rustc-hash 2.1.3", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a88cf1f829d945f548cf8fec32c61b1f202b6d93b45848602fc02af4b12ad218" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "262590f4fe6afeb0bc83be1daa64e52657fe185690a958af7f3ad0e92085c5ae" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7" + +[[package]] +name = "futures-executor" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6754879cc9f2c66f88c6e5c35344bb0bdb0708b0352b1201815667c7eabc7458" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4577ecaa3c4f96589d473f679a71b596316f6641bc350038b962a5daf0085d7a" + +[[package]] +name = "futures-lite" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6d3cde68c518367be28956066ddfef33813991b77a55005a69dae04bf3b10b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "futures-sink" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e34418ac499d6305c2fb5ad0ed2f6ac998c5f8ca209b4510f7f94242c647e307" + +[[package]] +name = "futures-task" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109" + +[[package]] +name = "futures-util" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "g2gen" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5a7e0eb46f83a20260b850117d204366674e85d3a908d90865c78df9a6b1dfc" +dependencies = [ + "g2poly", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "g2p" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "539e2644c030d3bf4cd208cb842d2ce2f80e82e6e8472390bcef83ceba0d80ad" +dependencies = [ + "g2gen", + "g2poly", +] + +[[package]] +name = "g2poly" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "312d2295c7302019c395cfb90dacd00a82a2eabd700429bba9c7a3f38dbbe11b" + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi 6.0.0", + "rand_core 0.10.1", + "wasm-bindgen", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "h2" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap 2.14.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "half" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" +dependencies = [ + "cfg-if", + "crunchy", + "num-traits", + "zerocopy", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + +[[package]] +name = "hdfs-native" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51610510377a0847d53b78b53f9c6c9b7df3ffb300d1181b2e04f68bba363734" +dependencies = [ + "aes", + "base64", + "bitflags 2.13.1", + "bumpalo", + "bytes", + "cbc", + "chrono", + "cipher", + "crc", + "ctr", + "des", + "dns-lookup", + "futures", + "g2p", + "hex", + "hmac 0.12.1", + "libc", + "libloading 0.9.0", + "log", + "md-5 0.10.6", + "num-traits", + "once_cell", + "prost 0.14.4", + "prost-types", + "rand 0.9.5", + "regex", + "roxmltree", + "socket2", + "thiserror 2.0.19", + "tokio", + "url", + "uuid", + "whoami", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "hmac" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6303bc9732ae41b04cb554b844a762b4115a61bfaa81e3e83050991eeb56863f" +dependencies = [ + "digest 0.11.3", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "http" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "humansize" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" +dependencies = [ + "libm", +] + +[[package]] +name = "humantime" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15" + +[[package]] +name = "hybrid-array" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" +dependencies = [ + "typenum", +] + +[[package]] +name = "hyper" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "system-configuration", + "tokio", + "tower-service", + "tracing", + "windows-registry", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", + "serde", + "serde_core", +] + +[[package]] +name = "inout" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" +dependencies = [ + "block-padding", + "generic-array", +] + +[[package]] +name = "instant" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "integer-encoding" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" + +[[package]] +name = "inventory" +version = "0.3.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b" +dependencies = [ + "rustversion", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "jiff" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e184d09547b80eb7e20d141ba2fb1fbac843ca53f4cf1b31210adc4c1adc6e16" +dependencies = [ + "defmt", + "jiff-core", + "jiff-static", + "jiff-tzdb-platform", + "js-sys", + "log", + "portable-atomic", + "portable-atomic-util", + "serde_core", + "wasm-bindgen", + "windows-link", +] + +[[package]] +name = "jiff-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7feca88439efe53da3754500c1851dedf3cb36c524dd5cf8225cc0794de95d09" +dependencies = [ + "defmt", +] + +[[package]] +name = "jiff-static" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "323da076b7a6faf914dc677cb05a4b907742ff7375c8322c9e7f5061e5e0e9de" +dependencies = [ + "jiff-core", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "jiff-tzdb" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "142bd39932ad231f10513df9ab62661fead8719872150b7ad02a2df79f4e141e" + +[[package]] +name = "jiff-tzdb-platform" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "875a5a69ac2bab1a891711cf5eccbec1ce0341ea805560dcd90b7a2e925132e8" +dependencies = [ + "jiff-tzdb", +] + +[[package]] +name = "jni" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498" +dependencies = [ + "cfg-if", + "combine", + "jni-macros", + "jni-sys", + "log", + "simd_cesu8", + "thiserror 2.0.19", + "walkdir", + "windows-link", +] + +[[package]] +name = "jni-macros" +version = "0.22.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3" +dependencies = [ + "proc-macro2", + "quote", + "rustc_version", + "simd_cesu8", + "syn 2.0.119", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.119", +] + +[[package]] +name = "jobserver" +version = "0.1.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3" +dependencies = [ + "getrandom 0.4.3", + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" +dependencies = [ + "cfg-if", + "futures-util", + "wasm-bindgen", +] + +[[package]] +name = "kanal" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e3953adf0cd667798b396c2fa13552d6d9b3269d7dd1154c4c416442d1ff574" +dependencies = [ + "futures-core", + "lock_api", +] + +[[package]] +name = "lasso" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e14eda50a3494b3bf7b9ce51c52434a761e383d7238ce1dd5dcec2fbc13e9fb" +dependencies = [ + "dashmap", + "hashbrown 0.14.5", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin 0.9.9", +] + +[[package]] +name = "lending-iterator" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc07588c853b50689205fb5c00498aa681d89828e0ce8cbd965ebc7a5d8ae260" +dependencies = [ + "extension-traits", + "lending-iterator-proc_macros", + "macro_rules_attribute", + "never-say-never", + "nougat", + "polonius-the-crab", +] + +[[package]] +name = "lending-iterator-proc_macros" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5445dd1c0deb1e97b8a16561d17fc686ca83e8411128fb036e9668a72d51b1d" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "lexical-core" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594" +dependencies = [ + "lexical-parse-float", + "lexical-parse-integer", + "lexical-util", + "lexical-write-float", + "lexical-write-integer", +] + +[[package]] +name = "lexical-parse-float" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56" +dependencies = [ + "lexical-parse-integer", + "lexical-util", +] + +[[package]] +name = "lexical-parse-integer" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34" +dependencies = [ + "lexical-util", +] + +[[package]] +name = "lexical-util" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17" + +[[package]] +name = "lexical-write-float" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361" +dependencies = [ + "lexical-util", + "lexical-write-integer", +] + +[[package]] +name = "lexical-write-integer" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df" +dependencies = [ + "lexical-util", +] + +[[package]] +name = "libbz2-rs-sys" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b357333733e8260735ba5894eb928c02ecc69c78715f01a8019e7fa7f2db4c" + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libloading" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" +dependencies = [ + "cfg-if", + "windows-link", +] + +[[package]] +name = "libloading" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60" +dependencies = [ + "cfg-if", + "windows-link", +] + +[[package]] +name = "liblzma" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45aec2360b3933207e27908049d8e4df4e476b58180afb1e56b2a4fb72efe4ba" +dependencies = [ + "liblzma-sys", +] + +[[package]] +name = "liblzma-sys" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a046c7f353ba30f810545151e04f63545833803f5b86ee3ddf1517247fe560a5" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "libredox" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" +dependencies = [ + "bitflags 2.13.1", + "libc", + "plain", + "redox_syscall 0.9.0", +] + +[[package]] +name = "linux-raw-sys" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" + +[[package]] +name = "lru" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +dependencies = [ + "hashbrown 0.15.5", +] + +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + +[[package]] +name = "lz4_flex" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a" +dependencies = [ + "twox-hash", +] + +[[package]] +name = "lz4_flex" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef0d4ed8669f8f8826eb00dc878084aa8f253506c4fd5e8f58f5bce72ddb97e" +dependencies = [ + "twox-hash", +] + +[[package]] +name = "lzokay-native" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "792ba667add2798c6c3e988e630f4eb921b5cbc735044825b7111ef1582c8730" +dependencies = [ + "byteorder", + "thiserror 1.0.69", +] + +[[package]] +name = "macro_rules_attribute" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862" +dependencies = [ + "macro_rules_attribute-proc_macro", + "paste", +] + +[[package]] +name = "macro_rules_attribute-proc_macro" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d" + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "matrixmultiply" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7" +dependencies = [ + "autocfg", + "rawpointer", +] + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest 0.10.7", +] + +[[package]] +name = "md-5" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69b6441f590336821bb897fb28fc622898ccceb1d6cea3fde5ea86b090c4de98" +dependencies = [ + "cfg-if", + "digest 0.11.3", +] + +[[package]] +name = "mea" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2640d335e7273dacdcf51044026139b2e269c3bb0dfc3f8cb3496b85e3f6a42c" +dependencies = [ + "slab", +] + +[[package]] +name = "measure_time" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc" +dependencies = [ + "instant", + "log", +] + +[[package]] +name = "memchr" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" + +[[package]] +name = "memmap2" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" +dependencies = [ + "libc", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "moka" +version = "0.12.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" +dependencies = [ + "async-lock", + "crossbeam-channel", + "crossbeam-epoch", + "crossbeam-utils", + "equivalent", + "event-listener", + "futures-util", + "parking_lot", + "portable-atomic", + "smallvec", + "tagptr", + "uuid", +] + +[[package]] +name = "murmurhash32" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b" + +[[package]] +name = "nalgebra" +version = "0.33.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd" +dependencies = [ + "approx", + "matrixmultiply", + "nalgebra-macros", + "num-complex", + "num-rational", + "num-traits", + "simba", + "typenum", +] + +[[package]] +name = "nalgebra-macros" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "native-tls" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "never-say-never" +version = "6.6.666" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf5a574dadd7941adeaa71823ecba5e28331b8313fb2e1c6a5c7e5981ea53ad6" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "nougat" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97b57b9ced431322f054fc673f1d3c7fa52d80efd9df74ad2fc759f044742510" +dependencies = [ + "macro_rules_attribute", + "nougat-proc_macros", +] + +[[package]] +name = "nougat-proc_macros" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c84f77a45e99a2f9b492695d99e1c23844619caa5f3e57647cffacad773ca257" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" +dependencies = [ + "num-integer", + "num-traits", + "serde", +] + +[[package]] +name = "num-bigint-dig" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7" +dependencies = [ + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.7", + "smallvec", + "zeroize", +] + +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", + "libm", +] + +[[package]] +name = "num_cpus" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "object" +version = "0.37.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" +dependencies = [ + "memchr", +] + +[[package]] +name = "object_store" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622acbc9100d3c10e2ee15804b0caa40e55c933d5aa53814cd520805b7958a49" +dependencies = [ + "async-trait", + "bytes", + "chrono", + "futures-channel", + "futures-core", + "futures-util", + "http", + "humantime", + "itertools 0.14.0", + "parking_lot", + "percent-encoding", + "thiserror 2.0.19", + "tokio", + "tracing", + "url", + "walkdir", + "wasm-bindgen-futures", + "web-time", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" +dependencies = [ + "parking_lot_core", +] + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "oneshot" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "269bca4c2591a28585d6bf10d9ed0332b7d76900a1b02bec41bdc3a2cdcda107" + +[[package]] +name = "oneshot" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe21416a02c693fb9f980befcb230ecc70b0b3d1cc4abf88b9675c4c1457f0c" + +[[package]] +name = "opendal-core" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8564bd76b75d2aea59178cb5b6e9f770be1da73b1bca062720ec151cc56215a" +dependencies = [ + "anyhow", + "base64", + "bytes", + "futures", + "http", + "jiff", + "log", + "md-5 0.11.0", + "mea", + "percent-encoding", + "quick-xml", + "reqsign-core", + "serde", + "serde_json", + "tokio", + "url", + "uuid", + "web-time", +] + +[[package]] +name = "opendal-http-transport-reqwest" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b7fd001b204df76be5d2b3f7a81c48b5cf25b28e2cfb3b8a819bb89cdc0ea3a" +dependencies = [ + "bytes", + "futures", + "http", + "http-body", + "opendal-core", + "reqwest 0.13.4", +] + +[[package]] +name = "opendal-service-azdls" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91b03a371e8266b6995884399dff28b28b71fbb00f5ff8dbb98eb0d7ccb2a839" +dependencies = [ + "base64", + "bytes", + "http", + "log", + "mea", + "opendal-core", + "opendal-service-azure-common", + "quick-xml", + "reqsign-azure-storage", + "reqsign-core", + "reqsign-file-read-tokio", + "serde", + "serde_json", +] + +[[package]] +name = "opendal-service-azure-common" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7c2419a8fd504849580943560066f8a68a188763606bc6fa3052f2b4a612972" +dependencies = [ + "http", + "opendal-core", +] + +[[package]] +name = "opendal-service-cos" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2466f1da8abaccc5ef26a19bf0bcc3d9429a45803dbab72ee62ba37e6c1f42" +dependencies = [ + "bytes", + "http", + "log", + "opendal-core", + "quick-xml", + "reqsign-core", + "reqsign-file-read-tokio", + "reqsign-tencent-cos", + "serde", +] + +[[package]] +name = "opendal-service-fs" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f26a923b72b96d1a3dbbe961fcad4d534bf586c3f48c583e9f35649b1b6175f" +dependencies = [ + "bytes", + "log", + "opendal-core", + "serde", + "tokio", + "xattr", +] + +[[package]] +name = "opendal-service-gcs" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cbde2f65ee021ff8849e9ea864aa5cf9ef6a59f4c7a71bc774a8d89ceaa7eef" +dependencies = [ + "async-trait", + "bytes", + "http", + "log", + "opendal-core", + "percent-encoding", + "quick-xml", + "reqsign-core", + "reqsign-file-read-tokio", + "reqsign-google", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "opendal-service-hdfs-native" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11dc8477864d2b4e52e700825bca45fa3e2ad1c50fcbb60c5e99d6750f2f019d" +dependencies = [ + "bytes", + "futures", + "hdfs-native", + "log", + "opendal-core", + "serde", +] + +[[package]] +name = "opendal-service-obs" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2af6300577f3ad1152aa9ef25d0ff9cbe4ff9e433db81c3b46ded283db617f3b" +dependencies = [ + "bytes", + "http", + "log", + "opendal-core", + "quick-xml", + "reqsign-core", + "reqsign-file-read-tokio", + "reqsign-huaweicloud-obs", + "serde", +] + +[[package]] +name = "opendal-service-oss" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74f73f24e7b5b00b1fbd7b598c877893a517d5c8466b2f61cd00a255fd21a972" +dependencies = [ + "bytes", + "http", + "log", + "opendal-core", + "quick-xml", + "reqsign-aliyun-oss", + "reqsign-core", + "reqsign-file-read-tokio", + "serde", +] + +[[package]] +name = "opendal-service-s3" +version = "0.58.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "750d9cc8588c19b27c4c2c5d06d7eb6f2bff62549c48652f1f9a7603cd872377" +dependencies = [ + "base64", + "bytes", + "crc-fast", + "http", + "log", + "md-5 0.11.0", + "opendal-core", + "quick-xml", + "reqsign-aws-v4", + "reqsign-core", + "reqsign-file-read-tokio", + "serde", + "url", +] + +[[package]] +name = "openssl" +version = "0.10.81" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45" +dependencies = [ + "bitflags 2.13.1", + "cfg-if", + "foreign-types", + "libc", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "openssl-probe" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" + +[[package]] +name = "openssl-sys" +version = "0.9.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "orc-rust" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32b9867c4e7343218682ba11aceae1310c80735ec2beaf6124a0f8f848dad197" +dependencies = [ + "arrow", + "async-trait", + "bytemuck", + "bytes", + "chrono", + "chrono-tz", + "fallible-streaming-iterator", + "flate2", + "futures", + "futures-util", + "log", + "lz4_flex 0.11.6", + "lzokay-native", + "num", + "prost 0.13.5", + "snafu 0.8.9", + "snap", + "tokio", + "zstd", +] + +[[package]] +name = "ordered-float" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" +dependencies = [ + "num-traits", +] + +[[package]] +name = "ordered-multimap" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79" +dependencies = [ + "dlv-list", + "hashbrown 0.14.5", +] + +[[package]] +name = "ownedbytes" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "paimon" +version = "0.3.0" +dependencies = [ + "apache-avro", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-ord", + "arrow-row", + "arrow-schema", + "arrow-select", + "arrow-string", + "async-stream", + "async-trait", + "axum", + "base64", + "bitflags 2.13.1", + "bytes", + "chrono", + "crc32fast", + "futures", + "hex", + "hmac 0.12.1", + "indexmap 2.14.0", + "libloading 0.9.0", + "lz4_flex 0.11.6", + "md-5 0.10.6", + "opendal-core", + "opendal-http-transport-reqwest", + "opendal-service-azdls", + "opendal-service-cos", + "opendal-service-fs", + "opendal-service-gcs", + "opendal-service-hdfs-native", + "opendal-service-obs", + "opendal-service-oss", + "opendal-service-s3", + "orc-rust", + "paimon-mosaic-core", + "paimon-vindex-core", + "parquet", + "pretty_assertions", + "rand 0.8.7", + "regex", + "reqwest 0.12.28", + "roaring", + "serde", + "serde_bytes", + "serde_json", + "serde_repr", + "serde_with", + "sha1 0.10.7", + "sha2 0.10.9", + "snafu 0.9.1", + "snap", + "tantivy", + "tempfile", + "tokio", + "tokio-util", + "typed-builder", + "unicode-segmentation", + "url", + "urlencoding", + "uuid", + "vortex", + "zstd", +] + +[[package]] +name = "paimon-c" +version = "0.3.0" +dependencies = [ + "arrow", + "arrow-array", + "arrow-schema", + "bytes", + "futures", + "paimon", + "paimon-vindex-core", + "tokio", +] + +[[package]] +name = "paimon-datafusion" +version = "0.3.0" +dependencies = [ + "arrow-array", + "arrow-schema", + "arrow-select", + "async-trait", + "chrono", + "constant_time_eq", + "datafusion", + "flate2", + "futures", + "lexical-write-float", + "log", + "paimon", + "parquet", + "serde", + "serde_json", + "tar", + "tempfile", + "tokio", + "uuid", +] + +[[package]] +name = "paimon-integration-tests" +version = "0.3.0" +dependencies = [ + "arrow-array", + "arrow-schema", + "axum", + "futures", + "paimon", + "serde_json", + "tokio", +] + +[[package]] +name = "paimon-mosaic-core" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d2799ba43edf953feaf552dc48aee63c5923f774b7277473f4884e055442de" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-schema", + "zstd", +] + +[[package]] +name = "paimon-rest-server" +version = "0.3.0" +dependencies = [ + "arrow-array", + "arrow-schema", + "async-trait", + "axum", + "futures", + "paimon", + "serde", + "serde_json", + "tempfile", + "tokio", +] + +[[package]] +name = "paimon-tpcds-bench" +version = "0.3.0" +dependencies = [ + "arrow-array", + "arrow-schema", + "clap", + "datafusion", + "paimon", + "paimon-datafusion", + "parquet", + "serde", + "serde_json", + "tempfile", + "tokio", +] + +[[package]] +name = "paimon-vindex-core" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed02b73fbd5cfbe20df6b66bca52f5ba66e3c29bd00ad450fbc02f9e94242a4b" +dependencies = [ + "matrixmultiply", + "nalgebra", + "rand 0.8.7", + "rayon", + "roaring", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall 0.5.18", + "smallvec", + "windows-link", +] + +[[package]] +name = "parquet" +version = "58.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dafa7d01085b62a47dd0c1829550a0a36710ea9c4fe358a05a85477cec8a908" +dependencies = [ + "ahash", + "arrow-array", + "arrow-buffer", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "base64", + "brotli", + "bytes", + "chrono", + "flate2", + "futures", + "half", + "hashbrown 0.17.1", + "lz4_flex 0.13.1", + "num-bigint", + "num-integer", + "num-traits", + "object_store", + "paste", + "seq-macro", + "simdutf8", + "snap", + "thrift", + "tokio", + "twox-hash", + "zstd", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pbkdf2" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" +dependencies = [ + "digest 0.10.7", + "hmac 0.12.1", +] + +[[package]] +name = "pco" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "553ccdc7f6999785559af4998c79712a5ab820e26b68bad9146609c19587ec82" +dependencies = [ + "better_io", + "dtype_dispatch", + "half", + "rand_xoshiro", +] + +[[package]] +name = "pem" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" +dependencies = [ + "base64", + "serde_core", +] + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "petgraph" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" +dependencies = [ + "fixedbitset", + "hashbrown 0.15.5", + "indexmap 2.14.0", + "serde", +] + +[[package]] +name = "phf" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" +dependencies = [ + "phf_shared", +] + +[[package]] +name = "phf_shared" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" +dependencies = [ + "siphasher", +] + +[[package]] +name = "pin-project" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "piper" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der", + "pkcs8", + "spki", +] + +[[package]] +name = "pkcs5" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e847e2c91a18bfa887dd028ec33f2fe6f25db77db3619024764914affe8b69a6" +dependencies = [ + "aes", + "cbc", + "der", + "pbkdf2", + "scrypt", + "sha2 0.10.9", + "spki", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "pkcs5", + "rand_core 0.6.4", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" + +[[package]] +name = "plain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6" + +[[package]] +name = "polling" +version = "3.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi", + "pin-project-lite", + "rustix 1.1.4", + "windows-sys 0.61.2", +] + +[[package]] +name = "polonius-the-crab" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a69ee997a6282f8462abf1e0d8c38c965e968799e912b3bed8c9e8a28c2f9f" + +[[package]] +name = "portable-atomic" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3" + +[[package]] +name = "portable-atomic-util" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618" +dependencies = [ + "portable-atomic", +] + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "pretty_assertions" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +dependencies = [ + "diff", + "yansi", +] + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn 2.0.119", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit", +] + +[[package]] +name = "proc-macro2" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "prost" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" +dependencies = [ + "bytes", + "prost-derive 0.13.5", +] + +[[package]] +name = "prost" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1" +dependencies = [ + "bytes", + "prost-derive 0.14.4", +] + +[[package]] +name = "prost-derive" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "prost-derive" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "prost-types" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a" +dependencies = [ + "prost 0.14.4", +] + +[[package]] +name = "psm" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "645dbe486e346d9b5de3ef16ede18c26e6c70ad97418f4874b8b1889d6e761ea" +dependencies = [ + "ar_archive_writer", + "cc", +] + +[[package]] +name = "pyo3" +version = "0.28.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12" +dependencies = [ + "chrono", + "libc", + "once_cell", + "portable-atomic", + "pyo3-build-config", + "pyo3-ffi", + "pyo3-macros", +] + +[[package]] +name = "pyo3-build-config" +version = "0.28.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e" +dependencies = [ + "target-lexicon", +] + +[[package]] +name = "pyo3-ffi" +version = "0.28.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e" +dependencies = [ + "libc", + "pyo3-build-config", +] + +[[package]] +name = "pyo3-macros" +version = "0.28.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813" +dependencies = [ + "proc-macro2", + "pyo3-macros-backend", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.28.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb" +dependencies = [ + "heck", + "proc-macro2", + "pyo3-build-config", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "pypaimon_rust" +version = "0.3.0" +dependencies = [ + "arrow", + "chrono", + "datafusion", + "datafusion-ffi", + "futures", + "paimon", + "paimon-datafusion", + "pyo3", + "serde_json", + "tokio", +] + +[[package]] +name = "quad-rand" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a651516ddc9168ebd67b24afd085a718be02f8858fe406591b013d101ce2f40" + +[[package]] +name = "quick-xml" +version = "0.41.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e660451e55124f798a69a5af3f49ccfbefbd41910eefd25caf2393e1f3473ec1" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "quinn" +version = "0.11.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash 2.1.3", + "rustls", + "socket2", + "thiserror 2.0.19", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" +dependencies = [ + "aws-lc-rs", + "bytes", + "getrandom 0.4.3", + "lru-slab", + "rand 0.10.2", + "rand_pcg", + "ring", + "rustc-hash 2.1.3", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.19", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.61.2", +] + +[[package]] +name = "quote" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" +dependencies = [ + "rand_chacha 0.9.0", + "rand_core 0.9.5", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20", + "getrandom 0.4.3", + "rand_core 0.10.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core 0.9.5", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", +] + +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + +[[package]] +name = "rand_distr" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" +dependencies = [ + "num-traits", + "rand 0.8.7", +] + +[[package]] +name = "rand_pcg" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" +dependencies = [ + "rand_core 0.10.1", +] + +[[package]] +name = "rand_xoshiro" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" +dependencies = [ + "rand_core 0.6.4", +] + +[[package]] +name = "rawpointer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" + +[[package]] +name = "rayon" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "recursive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0786a43debb760f491b1bc0269fe5e84155353c67482b9e60d0cfb596054b43e" +dependencies = [ + "recursive-proc-macro-impl", + "stacker", +] + +[[package]] +name = "recursive-proc-macro-impl" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76009fbe0614077fc1a2ce255e3a1881a2e3a3527097d5dc6d8212c585e7e38b" +dependencies = [ + "quote", + "syn 2.0.119", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "redox_syscall" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5102a6aaa05aa011a238e178e6bca86d2cb56fc9f586d37cb80f5bca6e07759" +dependencies = [ + "bitflags 2.13.1", +] + +[[package]] +name = "ref-cast" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "216e8f773d7923bcba9ceb86a86c93cabb3903a11872fc3f138c49630e50b96d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9283685feec7d69af75fb0e858d5e7378f33fe4fc699383b2916ab9273e03c" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.2", +] + +[[package]] +name = "regex" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-lite" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973" + +[[package]] +name = "regex-syntax" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" + +[[package]] +name = "reqsign-aliyun-oss" +version = "3.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f2a76ce7588780351c0f68eb8feaba8d23a99b40655195edbf50bfbce2af09b" +dependencies = [ + "anyhow", + "form_urlencoded", + "http", + "log", + "percent-encoding", + "reqsign-core", + "rust-ini", + "serde", + "serde_json", +] + +[[package]] +name = "reqsign-aws-v4" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e9e1168fab3883ec6afed1c2e20c25b2a09f366cdb662ac3e0878ae0332d63e" +dependencies = [ + "anyhow", + "bytes", + "form_urlencoded", + "hex", + "http", + "log", + "percent-encoding", + "quick-xml", + "reqsign-core", + "rust-ini", + "serde", + "serde_json", + "serde_urlencoded", + "sha1 0.11.0", +] + +[[package]] +name = "reqsign-azure-storage" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee8b9e5d0fc927551a6ac25ba5dc6518860c54ddb592fecf685523e528e77bd" +dependencies = [ + "anyhow", + "base64", + "bytes", + "form_urlencoded", + "http", + "log", + "pem", + "percent-encoding", + "reqsign-core", + "rsa", + "serde", + "serde_json", + "sha1 0.11.0", +] + +[[package]] +name = "reqsign-core" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "514a1e0b4aa288652a3fdbda4f0a610f379cdf5374e55a37c9edd03d57ed856b" +dependencies = [ + "anyhow", + "base64", + "bytes", + "form_urlencoded", + "futures", + "hex", + "hmac 0.13.0", + "http", + "jiff", + "log", + "percent-encoding", + "rsa", + "serde", + "serde_json", + "sha1 0.11.0", + "sha2 0.11.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "reqsign-file-read-tokio" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b472a8d1f2e5a4be8ce13bb7bdf4b59e9bee613ce124aca23959ddb42176b39" +dependencies = [ + "anyhow", + "reqsign-core", + "tokio", +] + +[[package]] +name = "reqsign-google" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "296b34f3b0b312a447e8eb7c9b21f12944b25578c84ffa105eb8d5bd10828212" +dependencies = [ + "form_urlencoded", + "http", + "log", + "percent-encoding", + "reqsign-aws-v4", + "reqsign-core", + "rsa", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "reqsign-huaweicloud-obs" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a013a1a6711baf24fdc5d15e78611001c068cf305351d0d68f32067f40eec7f6" +dependencies = [ + "anyhow", + "http", + "log", + "percent-encoding", + "reqsign-core", +] + +[[package]] +name = "reqsign-tencent-cos" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f5c353c69bdbd6e3deb8b067a5547504cc155b7f024998fef005e37d65d646c" +dependencies = [ + "anyhow", + "http", + "log", + "percent-encoding", + "reqsign-core", + "serde", + "serde_json", +] + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64", + "bytes", + "encoding_rs", + "futures-core", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-tls", + "hyper-util", + "js-sys", + "log", + "mime", + "native-tls", + "percent-encoding", + "pin-project-lite", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-native-tls", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "reqwest" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3" +dependencies = [ + "base64", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-pki-types", + "rustls-platform-verifier", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "roaring" +version = "0.11.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dedc5658c6ecb3bdb5ef5f3295bb9253f42dcf3fd1402c03f6b1f7659c3c4a9" +dependencies = [ + "bytemuck", + "byteorder", +] + +[[package]] +name = "roxmltree" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1964b10c76125c36f8afe190065a4bf9a87bf324842c05701330bba9f1cacbb" +dependencies = [ + "memchr", +] + +[[package]] +name = "rsa" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d" +dependencies = [ + "const-oid 0.9.6", + "digest 0.10.7", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1", + "pkcs8", + "rand_core 0.6.4", + "sha2 0.10.9", + "signature", + "spki", + "subtle", + "zeroize", +] + +[[package]] +name = "rust-ini" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7" +dependencies = [ + "cfg-if", + "ordered-multimap", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" +dependencies = [ + "bitflags 2.13.1", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags 2.13.1", + "errno", + "libc", + "linux-raw-sys 0.12.1", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.23.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138" +dependencies = [ + "aws-lc-rs", + "once_cell", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-native-certs" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" +dependencies = [ + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework", +] + +[[package]] +name = "rustls-pki-types" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" +dependencies = [ + "web-time", + "zeroize", +] + +[[package]] +name = "rustls-platform-verifier" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0" +dependencies = [ + "core-foundation 0.10.1", + "core-foundation-sys", + "jni", + "log", + "once_cell", + "rustls", + "rustls-native-certs", + "rustls-platform-verifier-android", + "rustls-webpki", + "security-framework", + "security-framework-sys", + "webpki-root-certs", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls-platform-verifier-android" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" + +[[package]] +name = "rustls-webpki" +version = "0.103.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +dependencies = [ + "aws-lc-rs", + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "safe_arch" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323" +dependencies = [ + "bytemuck", +] + +[[package]] +name = "salsa20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213" +dependencies = [ + "cipher", +] + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "scrypt" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f" +dependencies = [ + "pbkdf2", + "salsa20", + "sha2 0.10.9", +] + +[[package]] +name = "security-framework" +version = "3.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" +dependencies = [ + "bitflags 2.13.1", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "seq-macro" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc" + +[[package]] +name = "serde" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_bytes" +version = "0.11.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.2", +] + +[[package]] +name = "serde_json" +version = "1.0.151" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +dependencies = [ + "itoa", + "serde", + "serde_core", +] + +[[package]] +name = "serde_repr" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d3b1629de253c70a0508c3899572da79ca359fdab27c7920ff00406df418906" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.2", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "3.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" +dependencies = [ + "base64", + "bs58", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.14.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "sha1" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest 0.10.7", +] + +[[package]] +name = "sha1" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aacc4cc499359472b4abe1bf11d0b12e688af9a805fa5e3016f9a386dc2d0214" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest 0.10.7", +] + +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + +[[package]] +name = "sha2-const-stable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f179d4e11094a893b82fff208f74d448a7512f99f5a0acbd5c679b705f83ed9" + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest 0.10.7", + "rand_core 0.6.4", +] + +[[package]] +name = "simba" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95" +dependencies = [ + "approx", + "num-complex", + "num-traits", + "paste", + "wide", +] + +[[package]] +name = "simd-adler32" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" + +[[package]] +name = "simd_cesu8" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11031e251abf8611c80f460e19dbdeb54a66db918e49c65a7065b46ac7aec520" +dependencies = [ + "rustc_version", + "simdutf8", +] + +[[package]] +name = "simdutf8" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e" + +[[package]] +name = "siphasher" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" + +[[package]] +name = "sketches-ddsketch" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c" +dependencies = [ + "serde", +] + +[[package]] +name = "sketches-ddsketch" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05e40b6cf54d988dc1a2223531b969c9a9e30906ad90ef64890c27b4bfbb46ea" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" + +[[package]] +name = "smol" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f" +dependencies = [ + "async-channel", + "async-executor", + "async-fs", + "async-io", + "async-lock", + "async-net", + "async-process", + "blocking", + "futures-lite", +] + +[[package]] +name = "snafu" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" +dependencies = [ + "snafu-derive 0.8.9", +] + +[[package]] +name = "snafu" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1a012328be2e3f5d5f6f3218147ca02588cea4cb865e876849ab6debcf36522" +dependencies = [ + "snafu-derive 0.9.1", +] + +[[package]] +name = "snafu-derive" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "snafu-derive" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f103c50866b8743da9429b8a581d81a27c2d3a9c4ac7df8f8571c1dd7896eda" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "snap" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886" + +[[package]] +name = "socket2" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "spin" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" + +[[package]] +name = "spin" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "023a211cb3138dbc438680b32560ad89f699977624c9f8dbb95a47d5b4c07dd3" + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "sqlparser" +version = "0.62.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c6d1b651dc4edf07eead2a0c6c78016ce971bc2c10da5266861b13f25e7cec" +dependencies = [ + "log", + "recursive", + "sqlparser_derive", +] + +[[package]] +name = "sqlparser_derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6dd45d8fc1c79299bfbb7190e42ccbbdf6a5f52e4a6ad98d92357ea965bd289" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "stabby" +version = "72.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7b834ec7ced12095fea1e4b07dcb7e8cf2b59b18afa3eac52494d835965a5ec" +dependencies = [ + "rustversion", + "stabby-abi", +] + +[[package]] +name = "stabby-abi" +version = "72.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff1a4f477858a5bdf927c9fab7f579899de9b13e39f8b3b3b300c89fbab632f4" +dependencies = [ + "rustc_version", + "rustversion", + "sha2-const-stable", + "stabby-macros", +] + +[[package]] +name = "stabby-macros" +version = "72.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b31c4b2434980b67ad83f300a58088ba14d59454dcd79ba3d87419bbd924d31e" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "stacker" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "640c8cdd92b6b12f5bcb1803ca3bbf5ab96e5e6b6b96b9ab77dabe9e880b3190" +dependencies = [ + "cc", + "cfg-if", + "libc", + "psm", + "windows-sys 0.61.2", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.119" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "3.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a207d6d6a2b7fc470b80443726053f18a2481b7e1eee970597051596567987a3" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "system-configuration" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" +dependencies = [ + "bitflags 2.13.1", + "core-foundation 0.9.4", + "system-configuration-sys", +] + +[[package]] +name = "system-configuration-sys" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + +[[package]] +name = "tantivy" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96599ea6fccd844fc833fed21d2eecac2e6a7c1afd9e044057391d78b1feb141" +dependencies = [ + "aho-corasick", + "arc-swap", + "base64", + "bitpacking", + "byteorder", + "census", + "crc32fast", + "crossbeam-channel", + "downcast-rs", + "fastdivide", + "fnv", + "fs4", + "htmlescape", + "itertools 0.12.1", + "levenshtein_automata", + "log", + "lru", + "lz4_flex 0.11.6", + "measure_time", + "memmap2", + "num_cpus", + "once_cell", + "oneshot 0.1.13", + "rayon", + "regex", + "rust-stemmers", + "rustc-hash 1.1.0", + "serde", + "serde_json", + "sketches-ddsketch 0.2.2", + "smallvec", + "tantivy-bitpacker", + "tantivy-columnar", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tantivy-stacker", + "tantivy-tokenizer-api", + "tempfile", + "thiserror 1.0.69", + "time", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df" +dependencies = [ + "bitpacking", +] + +[[package]] +name = "tantivy-columnar" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e" +dependencies = [ + "downcast-rs", + "fastdivide", + "itertools 0.12.1", + "serde", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-sstable", + "tantivy-stacker", +] + +[[package]] +name = "tantivy-common" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4" +dependencies = [ + "async-trait", + "byteorder", + "ownedbytes", + "serde", + "time", +] + +[[package]] +name = "tantivy-fst" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18" +dependencies = [ + "byteorder", + "regex-syntax", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82" +dependencies = [ + "nom", +] + +[[package]] +name = "tantivy-sstable" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "zstd", +] + +[[package]] +name = "tantivy-stacker" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8" +dependencies = [ + "murmurhash32", + "rand_distr", + "tantivy-common", +] + +[[package]] +name = "tantivy-tokenizer-api" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04" +dependencies = [ + "serde", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tar" +version = "0.4.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f6221d9a6003c78398e3b239969f352578258df48c8eb051caadae0015bc840" +dependencies = [ + "filetime", + "libc", + "xattr", +] + +[[package]] +name = "target-lexicon" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca" + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.3", + "once_cell", + "rustix 1.1.4", + "windows-sys 0.61.2", +] + +[[package]] +name = "termtree" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4d1330fe7f7f872cd05165130b10602d667b205fd85be09be2814b115d4ced9" + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9" +dependencies = [ + "thiserror-impl 2.0.19", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.2", +] + +[[package]] +name = "thrift" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" +dependencies = [ + "byteorder", + "integer-encoding", + "ordered-float", +] + +[[package]] +name = "time" +version = "0.3.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e1d5e639ff6bab73cb6885cc7e7b1de96c3f32c68ec55f3952614bec1092244" +dependencies = [ + "deranged", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" + +[[package]] +name = "time-macros" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.53.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", + "tokio-util", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.25.13+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime", + "toml_parser", + "winnow", +] + +[[package]] +name = "toml_parser" +version = "1.1.2+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" +dependencies = [ + "winnow", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.13.1", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "twox-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8464ec13c3691491391d9fce00f6416c9a48e46972f72d7865688be2080192c9" + +[[package]] +name = "typed-builder" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06fbd5b8de54c5f7c91f6fe4cebb949be2125d7758e630bb58b1d831dbce600" +dependencies = [ + "typed-builder-macro", +] + +[[package]] +name = "typed-builder-macro" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9534daa9fd3ed0bd911d462a37f172228077e7abf18c18a5f67199d959205f8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utf8-ranges" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "1.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" +dependencies = [ + "getrandom 0.4.3", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vortex" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84b722c8baa7328544d3ce22763321a9be97a75f11acdb630bb71abbe61def2a" +dependencies = [ + "vortex-alp", + "vortex-array", + "vortex-btrblocks", + "vortex-buffer", + "vortex-bytebool", + "vortex-datetime-parts", + "vortex-decimal-byte-parts", + "vortex-error", + "vortex-fastlanes", + "vortex-file", + "vortex-flatbuffers", + "vortex-fsst", + "vortex-io", + "vortex-ipc", + "vortex-layout", + "vortex-mask", + "vortex-metrics", + "vortex-pco", + "vortex-proto", + "vortex-runend", + "vortex-scan", + "vortex-sequence", + "vortex-session", + "vortex-sparse", + "vortex-utils", + "vortex-zigzag", + "vortex-zstd", +] + +[[package]] +name = "vortex-alp" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f1c242a300d0bef65ebcbaaf0086ccff778ac45e62f0bdcefbfcea5b078c979" +dependencies = [ + "itertools 0.14.0", + "num-traits", + "prost 0.14.4", + "rustc-hash 2.1.3", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-fastlanes", + "vortex-mask", + "vortex-session", + "vortex-utils", +] + +[[package]] +name = "vortex-array" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d33d2bed6547a9a30ddd4ae35259ffaca66bd3deac734f340fa4f98c046eb297" +dependencies = [ + "arc-swap", + "arcref", + "arrow-arith", + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ord", + "arrow-schema", + "arrow-select", + "arrow-string", + "async-lock", + "bytes", + "cfg-if", + "enum-iterator", + "flatbuffers", + "futures", + "half", + "humansize", + "inventory", + "itertools 0.14.0", + "jiff", + "num-traits", + "num_enum", + "parking_lot", + "paste", + "pin-project-lite", + "prost 0.14.4", + "rand 0.10.2", + "rustc-hash 2.1.3", + "simdutf8", + "smallvec", + "static_assertions", + "termtree", + "tracing", + "uuid", + "vortex-array-macros", + "vortex-buffer", + "vortex-error", + "vortex-flatbuffers", + "vortex-mask", + "vortex-proto", + "vortex-session", + "vortex-utils", +] + +[[package]] +name = "vortex-array-macros" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57dba54aebd8dc42230bb4345ede660741c34fc10439fdb1369824cb86bae907" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "vortex-btrblocks" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "110427e1a65221519c8127e92a8080ee922b5f76a311568d227fd227bfbdfa10" +dependencies = [ + "itertools 0.14.0", + "num-traits", + "pco", + "rand 0.10.2", + "vortex-alp", + "vortex-array", + "vortex-buffer", + "vortex-compressor", + "vortex-datetime-parts", + "vortex-decimal-byte-parts", + "vortex-error", + "vortex-fastlanes", + "vortex-fsst", + "vortex-pco", + "vortex-runend", + "vortex-sequence", + "vortex-sparse", + "vortex-utils", + "vortex-zigzag", + "vortex-zstd", +] + +[[package]] +name = "vortex-buffer" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd8da47e7e8afbaa18e4471a8f99f7c33e909d07f1e9cdfeae6df3c1e4f71070" +dependencies = [ + "arrow-buffer", + "bitvec", + "bytes", + "itertools 0.14.0", + "simdutf8", + "vortex-error", +] + +[[package]] +name = "vortex-bytebool" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b26f84e77f32726ec826ac70582b37e34d89bf8f007dc0b3426a188d823f45a5" +dependencies = [ + "num-traits", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-compressor" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daa039a03a9350e8ca3219bd141e852a139c0a89811c3a7caecc22fcc8d07d35" +dependencies = [ + "itertools 0.14.0", + "num-traits", + "parking_lot", + "rand 0.10.2", + "rustc-hash 2.1.3", + "tracing", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-utils", +] + +[[package]] +name = "vortex-datetime-parts" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bade3b947e68b638ad184e24b1367c3146e394e4dc837486444eb0bab7cf578" +dependencies = [ + "num-traits", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-decimal-byte-parts" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "196c22cb318d0cf2a67eb7cf9b93550eb394a0f4f56775c119abbc3fa5e9c4c2" +dependencies = [ + "num-traits", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-error" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80158c6f4397a08dc27c14ec46c3ffbecf18d0690841e5ffe9aef2d3a0a241ab" +dependencies = [ + "arrow-schema", + "flatbuffers", + "jiff", + "prost 0.14.4", + "tokio", +] + +[[package]] +name = "vortex-fastlanes" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "312a4446fbd20cbbb395a16ec3428d8b113c9b1188c51fd4c0b6265ccc487149" +dependencies = [ + "fastlanes", + "itertools 0.14.0", + "lending-iterator", + "num-traits", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-file" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b1b30147596131d56ebaeb0838372faa09621302e916da553e4413aad96ce0c" +dependencies = [ + "async-trait", + "bytes", + "flatbuffers", + "futures", + "itertools 0.14.0", + "kanal", + "moka", + "oneshot 0.2.1", + "parking_lot", + "pin-project-lite", + "tokio", + "tracing", + "vortex-alp", + "vortex-array", + "vortex-btrblocks", + "vortex-buffer", + "vortex-bytebool", + "vortex-datetime-parts", + "vortex-decimal-byte-parts", + "vortex-error", + "vortex-fastlanes", + "vortex-flatbuffers", + "vortex-fsst", + "vortex-io", + "vortex-layout", + "vortex-mask", + "vortex-metrics", + "vortex-pco", + "vortex-runend", + "vortex-scan", + "vortex-sequence", + "vortex-session", + "vortex-sparse", + "vortex-utils", + "vortex-zigzag", + "vortex-zstd", +] + +[[package]] +name = "vortex-flatbuffers" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ecc9db16991f005079050cd2245dac110eb2cc321e9c087a530acc09b423bb0" +dependencies = [ + "flatbuffers", + "vortex-buffer", + "vortex-error", +] + +[[package]] +name = "vortex-fsst" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "570382994bd8bc21836550f04427a8d85f419f9e897c9ec042c1486ab34aa063" +dependencies = [ + "fsst-rs", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-io" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1747e9615151214cd31ec00a854cd6dd4bf677d9f649b5b32f0d4d5f40c1e268" +dependencies = [ + "async-fs", + "async-stream", + "async-trait", + "bytes", + "custom-labels", + "futures", + "glob", + "kanal", + "oneshot 0.2.1", + "parking_lot", + "pin-project-lite", + "smol", + "tokio", + "tracing", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-metrics", + "vortex-session", + "vortex-utils", + "wasm-bindgen-futures", +] + +[[package]] +name = "vortex-ipc" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4bd60c8735ea6e0f71a27a16f44f9fbb8d293c341d30ad6f042103a2b4808b8" +dependencies = [ + "bytes", + "flatbuffers", + "futures", + "itertools 0.14.0", + "pin-project-lite", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-flatbuffers", + "vortex-session", +] + +[[package]] +name = "vortex-layout" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "526570e7cfdf252798015e27cf175f2cac40aae1e164337fd382501193ec4274" +dependencies = [ + "arcref", + "arrow-array", + "arrow-schema", + "async-stream", + "async-trait", + "bit-vec", + "flatbuffers", + "futures", + "itertools 0.14.0", + "kanal", + "moka", + "once_cell", + "oneshot 0.2.1", + "parking_lot", + "paste", + "pin-project-lite", + "prost 0.14.4", + "rustc-hash 2.1.3", + "sketches-ddsketch 0.4.0", + "termtree", + "tokio", + "tracing", + "vortex-array", + "vortex-btrblocks", + "vortex-buffer", + "vortex-error", + "vortex-flatbuffers", + "vortex-io", + "vortex-mask", + "vortex-metrics", + "vortex-runend", + "vortex-scan", + "vortex-sequence", + "vortex-session", + "vortex-utils", +] + +[[package]] +name = "vortex-mask" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5b43ee2a50c722d9abdaed454e836b044a3a69acbb5f5d95e28b89e520b11d9" +dependencies = [ + "itertools 0.14.0", + "vortex-buffer", + "vortex-error", +] + +[[package]] +name = "vortex-metrics" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e079c9fe032af05b2e38bf91e63d2bdf36bd01e3920bc4a352648b2b21e9f70" +dependencies = [ + "parking_lot", + "sketches-ddsketch 0.4.0", +] + +[[package]] +name = "vortex-pco" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8902b2df3068b37267c927cdec8905ea4e0e693d81274ba9713000929d1e514e" +dependencies = [ + "pco", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-proto" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4f018abac72332c320ba3b8b59b6ce72f6c8a6caf0552b0b5c255f336b7f502" +dependencies = [ + "prost 0.14.4", + "prost-types", +] + +[[package]] +name = "vortex-runend" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73dd8c96206fd4c0110e9ac304fd41e78f6e85659975c9e63911dddd982de5fd" +dependencies = [ + "arrow-array", + "itertools 0.14.0", + "num-traits", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-scan" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a34deb979fc801bbc0e015ceccca1870f1dbbc72426fc040d277ea86cd9df5fd" +dependencies = [ + "async-trait", + "futures", + "roaring", + "tracing", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-sequence" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "933091989818d88836430fb68ca0b3ef9e054bf2740f94051377231cc287d427" +dependencies = [ + "num-traits", + "prost 0.14.4", + "smallvec", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-proto", + "vortex-session", +] + +[[package]] +name = "vortex-session" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a62810f3a266cdd8bc4812235b8d2b1b586a909dc69107ba51f4dbfee01d9f2" +dependencies = [ + "dashmap", + "lasso", + "parking_lot", + "vortex-error", + "vortex-utils", +] + +[[package]] +name = "vortex-sparse" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe0d321f522d325a811bfc6506b320db12f57bd7710d558520d75dd7313b9dd1" +dependencies = [ + "itertools 0.14.0", + "num-traits", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", +] + +[[package]] +name = "vortex-utils" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe05be4a3e14c562c80f78cbdec0e5a05030e4d1299a6ca6609441758414202" +dependencies = [ + "dashmap", + "hashbrown 0.17.1", + "vortex-error", +] + +[[package]] +name = "vortex-zigzag" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6635049187e7e46413fc2d760a2836b73c0b1ffcbbc54b657b6c338a5551c5c6" +dependencies = [ + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", + "zigzag", +] + +[[package]] +name = "vortex-zstd" +version = "0.75.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8dc464ba75cff8510a7f31e8c5aa7ca4f3ce34d15e87e80a91880d3afa7458df" +dependencies = [ + "itertools 0.14.0", + "prost 0.14.4", + "vortex-array", + "vortex-buffer", + "vortex-error", + "vortex-mask", + "vortex-session", + "zstd", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.119", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-root-certs" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b96554aa2acc8ccdb7e1c9a58a7a68dd5d13bccc69cd124cb09406db612a1c9b" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "whoami" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d" +dependencies = [ + "libredox", + "wasite", + "web-sys", +] + +[[package]] +name = "wide" +version = "0.7.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03" +dependencies = [ + "bytemuck", + "safe_arch", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" +dependencies = [ + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" +dependencies = [ + "memchr", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "xattr" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156" +dependencies = [ + "libc", + "rustix 1.1.4", +] + +[[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zigzag" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70b40401a28d86ce16a330b863b86fd7dbee4d7c940587ab09ab8c019f9e3fdf" +dependencies = [ + "num-traits", +] + +[[package]] +name = "zlib-rs" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b142a20ec14a91d5bc708c1dc21b080c550113d8aa77afa29635673a65dd02c5" + +[[package]] +name = "zmij" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" + +[[package]] +name = "zstd" +version = "0.13.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" +dependencies = [ + "zstd-safe", +] + +[[package]] +name = "zstd-safe" +version = "7.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" +dependencies = [ + "zstd-sys", +] + +[[package]] +name = "zstd-sys" +version = "2.0.16+zstd.1.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" +dependencies = [ + "cc", + "pkg-config", +] diff --git a/DEPENDENCIES.rust.tsv b/DEPENDENCIES.rust.tsv index c95a7fa0..7c66bcb0 100644 --- a/DEPENDENCIES.rust.tsv +++ b/DEPENDENCIES.rust.tsv @@ -4,16 +4,22 @@ aes@0.8.4 X X ahash@0.8.12 X X aho-corasick@1.1.4 X X alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X +alloc-stdlib@0.2.4 X allocator-api2@0.2.21 X X android_system_properties@0.1.5 X X -anyhow@1.0.102 X X +anstream@1.0.0 X X +anstyle@1.0.14 X X +anstyle-parse@1.0.0 X X +anstyle-query@1.1.5 X X +anstyle-wincon@3.0.11 X X +anyhow@1.0.104 X X apache-avro@0.21.0 X approx@0.5.1 X -ar_archive_writer@0.5.1 X -arc-swap@1.9.1 X X +ar_archive_writer@0.5.2 X +arc-swap@1.9.2 X X +arcref@0.2.0 X arrayref@0.3.9 X -arrayvec@0.7.6 X X +arrayvec@0.7.8 X X arrow@58.3.0 X arrow-arith@58.3.0 X arrow-array@58.3.0 X X @@ -29,71 +35,102 @@ arrow-row@58.3.0 X arrow-schema@58.3.0 X arrow-select@58.3.0 X arrow-string@58.3.0 X +async-channel@2.5.0 X X async-compression@0.4.42 X X +async-executor@1.14.0 X X async-ffi@0.5.0 X +async-fs@2.2.0 X X +async-io@2.6.0 X X +async-lock@3.4.2 X X +async-net@2.0.0 X X +async-process@2.5.0 X X +async-signal@0.2.14 X X async-stream@0.3.6 X async-stream-impl@0.3.6 X -async-trait@0.1.89 X X +async-task@4.7.1 X X +async-trait@0.1.91 X X atoi@2.0.0 X atomic-waker@1.1.2 X X autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X axum@0.7.9 X axum-core@0.4.5 X axum-macros@0.4.2 X -backon@1.6.0 X base64@0.22.1 X X base64ct@1.8.3 X X +better_io@0.2.0 X bigdecimal@0.4.10 X X -bitflags@2.11.1 X X +bindgen@0.72.1 X +bit-vec@0.9.1 X X +bitflags@2.13.1 X X bitpacking@0.9.3 X +bitvec@1.1.1 X blake2@0.10.6 X X blake3@1.8.5 X X X block-buffer@0.10.4 X X block-buffer@0.12.1 X X block-padding@0.3.3 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X +blocking@1.6.2 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X +bytemuck@1.25.2 X X X byteorder@1.5.0 X X -bytes@1.11.1 X +bytes@1.12.1 X bzip2@0.6.1 X X cbc@0.1.2 X X -cc@1.2.63 X X +cc@1.3.0 X X census@0.4.2 X +cexpr@0.6.0 X X cfg-if@1.0.4 X X -chrono@0.4.44 X X +chacha20@0.10.1 X X +chrono@0.4.45 X X chrono-tz@0.10.4 X X cipher@0.4.4 X X +clang-sys@1.8.1 X +clap@4.6.2 X X +clap_builder@4.6.2 X X +clap_derive@4.6.1 X X +clap_lex@1.1.0 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +colorchoice@1.0.5 X X +combine@4.6.7 X comfy-table@7.2.2 X compression-codecs@0.4.38 X X compression-core@0.4.32 X X +concurrent-queue@2.5.0 X X const-oid@0.10.2 X X const-oid@0.9.6 X X const-random@0.1.18 X X const-random-macro@0.1.16 X X +const_for@0.1.6 X constant_time_eq@0.4.2 X X X core-foundation@0.10.1 X X core-foundation@0.9.4 X X core-foundation-sys@0.8.7 X X +core_detect@1.0.0 X X cpufeatures@0.2.17 X X cpufeatures@0.3.0 X X crc@3.4.0 X X crc-catalog@2.5.0 X X -crc32c@0.6.8 X X +crc-fast@1.10.0 X X crc32fast@1.5.0 X X -crossbeam-channel@0.5.15 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X +crossbeam-channel@0.5.16 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X crunchy@0.2.4 X crypto-common@0.1.7 X X crypto-common@0.2.2 X X csv@1.4.0 X X csv-core@0.1.13 X X ctr@0.9.2 X X +ctutils@0.4.2 X X +custom-labels@0.4.6 X darling@0.23.0 X darling_core@0.23.0 X darling_macro@0.23.0 X @@ -139,15 +176,26 @@ diff@0.1.13 X X digest@0.10.7 X X digest@0.11.3 X X displaydoc@0.2.6 X X +dlv-list@0.5.2 X X dns-lookup@3.0.1 X X downcast-rs@1.2.1 X X +dtype_dispatch@0.2.1 X +dunce@1.0.5 X X X either@1.16.0 X X encoding_rs@0.8.35 X X X +enum-iterator@2.3.0 X +enum-iterator-derive@1.5.0 X equivalent@1.0.2 X X errno@0.3.14 X X +event-listener@5.4.1 X X +event-listener-strategy@0.5.4 X X +ext-trait@1.0.1 X X X +ext-trait-proc_macros@1.0.1 X X X +extension-traits@1.0.1 X X X fallible-streaming-iterator@0.1.9 X X fastdivide@0.4.2 X X -fastrand@2.4.1 X X +fastlanes@0.5.2 X +fastrand@2.5.0 X X find-msvc-tools@0.1.9 X X fixedbitset@0.5.7 X X flatbuffers@25.12.19 X @@ -159,25 +207,28 @@ foreign-types@0.3.2 X X foreign-types-shared@0.1.1 X X form_urlencoded@1.2.2 X X fs4@0.8.4 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X +fs_extra@1.3.0 X +fsst-rs@0.5.11 X +funty@2.0.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-lite@2.6.1 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X g2gen@1.2.2 X X g2p@1.2.2 X X g2poly@1.2.2 X X generic-array@0.14.7 X getrandom@0.2.17 X X getrandom@0.3.4 X X -getrandom@0.4.2 X X +getrandom@0.4.3 X X glob@0.3.3 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X +h2@0.4.15 X half@2.7.1 X X hashbrown@0.14.5 X X hashbrown@0.15.5 X X @@ -187,14 +238,15 @@ heck@0.5.0 X X hermit-abi@0.5.2 X X hex@0.4.3 X X hmac@0.12.1 X X -home@0.5.12 X X +hmac@0.13.0 X X htmlescape@0.3.1 X X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X httparse@1.10.1 X X httpdate@1.0.3 X X -humantime@2.3.0 X X +humansize@2.1.3 X X +humantime@2.4.0 X X hybrid-array@0.4.13 X X hyper@1.10.1 X hyper-rustls@0.27.9 X X X @@ -216,17 +268,28 @@ indexmap@2.14.0 X X inout@0.1.4 X X instant@0.1.13 X integer-encoding@3.0.4 X +inventory@0.3.24 X X ipnet@2.12.0 X X +is_terminal_polyfill@1.70.2 X X itertools@0.12.1 X X +itertools@0.13.0 X X itertools@0.14.0 X X itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X -jsonwebtoken@9.3.1 X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +kanal@0.1.1 X +lasso@0.7.3 X X lazy_static@1.5.0 X X +lending-iterator@0.1.7 X X X +lending-iterator-proc_macros@0.1.7 X X X levenshtein_automata@0.2.1 X lexical-core@1.0.6 X X lexical-parse-float@1.0.6 X X @@ -236,68 +299,96 @@ lexical-write-float@1.0.6 X X lexical-write-integer@1.0.6 X X libbz2-rs-sys@0.2.5 X libc@0.2.186 X X +libloading@0.8.9 X libloading@0.9.0 X -liblzma@0.4.6 X X -liblzma-sys@0.4.6 X X +liblzma@0.4.7 X X +liblzma-sys@0.4.7 X X libm@0.2.16 X -libredox@0.1.17 X +libredox@0.1.18 X linux-raw-sys@0.12.1 X X X linux-raw-sys@0.4.15 X X X litemap@0.8.2 X lock_api@0.4.14 X X -log@0.4.30 X X +log@0.4.33 X X lru@0.12.5 X lz4_flex@0.11.6 X lz4_flex@0.13.1 X lzokay-native@0.1.0 X +macro_rules_attribute@0.1.3 X +macro_rules_attribute-proc_macro@0.1.3 X matchit@0.7.3 X X -matrixmultiply@0.3.10 X X +matrixmultiply@0.3.11 X X md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X measure_time@0.8.3 X -memchr@2.8.1 X X -memmap2@0.9.10 X X +memchr@2.8.3 X X +memmap2@0.9.11 X X mime@0.3.17 X X minimal-lexical@0.2.1 X X miniz_oxide@0.8.9 X X X -mio@1.2.1 X +mio@1.2.2 X +moka@0.12.15 X X murmurhash32@0.3.1 X nalgebra@0.33.3 X nalgebra-macros@0.2.2 X native-tls@0.2.18 X X +never-say-never@6.6.666 X X X nom@7.1.3 X +nougat@0.2.4 X X X +nougat-proc_macros@0.2.4 X X X num@0.4.3 X X -num-bigint@0.4.6 X X +num-bigint@0.4.8 X X num-bigint-dig@0.8.6 X X num-complex@0.4.6 X X num-conv@0.2.2 X X num-integer@0.1.46 X X -num-iter@0.1.45 X X +num-iter@0.1.46 X X num-rational@0.4.2 X X num-traits@0.2.19 X X num_cpus@1.17.0 X X +num_enum@0.7.6 X X X +num_enum_derive@0.7.6 X X X object@0.37.3 X X object_store@0.13.2 X X once_cell@1.21.4 X X +once_cell_polyfill@1.70.2 X X oneshot@0.1.13 X X -opendal@0.55.0 X -openssl@0.10.80 X +oneshot@0.2.1 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-azdls@0.58.0 X +opendal-service-azure-common@0.58.0 X +opendal-service-cos@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-gcs@0.58.0 X +opendal-service-hdfs-native@0.58.0 X +opendal-service-obs@0.58.0 X +opendal-service-oss@0.58.0 X +opendal-service-s3@0.58.0 X +openssl@0.10.81 X openssl-macros@0.1.1 X X openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X +openssl-sys@0.9.117 X orc-rust@0.8.0 X ordered-float@2.10.1 X +ordered-multimap@0.7.3 X ownedbytes@0.7.0 X paimon@0.3.0 X paimon-c@0.3.0 X paimon-datafusion@0.3.0 X paimon-integration-tests@0.3.0 X +paimon-mosaic-core@0.2.0 X paimon-rest-server@0.3.0 X -paimon-vindex-core@0.1.0 X +paimon-tpcds-bench@0.3.0 X +paimon-vindex-core@0.2.0 X +parking@2.2.1 X X parking_lot@0.12.5 X X parking_lot_core@0.9.12 X X parquet@58.3.0 X paste@1.0.15 X X pbkdf2@0.12.2 X X +pco@1.0.2 X pem@3.0.6 X pem-rfc7468@0.7.0 X X percent-encoding@2.3.2 X X @@ -307,12 +398,15 @@ phf_shared@0.12.1 X pin-project@1.1.13 X X pin-project-internal@1.1.13 X X pin-project-lite@0.2.17 X X +piper@0.2.5 X X pkcs1@0.7.5 X X pkcs5@0.7.1 X X pkcs8@0.10.2 X X pkg-config@0.3.33 X X plain@0.2.3 X X -portable-atomic@1.13.1 X X +polling@3.11.0 X X +polonius-the-crab@0.2.1 X X X +portable-atomic@1.14.0 X X portable-atomic-util@0.2.7 X X potential_utf@0.1.5 X powerfmt@0.2.0 X X @@ -320,12 +414,12 @@ ppv-lite86@0.2.21 X X pretty_assertions@1.4.1 X X prettyplease@0.2.37 X X proc-macro-crate@3.5.0 X X -proc-macro2@1.0.106 X X +proc-macro2@1.0.107 X X prost@0.13.5 X -prost@0.14.3 X +prost@0.14.4 X prost-derive@0.13.5 X -prost-derive@0.14.3 X -prost-types@0.14.3 X +prost-derive@0.14.4 X +prost-types@0.14.4 X psm@0.1.31 X X pyo3@0.28.3 X X pyo3-build-config@0.28.3 X X @@ -334,43 +428,59 @@ pyo3-macros@0.28.3 X X pyo3-macros-backend@0.28.3 X X pypaimon_rust@0.3.0 X quad-rand@0.2.3 X -quick-xml@0.37.5 X -quick-xml@0.38.4 X -quote@1.0.45 X X +quick-xml@0.41.0 X +quote@1.0.47 X X r-efi@5.3.0 X X X r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X +radium@0.7.0 X +rand@0.10.2 X X +rand@0.8.7 X X +rand@0.9.5 X X rand_chacha@0.3.1 X X rand_chacha@0.9.0 X X +rand_core@0.10.1 X X rand_core@0.6.4 X X rand_core@0.9.5 X X rand_distr@0.4.3 X X +rand_xoshiro@0.6.0 X X rawpointer@0.2.1 X X rayon@1.12.0 X X rayon-core@1.13.0 X X recursive@0.1.1 X recursive-proc-macro-impl@0.1.1 X redox_syscall@0.5.18 X -regex@1.12.3 X X -regex-automata@0.4.14 X X +redox_syscall@0.9.0 X +regex@1.13.1 X X +regex-automata@0.4.16 X X regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-aws-v4@3.0.2 X +reqsign-azure-storage@3.1.0 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqsign-google@3.0.2 X +reqsign-huaweicloud-obs@3.0.2 X +reqsign-tencent-cos@3.0.2 X reqwest@0.12.28 X X -ring@0.17.14 X X +reqwest@0.13.4 X X roaring@0.11.4 X X roxmltree@0.21.1 X X rsa@0.9.10 X X +rust-ini@0.21.3 X rust-stemmers@1.2.0 X X rustc-hash@1.1.0 X X +rustc-hash@2.1.3 X X rustc_version@0.4.1 X X rustix@0.38.44 X X X rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X rustls-webpki@0.103.13 X -rustversion@1.0.22 X X +rustversion@1.0.23 X X ryu@1.0.23 X X safe_arch@0.7.4 X X X salsa20@0.10.2 X X @@ -382,38 +492,43 @@ security-framework@3.7.0 X X security-framework-sys@2.17.0 X X semver@1.0.28 X X seq-macro@0.3.6 X X -serde@1.0.228 X X +serde@1.0.229 X X serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X serde_path_to_error@0.1.20 X X -serde_repr@0.1.20 X X +serde_repr@0.1.21 X X serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X sha2@0.10.9 X X sha2@0.11.0 X X sha2-const-stable@0.1.0 X X +shlex@1.3.0 X X shlex@2.0.1 X X signal-hook-registry@1.4.8 X X signature@2.2.0 X X simba@0.9.1 X -simd-adler32@0.3.9 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X simdutf8@0.1.5 X X -simple_asn1@0.6.4 X siphasher@1.0.3 X X sketches-ddsketch@0.2.2 X +sketches-ddsketch@0.4.0 X slab@0.4.12 X -smallvec@1.15.1 X X +smallvec@1.15.2 X X +smol@2.0.2 X X snafu@0.8.9 X X snafu@0.9.1 X X snafu-derive@0.8.9 X X snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X -spin@0.9.8 X +snap@1.1.2 X +socket2@0.6.5 X X +spin@0.10.1 X +spin@0.9.9 X spki@0.7.3 X X sqlparser@0.62.0 X sqlparser_derive@0.5.0 X @@ -422,15 +537,19 @@ stabby-abi@72.1.8 X X stabby-macros@72.1.8 X X stable_deref_trait@1.2.1 X X stacker@0.1.24 X X +static_assertions@1.1.0 X X strsim@0.11.1 X strum@0.27.2 X strum_macros@0.27.2 X subtle@2.6.1 X -syn@2.0.117 X X +syn@1.0.109 X X +syn@2.0.119 X X +syn@3.0.2 X X sync_wrapper@1.0.2 X synstructure@0.13.2 X system-configuration@0.7.0 X X system-configuration-sys@0.6.0 X X +tagptr@0.2.0 X X tantivy@0.22.1 X tantivy-bitpacker@0.6.0 X tantivy-columnar@0.3.0 X @@ -440,26 +559,27 @@ tantivy-query-grammar@0.22.0 X tantivy-sstable@0.3.0 X tantivy-stacker@0.3.0 X tantivy-tokenizer-api@0.3.0 X +tap@1.0.1 X target-lexicon@0.13.5 X tempfile@3.27.0 X X +termtree@1.0.0 X thiserror@1.0.69 X X -thiserror@2.0.18 X X +thiserror@2.0.19 X X thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X +thiserror-impl@2.0.19 X X thrift@0.17.0 X -time@0.3.47 X X -time-core@0.1.8 X X -time-macros@0.2.27 X X +time@0.3.54 X X +time-core@0.1.9 X X tiny-keccak@2.0.2 X tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X +tokio@1.53.0 X +tokio-macros@2.7.1 X tokio-native-tls@0.3.1 X tokio-rustls@0.26.4 X X tokio-stream@0.1.18 X tokio-util@0.7.18 X toml_datetime@1.1.1+spec-1.1.0 X X -toml_edit@0.25.12+spec-1.1.0 X X +toml_edit@0.25.13+spec-1.1.0 X X toml_parser@1.1.2+spec-1.1.0 X X tower@0.5.3 X tower-http@0.6.11 X @@ -469,7 +589,7 @@ tracing@0.1.44 X tracing-attributes@0.1.31 X tracing-core@0.1.36 X try-lock@0.2.5 X -twox-hash@2.1.2 X +twox-hash@2.1.3 X typed-builder@0.19.1 X X typed-builder-macro@0.19.1 X X typenum@1.20.1 X X @@ -481,24 +601,54 @@ url@2.5.8 X X urlencoding@2.1.3 X utf8-ranges@1.0.5 X X utf8_iter@1.0.4 X X -uuid@1.23.2 X X +utf8parse@0.2.2 X X +uuid@1.24.0 X X vcpkg@0.2.15 X X version_check@0.9.5 X X +vortex@0.75.0 X +vortex-alp@0.75.0 X +vortex-array@0.75.0 X +vortex-array-macros@0.75.0 X +vortex-btrblocks@0.75.0 X +vortex-buffer@0.75.0 X +vortex-bytebool@0.75.0 X +vortex-compressor@0.75.0 X +vortex-datetime-parts@0.75.0 X +vortex-decimal-byte-parts@0.75.0 X +vortex-error@0.75.0 X +vortex-fastlanes@0.75.0 X +vortex-file@0.75.0 X +vortex-flatbuffers@0.75.0 X +vortex-fsst@0.75.0 X +vortex-io@0.75.0 X +vortex-ipc@0.75.0 X +vortex-layout@0.75.0 X +vortex-mask@0.75.0 X +vortex-metrics@0.75.0 X +vortex-pco@0.75.0 X +vortex-proto@0.75.0 X +vortex-runend@0.75.0 X +vortex-scan@0.75.0 X +vortex-sequence@0.75.0 X +vortex-session@0.75.0 X +vortex-sparse@0.75.0 X +vortex-utils@0.75.0 X +vortex-zigzag@0.75.0 X +vortex-zstd@0.75.0 X walkdir@2.5.0 X X want@0.3.1 X wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X +wasip2@1.0.4+wasi-0.2.12 X X X wasite@0.1.0 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X web-time@1.1.0 X X -webpki-roots@1.0.7 X +webpki-root-certs@1.0.9 X whoami@1.6.1 X X X wide@0.7.33 X X X winapi@0.3.9 X X @@ -534,23 +684,25 @@ windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_gnullvm@0.53.1 X X windows_x86_64_msvc@0.52.6 X X windows_x86_64_msvc@0.53.1 X X -winnow@1.0.3 X -wit-bindgen@0.51.0 X X X +winnow@1.0.4 X wit-bindgen@0.57.1 X X X writeable@0.6.3 X +wyz@0.5.1 X +xattr@1.6.1 X X yansi@1.0.1 X X -yoke@0.8.2 X +yoke@0.8.3 X yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X zerofrom@0.1.8 X zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X +zeroize@1.9.0 X X zerotrie@0.2.4 X zerovec@0.11.6 X zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X +zigzag@0.1.0 X +zlib-rs@0.6.6 X +zmij@1.0.23 X zstd@0.13.3 X zstd-safe@7.2.4 X X zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/benchmarks/tpcds/Cargo.toml b/benchmarks/tpcds/Cargo.toml index 9765b19a..d5b74130 100644 --- a/benchmarks/tpcds/Cargo.toml +++ b/benchmarks/tpcds/Cargo.toml @@ -21,6 +21,7 @@ edition.workspace = true version.workspace = true publish = false license.workspace = true +rust-version.workspace = true [dependencies] clap = { version = "4", features = ["derive"] } diff --git a/benchmarks/tpcds/DEPENDENCIES.rust.tsv b/benchmarks/tpcds/DEPENDENCIES.rust.tsv new file mode 100644 index 00000000..48959c08 --- /dev/null +++ b/benchmarks/tpcds/DEPENDENCIES.rust.tsv @@ -0,0 +1,457 @@ +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 Unicode-3.0 Unlicense Zlib bzip2-1.0.6 +adler2@2.0.1 X X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +allocator-api2@0.2.21 X X +android_system_properties@0.1.5 X X +anstream@1.0.0 X X +anstyle@1.0.14 X X +anstyle-parse@1.0.0 X X +anstyle-query@1.1.5 X X +anstyle-wincon@3.0.11 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +ar_archive_writer@0.5.2 X +arrayref@0.3.9 X +arrayvec@0.7.8 X X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-compression@0.4.42 X X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +base64@0.22.1 X X +bigdecimal@0.4.10 X X +bitflags@2.13.1 X X +blake2@0.10.6 X X +blake3@1.8.5 X X X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +bzip2@0.6.1 X X +cc@1.3.0 X X +cfg-if@1.0.4 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +clap@4.6.2 X X +clap_builder@4.6.2 X X +clap_derive@4.6.1 X X +clap_lex@1.1.0 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +colorchoice@1.0.5 X X +combine@4.6.7 X +comfy-table@7.2.2 X +compression-codecs@0.4.38 X X +compression-core@0.4.32 X X +const-oid@0.10.2 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +constant_time_eq@0.4.2 X X X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc32fast@1.5.0 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctutils@0.4.2 X X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +dashmap@6.2.1 X +datafusion@54.0.0 X +datafusion-catalog@54.0.0 X +datafusion-catalog-listing@54.0.0 X +datafusion-common@54.0.0 X +datafusion-common-runtime@54.0.0 X +datafusion-datasource@54.0.0 X +datafusion-datasource-arrow@54.0.0 X +datafusion-datasource-csv@54.0.0 X +datafusion-datasource-json@54.0.0 X +datafusion-datasource-parquet@54.0.0 X +datafusion-doc@54.0.0 X +datafusion-execution@54.0.0 X +datafusion-expr@54.0.0 X +datafusion-expr-common@54.0.0 X +datafusion-functions@54.0.0 X +datafusion-functions-aggregate@54.0.0 X +datafusion-functions-aggregate-common@54.0.0 X +datafusion-functions-nested@54.0.0 X +datafusion-functions-table@54.0.0 X +datafusion-functions-window@54.0.0 X +datafusion-functions-window-common@54.0.0 X +datafusion-macros@54.0.0 X +datafusion-optimizer@54.0.0 X +datafusion-physical-expr@54.0.0 X +datafusion-physical-expr-adapter@54.0.0 X +datafusion-physical-expr-common@54.0.0 X +datafusion-physical-optimizer@54.0.0 X +datafusion-physical-plan@54.0.0 X +datafusion-pruning@54.0.0 X +datafusion-session@54.0.0 X +datafusion-sql@54.0.0 X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +equivalent@1.0.2 X X +errno@0.3.14 X X +fallible-streaming-iterator@0.1.9 X X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +fixedbitset@0.5.7 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foldhash@0.1.5 X +foldhash@0.2.0 X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +glob@0.3.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.15.5 X X +hashbrown@0.17.1 X X +heck@0.5.0 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +humantime@2.4.0 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +integer-encoding@3.0.4 X +ipnet@2.12.0 X X +is_terminal_polyfill@1.70.2 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libbz2-rs-sys@0.2.5 X +libc@0.2.186 X X +libloading@0.9.0 X +liblzma@0.4.7 X X +liblzma-sys@0.4.7 X X +libm@0.2.16 X +linux-raw-sys@0.12.1 X X X +litemap@0.8.2 X +lock_api@0.4.14 X X +log@0.4.33 X X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +memchr@2.8.3 X X +mime@0.3.17 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-complex@0.4.6 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +object@0.37.3 X X +object_store@0.13.2 X X +once_cell@1.21.4 X X +once_cell_polyfill@1.70.2 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +paimon@0.3.0 X +paimon-datafusion@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-tpcds-bench@0.3.0 X +paimon-vindex-core@0.2.0 X +parking_lot@0.12.5 X X +parking_lot_core@0.9.12 X X +parquet@58.3.0 X +paste@1.0.15 X X +percent-encoding@2.3.2 X X +petgraph@0.8.3 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project@1.1.13 X X +pin-project-internal@1.1.13 X X +pin-project-lite@0.2.17 X X +pkg-config@0.3.33 X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost-derive@0.13.5 X +psm@0.1.31 X X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +recursive@0.1.1 X +recursive-proc-macro-impl@0.1.1 X +redox_syscall@0.5.18 X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +rust-ini@0.21.3 X +rustc_version@0.4.1 X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +same-file@1.0.6 X X +schannel@0.1.29 X +scopeguard@1.2.0 X X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@2.0.1 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +slab@0.4.12 X +smallvec@1.15.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +sqlparser@0.62.0 X +sqlparser_derive@0.5.0 X +stable_deref_trait@1.2.1 X X +stacker@0.1.24 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tempfile@3.27.0 X X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-stream@0.1.18 X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-attributes@0.1.31 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8_iter@1.0.4 X X +utf8parse@0.2.2 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +wide@0.7.33 X X X +winapi-util@0.1.11 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.61.2 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/bindings/c/Cargo.toml b/bindings/c/Cargo.toml index 41bdd964..f02c3e83 100644 --- a/bindings/c/Cargo.toml +++ b/bindings/c/Cargo.toml @@ -18,11 +18,13 @@ [package] name = "paimon-c" description = "C bindings for Apache Paimon Rust" +publish = false repository.workspace = true edition.workspace = true license.workspace = true version.workspace = true +rust-version.workspace = true [lib] crate-type = ["cdylib", "staticlib", "rlib"] diff --git a/bindings/c/DEPENDENCIES.rust.tsv b/bindings/c/DEPENDENCIES.rust.tsv index ba666306..488a7423 100644 --- a/bindings/c/DEPENDENCIES.rust.tsv +++ b/bindings/c/DEPENDENCIES.rust.tsv @@ -1,345 +1,373 @@ -crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT Unicode-3.0 Unlicense Zlib -adler2@2.0.1 X X X -ahash@0.8.12 X X -aho-corasick@1.1.4 X X -alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X -android_system_properties@0.1.5 X X -anyhow@1.0.102 X X -apache-avro@0.21.0 X -approx@0.5.1 X -arrow@58.3.0 X -arrow-arith@58.3.0 X -arrow-array@58.3.0 X X -arrow-buffer@58.3.0 X -arrow-cast@58.3.0 X -arrow-csv@58.3.0 X -arrow-data@58.3.0 X -arrow-ipc@58.3.0 X -arrow-json@58.3.0 X -arrow-ord@58.3.0 X -arrow-row@58.3.0 X -arrow-schema@58.3.0 X -arrow-select@58.3.0 X -arrow-string@58.3.0 X -async-stream@0.3.6 X -async-stream-impl@0.3.6 X -async-trait@0.1.89 X X -atoi@2.0.0 X -atomic-waker@1.1.2 X X -autocfg@1.5.1 X X -backon@1.6.0 X -base64@0.22.1 X X -bigdecimal@0.4.10 X X -bitflags@2.11.1 X X -block-buffer@0.10.4 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X -bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X -byteorder@1.5.0 X X -bytes@1.11.1 X -cc@1.2.63 X X -cfg-if@1.0.4 X X -chrono@0.4.44 X X -chrono-tz@0.10.4 X X -comfy-table@7.2.2 X -const-oid@0.9.6 X X -const-random@0.1.18 X X -const-random-macro@0.1.16 X X -core-foundation@0.10.1 X X -core-foundation@0.9.4 X X -core-foundation-sys@0.8.7 X X -cpufeatures@0.2.17 X X -crc32fast@1.5.0 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X -crunchy@0.2.4 X -crypto-common@0.1.7 X X -csv@1.4.0 X X -csv-core@0.1.13 X X -darling@0.23.0 X -darling_core@0.23.0 X -darling_macro@0.23.0 X -diff@0.1.13 X X -digest@0.10.7 X X -displaydoc@0.2.6 X X -either@1.16.0 X X -encoding_rs@0.8.35 X X X -equivalent@1.0.2 X X -errno@0.3.14 X X -fallible-streaming-iterator@0.1.9 X X -fastrand@2.4.1 X X -find-msvc-tools@0.1.9 X X -flatbuffers@25.12.19 X -flate2@1.1.9 X X -fnv@1.0.7 X X -foreign-types@0.3.2 X X -foreign-types-shared@0.1.1 X X -form_urlencoded@1.2.2 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X -generic-array@0.14.7 X -getrandom@0.2.17 X X -getrandom@0.3.4 X X -getrandom@0.4.2 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X -half@2.7.1 X X -hashbrown@0.17.1 X X -heck@0.5.0 X X -hex@0.4.3 X X -hmac@0.12.1 X X -home@0.5.12 X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X -httparse@1.10.1 X X -httpdate@1.0.3 X X -hyper@1.10.1 X -hyper-rustls@0.27.9 X X X -hyper-tls@0.6.0 X X -hyper-util@0.1.20 X -iana-time-zone@0.1.65 X X -iana-time-zone-haiku@0.1.2 X X -icu_collections@2.2.0 X -icu_locale_core@2.2.0 X -icu_normalizer@2.2.0 X -icu_normalizer_data@2.2.0 X -icu_properties@2.2.0 X -icu_properties_data@2.2.0 X -icu_provider@2.2.0 X -ident_case@1.0.1 X X -idna@1.1.0 X X -idna_adapter@1.2.2 X X -indexmap@2.14.0 X X -integer-encoding@3.0.4 X -ipnet@2.12.0 X X -itertools@0.14.0 X X -itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X -jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X -lexical-core@1.0.6 X X -lexical-parse-float@1.0.6 X X -lexical-parse-integer@1.0.6 X X -lexical-util@1.0.7 X X -lexical-write-float@1.0.6 X X -lexical-write-integer@1.0.6 X X -libc@0.2.186 X X -libloading@0.9.0 X -libm@0.2.16 X -linux-raw-sys@0.12.1 X X X -litemap@0.8.2 X -log@0.4.30 X X -lz4_flex@0.11.6 X -lz4_flex@0.13.1 X -lzokay-native@0.1.0 X -matrixmultiply@0.3.10 X X -md-5@0.10.6 X X -memchr@2.8.1 X X -mime@0.3.17 X X -miniz_oxide@0.8.9 X X X -mio@1.2.1 X -nalgebra@0.33.3 X -nalgebra-macros@0.2.2 X -native-tls@0.2.18 X X -num@0.4.3 X X -num-bigint@0.4.6 X X -num-complex@0.4.6 X X -num-integer@0.1.46 X X -num-iter@0.1.45 X X -num-rational@0.4.2 X X -num-traits@0.2.19 X X -once_cell@1.21.4 X X -opendal@0.55.0 X -openssl@0.10.80 X -openssl-macros@0.1.1 X X -openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X -orc-rust@0.8.0 X -ordered-float@2.10.1 X -paimon@0.3.0 X -paimon-c@0.3.0 X -paimon-vindex-core@0.2.0 X -parquet@58.3.0 X -paste@1.0.15 X X -percent-encoding@2.3.2 X X -phf@0.12.1 X -phf_shared@0.12.1 X -pin-project-lite@0.2.17 X X -pkg-config@0.3.33 X X -portable-atomic@1.13.1 X X -portable-atomic-util@0.2.7 X X -potential_utf@0.1.5 X -ppv-lite86@0.2.21 X X -pretty_assertions@1.4.1 X X -prettyplease@0.2.37 X X -proc-macro2@1.0.106 X X -prost@0.13.5 X -prost-derive@0.13.5 X -quad-rand@0.2.3 X -quick-xml@0.38.4 X -quote@1.0.45 X X -r-efi@5.3.0 X X X -r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X -rand_chacha@0.3.1 X X -rand_chacha@0.9.0 X X -rand_core@0.6.4 X X -rand_core@0.9.5 X X -rawpointer@0.2.1 X X -rayon@1.12.0 X X -rayon-core@1.13.0 X X -regex@1.12.3 X X -regex-automata@0.4.14 X X -regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X -reqwest@0.12.28 X X -ring@0.17.14 X X -roaring@0.11.4 X X -rustc_version@0.4.1 X X -rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X -rustls-webpki@0.103.13 X -rustversion@1.0.22 X X -ryu@1.0.23 X X -safe_arch@0.7.4 X X X -schannel@0.1.29 X -security-framework@3.7.0 X X -security-framework-sys@2.17.0 X X -semver@1.0.28 X X -seq-macro@0.3.6 X X -serde@1.0.228 X X -serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X -serde_repr@0.1.20 X X -serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X -sha2@0.10.9 X X -shlex@2.0.1 X X -simba@0.9.1 X -simd-adler32@0.3.9 X -simdutf8@0.1.5 X X -siphasher@1.0.3 X X -slab@0.4.12 X -smallvec@1.15.1 X X -snafu@0.8.9 X X -snafu@0.9.1 X X -snafu-derive@0.8.9 X X -snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X -stable_deref_trait@1.2.1 X X -strsim@0.11.1 X -strum@0.27.2 X -strum_macros@0.27.2 X -subtle@2.6.1 X -syn@2.0.117 X X -sync_wrapper@1.0.2 X -synstructure@0.13.2 X -system-configuration@0.7.0 X X -system-configuration-sys@0.6.0 X X -tempfile@3.27.0 X X -thiserror@1.0.69 X X -thiserror@2.0.18 X X -thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X -thrift@0.17.0 X -tiny-keccak@2.0.2 X -tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X -tokio-native-tls@0.3.1 X -tokio-rustls@0.26.4 X X -tokio-util@0.7.18 X -tower@0.5.3 X -tower-http@0.6.11 X -tower-layer@0.3.3 X -tower-service@0.3.3 X -tracing@0.1.44 X -tracing-core@0.1.36 X -try-lock@0.2.5 X -twox-hash@2.1.2 X -typed-builder@0.19.1 X X -typed-builder-macro@0.19.1 X X -typenum@1.20.1 X X -unicode-ident@1.0.24 X X X -unicode-segmentation@1.13.2 X X -unicode-width@0.2.2 X X -untrusted@0.9.0 X -url@2.5.8 X X -urlencoding@2.1.3 X -utf8_iter@1.0.4 X X -uuid@1.23.2 X X -vcpkg@0.2.15 X X -version_check@0.9.5 X X -want@0.3.1 X -wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X -webpki-roots@1.0.7 X -wide@0.7.33 X X X -windows-core@0.62.2 X X -windows-implement@0.60.2 X X -windows-interface@0.59.3 X X -windows-link@0.2.1 X X -windows-registry@0.6.1 X X -windows-result@0.4.1 X X -windows-strings@0.5.1 X X -windows-sys@0.52.0 X X -windows-sys@0.61.2 X X -windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.52.6 X X -windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.52.6 X X -wit-bindgen@0.51.0 X X X -wit-bindgen@0.57.1 X X X -writeable@0.6.3 X -yansi@1.0.1 X X -yoke@0.8.2 X -yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X -zerofrom@0.1.8 X -zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X -zerotrie@0.2.4 X -zerovec@0.11.6 X -zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X -zstd@0.13.3 X -zstd-safe@7.2.4 X X -zstd-sys@2.0.16+zstd.1.5.7 X X +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 Unicode-3.0 Unlicense Zlib +adler2@2.0.1 X X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +android_system_properties@0.1.5 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +base64@0.22.1 X X +bigdecimal@0.4.10 X X +bitflags@2.13.1 X X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +cc@1.3.0 X X +cfg-if@1.0.4 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X +comfy-table@7.2.2 X +const-oid@0.10.2 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc32fast@1.5.0 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctutils@0.4.2 X X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +equivalent@1.0.2 X X +errno@0.3.14 X X +fallible-streaming-iterator@0.1.9 X X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.17.1 X X +heck@0.5.0 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +integer-encoding@3.0.4 X +ipnet@2.12.0 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libc@0.2.186 X X +libloading@0.9.0 X +libm@0.2.16 X +linux-raw-sys@0.12.1 X X X +litemap@0.8.2 X +log@0.4.33 X X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +memchr@2.8.3 X X +mime@0.3.17 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-complex@0.4.6 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +once_cell@1.21.4 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +paimon@0.3.0 X +paimon-c@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-vindex-core@0.2.0 X +parquet@58.3.0 X +paste@1.0.15 X X +percent-encoding@2.3.2 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project-lite@0.2.17 X X +pkg-config@0.3.33 X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost-derive@0.13.5 X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +rust-ini@0.21.3 X +rustc_version@0.4.1 X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +same-file@1.0.6 X X +schannel@0.1.29 X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@2.0.1 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +slab@0.4.12 X +smallvec@1.15.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +stable_deref_trait@1.2.1 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tempfile@3.27.0 X X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8_iter@1.0.4 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +wide@0.7.33 X X X +winapi-util@0.1.11 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.61.2 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/bindings/go/DEPENDENCIES.rust.tsv b/bindings/go/DEPENDENCIES.rust.tsv index e69de29b..488a7423 100644 --- a/bindings/go/DEPENDENCIES.rust.tsv +++ b/bindings/go/DEPENDENCIES.rust.tsv @@ -0,0 +1,373 @@ +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 Unicode-3.0 Unlicense Zlib +adler2@2.0.1 X X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +android_system_properties@0.1.5 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +base64@0.22.1 X X +bigdecimal@0.4.10 X X +bitflags@2.13.1 X X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +cc@1.3.0 X X +cfg-if@1.0.4 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X +comfy-table@7.2.2 X +const-oid@0.10.2 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc32fast@1.5.0 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctutils@0.4.2 X X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +equivalent@1.0.2 X X +errno@0.3.14 X X +fallible-streaming-iterator@0.1.9 X X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.17.1 X X +heck@0.5.0 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +integer-encoding@3.0.4 X +ipnet@2.12.0 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libc@0.2.186 X X +libloading@0.9.0 X +libm@0.2.16 X +linux-raw-sys@0.12.1 X X X +litemap@0.8.2 X +log@0.4.33 X X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +memchr@2.8.3 X X +mime@0.3.17 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-complex@0.4.6 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +once_cell@1.21.4 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +paimon@0.3.0 X +paimon-c@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-vindex-core@0.2.0 X +parquet@58.3.0 X +paste@1.0.15 X X +percent-encoding@2.3.2 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project-lite@0.2.17 X X +pkg-config@0.3.33 X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost-derive@0.13.5 X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +rust-ini@0.21.3 X +rustc_version@0.4.1 X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +same-file@1.0.6 X X +schannel@0.1.29 X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@2.0.1 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +slab@0.4.12 X +smallvec@1.15.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +stable_deref_trait@1.2.1 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tempfile@3.27.0 X X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8_iter@1.0.4 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +wide@0.7.33 X X X +winapi-util@0.1.11 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.61.2 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/bindings/go/Makefile b/bindings/go/Makefile index 82c2b112..44ece884 100644 --- a/bindings/go/Makefile +++ b/bindings/go/Makefile @@ -45,7 +45,7 @@ LIB_NAME := libpaimon_c.$(OS).$(ARCH).$(LIB_EXT) # Build the Rust shared library, compress with zstd, and place in Go package dir. build: - cd $(RUST_ROOT) && cargo build -p paimon-c --release + cd $(RUST_ROOT) && cargo build --locked -p paimon-c --release zstd -19 -f $(TARGET_DIR)/release/libpaimon_c.$(LIB_EXT) -o $(GO_DIR)/$(LIB_NAME).zst # Run Go integration tests. diff --git a/bindings/python/Cargo.toml b/bindings/python/Cargo.toml index af0085d7..ba8bb091 100644 --- a/bindings/python/Cargo.toml +++ b/bindings/python/Cargo.toml @@ -21,6 +21,7 @@ publish = false edition.workspace = true version.workspace = true license.workspace = true +rust-version.workspace = true [lib] crate-type = ["cdylib"] diff --git a/bindings/python/DEPENDENCIES.rust.tsv b/bindings/python/DEPENDENCIES.rust.tsv index c8bc735a..76426cb4 100644 --- a/bindings/python/DEPENDENCIES.rust.tsv +++ b/bindings/python/DEPENDENCIES.rust.tsv @@ -4,16 +4,16 @@ aes@0.8.4 X X ahash@0.8.12 X X aho-corasick@1.1.4 X X alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X +alloc-stdlib@0.2.4 X allocator-api2@0.2.21 X X android_system_properties@0.1.5 X X -anyhow@1.0.102 X X +anyhow@1.0.104 X X apache-avro@0.21.0 X approx@0.5.1 X -ar_archive_writer@0.5.1 X -arc-swap@1.9.1 X X +ar_archive_writer@0.5.2 X +arc-swap@1.9.2 X X arrayref@0.3.9 X -arrayvec@0.7.6 X X +arrayvec@0.7.8 X X arrow@58.3.0 X arrow-arith@58.3.0 X arrow-array@58.3.0 X X @@ -33,37 +33,41 @@ async-compression@0.4.42 X X async-ffi@0.5.0 X async-stream@0.3.6 X async-stream-impl@0.3.6 X -async-trait@0.1.89 X X +async-trait@0.1.91 X X atoi@2.0.0 X atomic-waker@1.1.2 X X autocfg@1.5.1 X X -backon@1.6.0 X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X base64@0.22.1 X X base64ct@1.8.3 X X bigdecimal@0.4.10 X X -bitflags@2.11.1 X X +bitflags@2.13.1 X X bitpacking@0.9.3 X blake2@0.10.6 X X blake3@1.8.5 X X X block-buffer@0.10.4 X X block-buffer@0.12.1 X X block-padding@0.3.3 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X +bytemuck@1.25.2 X X X byteorder@1.5.0 X X -bytes@1.11.1 X +bytes@1.12.1 X bzip2@0.6.1 X X cbc@0.1.2 X X -cc@1.2.63 X X +cc@1.3.0 X X census@0.4.2 X cfg-if@1.0.4 X X -chrono@0.4.44 X X +chrono@0.4.45 X X chrono-tz@0.10.4 X X cipher@0.4.4 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X comfy-table@7.2.2 X compression-codecs@0.4.38 X X compression-core@0.4.32 X X @@ -79,18 +83,19 @@ cpufeatures@0.2.17 X X cpufeatures@0.3.0 X X crc@3.4.0 X X crc-catalog@2.5.0 X X -crc32c@0.6.8 X X +crc-fast@1.10.0 X X crc32fast@1.5.0 X X -crossbeam-channel@0.5.15 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X +crossbeam-channel@0.5.16 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X crunchy@0.2.4 X crypto-common@0.1.7 X X crypto-common@0.2.2 X X csv@1.4.0 X X csv-core@0.1.13 X X ctr@0.9.2 X X +ctutils@0.4.2 X X darling@0.23.0 X darling_core@0.23.0 X darling_macro@0.23.0 X @@ -136,15 +141,17 @@ diff@0.1.13 X X digest@0.10.7 X X digest@0.11.3 X X displaydoc@0.2.6 X X +dlv-list@0.5.2 X X dns-lookup@3.0.1 X X downcast-rs@1.2.1 X X +dunce@1.0.5 X X X either@1.16.0 X X encoding_rs@0.8.35 X X X equivalent@1.0.2 X X errno@0.3.14 X X fallible-streaming-iterator@0.1.9 X X fastdivide@0.4.2 X X -fastrand@2.4.1 X X +fastrand@2.5.0 X X find-msvc-tools@0.1.9 X X fixedbitset@0.5.7 X X flatbuffers@25.12.19 X @@ -156,25 +163,25 @@ foreign-types@0.3.2 X X foreign-types-shared@0.1.1 X X form_urlencoded@1.2.2 X X fs4@0.8.4 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X g2gen@1.2.2 X X g2p@1.2.2 X X g2poly@1.2.2 X X generic-array@0.14.7 X getrandom@0.2.17 X X getrandom@0.3.4 X X -getrandom@0.4.2 X X +getrandom@0.4.3 X X glob@0.3.3 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X +h2@0.4.15 X half@2.7.1 X X hashbrown@0.14.5 X X hashbrown@0.15.5 X X @@ -184,14 +191,14 @@ heck@0.5.0 X X hermit-abi@0.5.2 X X hex@0.4.3 X X hmac@0.12.1 X X -home@0.5.12 X X +hmac@0.13.0 X X htmlescape@0.3.1 X X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X httparse@1.10.1 X X httpdate@1.0.3 X X -humantime@2.3.0 X X +humantime@2.4.0 X X hybrid-array@0.4.13 X X hyper@1.10.1 X hyper-rustls@0.27.9 X X X @@ -217,12 +224,16 @@ ipnet@2.12.0 X X itertools@0.12.1 X X itertools@0.14.0 X X itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X -jsonwebtoken@9.3.1 X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X lazy_static@1.5.0 X X levenshtein_automata@0.2.1 X lexical-core@1.0.6 X X @@ -234,40 +245,42 @@ lexical-write-integer@1.0.6 X X libbz2-rs-sys@0.2.5 X libc@0.2.186 X X libloading@0.9.0 X -liblzma@0.4.6 X X -liblzma-sys@0.4.6 X X +liblzma@0.4.7 X X +liblzma-sys@0.4.7 X X libm@0.2.16 X -libredox@0.1.17 X +libredox@0.1.18 X linux-raw-sys@0.12.1 X X X linux-raw-sys@0.4.15 X X X litemap@0.8.2 X lock_api@0.4.14 X X -log@0.4.30 X X +log@0.4.33 X X lru@0.12.5 X lz4_flex@0.11.6 X lz4_flex@0.13.1 X lzokay-native@0.1.0 X -matrixmultiply@0.3.10 X X +matrixmultiply@0.3.11 X X md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X measure_time@0.8.3 X -memchr@2.8.1 X X -memmap2@0.9.10 X X +memchr@2.8.3 X X +memmap2@0.9.11 X X mime@0.3.17 X X minimal-lexical@0.2.1 X X miniz_oxide@0.8.9 X X X -mio@1.2.1 X +mio@1.2.2 X murmurhash32@0.3.1 X nalgebra@0.33.3 X nalgebra-macros@0.2.2 X native-tls@0.2.18 X X nom@7.1.3 X num@0.4.3 X X -num-bigint@0.4.6 X X +num-bigint@0.4.8 X X num-bigint-dig@0.8.6 X X num-complex@0.4.6 X X num-conv@0.2.2 X X num-integer@0.1.46 X X -num-iter@0.1.45 X X +num-iter@0.1.46 X X num-rational@0.4.2 X X num-traits@0.2.19 X X num_cpus@1.17.0 X X @@ -275,16 +288,28 @@ object@0.37.3 X X object_store@0.13.2 X X once_cell@1.21.4 X X oneshot@0.1.13 X X -opendal@0.55.0 X -openssl@0.10.80 X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-azdls@0.58.0 X +opendal-service-azure-common@0.58.0 X +opendal-service-cos@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-gcs@0.58.0 X +opendal-service-hdfs-native@0.58.0 X +opendal-service-obs@0.58.0 X +opendal-service-oss@0.58.0 X +opendal-service-s3@0.58.0 X +openssl@0.10.81 X openssl-macros@0.1.1 X X openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X +openssl-sys@0.9.117 X orc-rust@0.8.0 X ordered-float@2.10.1 X +ordered-multimap@0.7.3 X ownedbytes@0.7.0 X paimon@0.3.0 X paimon-datafusion@0.3.0 X +paimon-mosaic-core@0.2.0 X paimon-vindex-core@0.2.0 X parking_lot@0.12.5 X X parking_lot_core@0.9.12 X X @@ -305,7 +330,7 @@ pkcs5@0.7.1 X X pkcs8@0.10.2 X X pkg-config@0.3.33 X X plain@0.2.3 X X -portable-atomic@1.13.1 X X +portable-atomic@1.14.0 X X portable-atomic-util@0.2.7 X X potential_utf@0.1.5 X powerfmt@0.2.0 X X @@ -313,12 +338,12 @@ ppv-lite86@0.2.21 X X pretty_assertions@1.4.1 X X prettyplease@0.2.37 X X proc-macro-crate@3.5.0 X X -proc-macro2@1.0.106 X X +proc-macro2@1.0.107 X X prost@0.13.5 X -prost@0.14.3 X +prost@0.14.4 X prost-derive@0.13.5 X -prost-derive@0.14.3 X -prost-types@0.14.3 X +prost-derive@0.14.4 X +prost-types@0.14.4 X psm@0.1.31 X X pyo3@0.28.3 X X pyo3-build-config@0.28.3 X X @@ -327,13 +352,12 @@ pyo3-macros@0.28.3 X X pyo3-macros-backend@0.28.3 X X pypaimon_rust@0.3.0 X quad-rand@0.2.3 X -quick-xml@0.37.5 X -quick-xml@0.38.4 X -quote@1.0.45 X X +quick-xml@0.41.0 X +quote@1.0.47 X X r-efi@5.3.0 X X X r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X +rand@0.8.7 X X +rand@0.9.5 X X rand_chacha@0.3.1 X X rand_chacha@0.9.0 X X rand_core@0.6.4 X X @@ -345,25 +369,37 @@ rayon-core@1.13.0 X X recursive@0.1.1 X recursive-proc-macro-impl@0.1.1 X redox_syscall@0.5.18 X -regex@1.12.3 X X -regex-automata@0.4.14 X X +redox_syscall@0.9.0 X +regex@1.13.1 X X +regex-automata@0.4.16 X X regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-aws-v4@3.0.2 X +reqsign-azure-storage@3.1.0 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqsign-google@3.0.2 X +reqsign-huaweicloud-obs@3.0.2 X +reqsign-tencent-cos@3.0.2 X reqwest@0.12.28 X X -ring@0.17.14 X X +reqwest@0.13.4 X X roaring@0.11.4 X X roxmltree@0.21.1 X X rsa@0.9.10 X X +rust-ini@0.21.3 X rust-stemmers@1.2.0 X X rustc-hash@1.1.0 X X rustc_version@0.4.1 X X rustix@0.38.44 X X X rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X rustls-webpki@0.103.13 X -rustversion@1.0.22 X X +rustversion@1.0.23 X X ryu@1.0.23 X X safe_arch@0.7.4 X X X salsa20@0.10.2 X X @@ -375,36 +411,38 @@ security-framework@3.7.0 X X security-framework-sys@2.17.0 X X semver@1.0.28 X X seq-macro@0.3.6 X X -serde@1.0.228 X X +serde@1.0.229 X X serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X -serde_repr@0.1.20 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X sha2@0.10.9 X X sha2@0.11.0 X X sha2-const-stable@0.1.0 X X shlex@2.0.1 X X signature@2.2.0 X X simba@0.9.1 X -simd-adler32@0.3.9 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X simdutf8@0.1.5 X X -simple_asn1@0.6.4 X siphasher@1.0.3 X X sketches-ddsketch@0.2.2 X slab@0.4.12 X -smallvec@1.15.1 X X +smallvec@1.15.2 X X snafu@0.8.9 X X snafu@0.9.1 X X snafu-derive@0.8.9 X X snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X -spin@0.9.8 X +snap@1.1.2 X +socket2@0.6.5 X X +spin@0.10.1 X +spin@0.9.9 X spki@0.7.3 X X sqlparser@0.62.0 X sqlparser_derive@0.5.0 X @@ -417,7 +455,8 @@ strsim@0.11.1 X strum@0.27.2 X strum_macros@0.27.2 X subtle@2.6.1 X -syn@2.0.117 X X +syn@2.0.119 X X +syn@3.0.2 X X sync_wrapper@1.0.2 X synstructure@0.13.2 X system-configuration@0.7.0 X X @@ -434,23 +473,22 @@ tantivy-tokenizer-api@0.3.0 X target-lexicon@0.13.5 X tempfile@3.27.0 X X thiserror@1.0.69 X X -thiserror@2.0.18 X X +thiserror@2.0.19 X X thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X +thiserror-impl@2.0.19 X X thrift@0.17.0 X -time@0.3.47 X X -time-core@0.1.8 X X -time-macros@0.2.27 X X +time@0.3.54 X X +time-core@0.1.9 X X tiny-keccak@2.0.2 X tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X +tokio@1.53.0 X +tokio-macros@2.7.1 X tokio-native-tls@0.3.1 X tokio-rustls@0.26.4 X X tokio-stream@0.1.18 X tokio-util@0.7.18 X toml_datetime@1.1.1+spec-1.1.0 X X -toml_edit@0.25.12+spec-1.1.0 X X +toml_edit@0.25.13+spec-1.1.0 X X toml_parser@1.1.2+spec-1.1.0 X X tower@0.5.3 X tower-http@0.6.11 X @@ -460,7 +498,7 @@ tracing@0.1.44 X tracing-attributes@0.1.31 X tracing-core@0.1.36 X try-lock@0.2.5 X -twox-hash@2.1.2 X +twox-hash@2.1.3 X typed-builder@0.19.1 X X typed-builder-macro@0.19.1 X X typenum@1.20.1 X X @@ -472,24 +510,23 @@ url@2.5.8 X X urlencoding@2.1.3 X utf8-ranges@1.0.5 X X utf8_iter@1.0.4 X X -uuid@1.23.2 X X +uuid@1.24.0 X X vcpkg@0.2.15 X X version_check@0.9.5 X X walkdir@2.5.0 X X want@0.3.1 X wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X +wasip2@1.0.4+wasi-0.2.12 X X X wasite@0.1.0 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X web-time@1.1.0 X X -webpki-roots@1.0.7 X +webpki-root-certs@1.0.9 X whoami@1.6.1 X X X wide@0.7.33 X X X winapi@0.3.9 X X @@ -525,23 +562,23 @@ windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_gnullvm@0.53.1 X X windows_x86_64_msvc@0.52.6 X X windows_x86_64_msvc@0.53.1 X X -winnow@1.0.3 X -wit-bindgen@0.51.0 X X X +winnow@1.0.4 X wit-bindgen@0.57.1 X X X writeable@0.6.3 X +xattr@1.6.1 X X yansi@1.0.1 X X -yoke@0.8.2 X +yoke@0.8.3 X yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X zerofrom@0.1.8 X zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X +zeroize@1.9.0 X X zerotrie@0.2.4 X zerovec@0.11.6 X zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X +zlib-rs@0.6.6 X +zmij@1.0.23 X zstd@0.13.3 X zstd-safe@7.2.4 X X zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/bindings/python/Makefile b/bindings/python/Makefile index e341632d..21198c9e 100644 --- a/bindings/python/Makefile +++ b/bindings/python/Makefile @@ -16,7 +16,7 @@ # under the License. build: - uv run --no-project maturin develop + uv run --no-project maturin develop --locked install: uv sync --group dev --no-install-project diff --git a/crates/integration_tests/Cargo.toml b/crates/integration_tests/Cargo.toml index 7c60a532..c93bfe79 100644 --- a/crates/integration_tests/Cargo.toml +++ b/crates/integration_tests/Cargo.toml @@ -17,9 +17,11 @@ [package] name = "paimon-integration-tests" +publish = false version.workspace = true edition.workspace = true license.workspace = true +rust-version.workspace = true repository.workspace = true homepage.workspace = true @@ -32,4 +34,4 @@ futures = "0.3" [dev-dependencies] serde_json = "1" -axum = { version = "0.7", features = ["macros", "tokio", "http1", "http2"] } \ No newline at end of file +axum = { version = "0.7", features = ["macros", "tokio", "http1", "http2"] } diff --git a/crates/integration_tests/DEPENDENCIES.rust.tsv b/crates/integration_tests/DEPENDENCIES.rust.tsv index 5933f8b0..1333ebab 100644 --- a/crates/integration_tests/DEPENDENCIES.rust.tsv +++ b/crates/integration_tests/DEPENDENCIES.rust.tsv @@ -1,345 +1,373 @@ -crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT Unicode-3.0 Unlicense Zlib -adler2@2.0.1 X X X -ahash@0.8.12 X X -aho-corasick@1.1.4 X X -alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X -android_system_properties@0.1.5 X X -anyhow@1.0.102 X X -apache-avro@0.21.0 X -approx@0.5.1 X -arrow@58.3.0 X -arrow-arith@58.3.0 X -arrow-array@58.3.0 X X -arrow-buffer@58.3.0 X -arrow-cast@58.3.0 X -arrow-csv@58.3.0 X -arrow-data@58.3.0 X -arrow-ipc@58.3.0 X -arrow-json@58.3.0 X -arrow-ord@58.3.0 X -arrow-row@58.3.0 X -arrow-schema@58.3.0 X -arrow-select@58.3.0 X -arrow-string@58.3.0 X -async-stream@0.3.6 X -async-stream-impl@0.3.6 X -async-trait@0.1.89 X X -atoi@2.0.0 X -atomic-waker@1.1.2 X X -autocfg@1.5.1 X X -backon@1.6.0 X -base64@0.22.1 X X -bigdecimal@0.4.10 X X -bitflags@2.11.1 X X -block-buffer@0.10.4 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X -bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X -byteorder@1.5.0 X X -bytes@1.11.1 X -cc@1.2.63 X X -cfg-if@1.0.4 X X -chrono@0.4.44 X X -chrono-tz@0.10.4 X X -comfy-table@7.2.2 X -const-oid@0.9.6 X X -const-random@0.1.18 X X -const-random-macro@0.1.16 X X -core-foundation@0.10.1 X X -core-foundation@0.9.4 X X -core-foundation-sys@0.8.7 X X -cpufeatures@0.2.17 X X -crc32fast@1.5.0 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X -crunchy@0.2.4 X -crypto-common@0.1.7 X X -csv@1.4.0 X X -csv-core@0.1.13 X X -darling@0.23.0 X -darling_core@0.23.0 X -darling_macro@0.23.0 X -diff@0.1.13 X X -digest@0.10.7 X X -displaydoc@0.2.6 X X -either@1.16.0 X X -encoding_rs@0.8.35 X X X -equivalent@1.0.2 X X -errno@0.3.14 X X -fallible-streaming-iterator@0.1.9 X X -fastrand@2.4.1 X X -find-msvc-tools@0.1.9 X X -flatbuffers@25.12.19 X -flate2@1.1.9 X X -fnv@1.0.7 X X -foreign-types@0.3.2 X X -foreign-types-shared@0.1.1 X X -form_urlencoded@1.2.2 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X -generic-array@0.14.7 X -getrandom@0.2.17 X X -getrandom@0.3.4 X X -getrandom@0.4.2 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X -half@2.7.1 X X -hashbrown@0.17.1 X X -heck@0.5.0 X X -hex@0.4.3 X X -hmac@0.12.1 X X -home@0.5.12 X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X -httparse@1.10.1 X X -httpdate@1.0.3 X X -hyper@1.10.1 X -hyper-rustls@0.27.9 X X X -hyper-tls@0.6.0 X X -hyper-util@0.1.20 X -iana-time-zone@0.1.65 X X -iana-time-zone-haiku@0.1.2 X X -icu_collections@2.2.0 X -icu_locale_core@2.2.0 X -icu_normalizer@2.2.0 X -icu_normalizer_data@2.2.0 X -icu_properties@2.2.0 X -icu_properties_data@2.2.0 X -icu_provider@2.2.0 X -ident_case@1.0.1 X X -idna@1.1.0 X X -idna_adapter@1.2.2 X X -indexmap@2.14.0 X X -integer-encoding@3.0.4 X -ipnet@2.12.0 X X -itertools@0.14.0 X X -itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X -jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X -lexical-core@1.0.6 X X -lexical-parse-float@1.0.6 X X -lexical-parse-integer@1.0.6 X X -lexical-util@1.0.7 X X -lexical-write-float@1.0.6 X X -lexical-write-integer@1.0.6 X X -libc@0.2.186 X X -libloading@0.9.0 X -libm@0.2.16 X -linux-raw-sys@0.12.1 X X X -litemap@0.8.2 X -log@0.4.30 X X -lz4_flex@0.11.6 X -lz4_flex@0.13.1 X -lzokay-native@0.1.0 X -matrixmultiply@0.3.10 X X -md-5@0.10.6 X X -memchr@2.8.1 X X -mime@0.3.17 X X -miniz_oxide@0.8.9 X X X -mio@1.2.1 X -nalgebra@0.33.3 X -nalgebra-macros@0.2.2 X -native-tls@0.2.18 X X -num@0.4.3 X X -num-bigint@0.4.6 X X -num-complex@0.4.6 X X -num-integer@0.1.46 X X -num-iter@0.1.45 X X -num-rational@0.4.2 X X -num-traits@0.2.19 X X -once_cell@1.21.4 X X -opendal@0.55.0 X -openssl@0.10.80 X -openssl-macros@0.1.1 X X -openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X -orc-rust@0.8.0 X -ordered-float@2.10.1 X -paimon@0.3.0 X -paimon-integration-tests@0.3.0 X -paimon-vindex-core@0.2.0 X -parquet@58.3.0 X -paste@1.0.15 X X -percent-encoding@2.3.2 X X -phf@0.12.1 X -phf_shared@0.12.1 X -pin-project-lite@0.2.17 X X -pkg-config@0.3.33 X X -portable-atomic@1.13.1 X X -portable-atomic-util@0.2.7 X X -potential_utf@0.1.5 X -ppv-lite86@0.2.21 X X -pretty_assertions@1.4.1 X X -prettyplease@0.2.37 X X -proc-macro2@1.0.106 X X -prost@0.13.5 X -prost-derive@0.13.5 X -quad-rand@0.2.3 X -quick-xml@0.38.4 X -quote@1.0.45 X X -r-efi@5.3.0 X X X -r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X -rand_chacha@0.3.1 X X -rand_chacha@0.9.0 X X -rand_core@0.6.4 X X -rand_core@0.9.5 X X -rawpointer@0.2.1 X X -rayon@1.12.0 X X -rayon-core@1.13.0 X X -regex@1.12.3 X X -regex-automata@0.4.14 X X -regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X -reqwest@0.12.28 X X -ring@0.17.14 X X -roaring@0.11.4 X X -rustc_version@0.4.1 X X -rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X -rustls-webpki@0.103.13 X -rustversion@1.0.22 X X -ryu@1.0.23 X X -safe_arch@0.7.4 X X X -schannel@0.1.29 X -security-framework@3.7.0 X X -security-framework-sys@2.17.0 X X -semver@1.0.28 X X -seq-macro@0.3.6 X X -serde@1.0.228 X X -serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X -serde_repr@0.1.20 X X -serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X -sha2@0.10.9 X X -shlex@2.0.1 X X -simba@0.9.1 X -simd-adler32@0.3.9 X -simdutf8@0.1.5 X X -siphasher@1.0.3 X X -slab@0.4.12 X -smallvec@1.15.1 X X -snafu@0.8.9 X X -snafu@0.9.1 X X -snafu-derive@0.8.9 X X -snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X -stable_deref_trait@1.2.1 X X -strsim@0.11.1 X -strum@0.27.2 X -strum_macros@0.27.2 X -subtle@2.6.1 X -syn@2.0.117 X X -sync_wrapper@1.0.2 X -synstructure@0.13.2 X -system-configuration@0.7.0 X X -system-configuration-sys@0.6.0 X X -tempfile@3.27.0 X X -thiserror@1.0.69 X X -thiserror@2.0.18 X X -thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X -thrift@0.17.0 X -tiny-keccak@2.0.2 X -tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X -tokio-native-tls@0.3.1 X -tokio-rustls@0.26.4 X X -tokio-util@0.7.18 X -tower@0.5.3 X -tower-http@0.6.11 X -tower-layer@0.3.3 X -tower-service@0.3.3 X -tracing@0.1.44 X -tracing-core@0.1.36 X -try-lock@0.2.5 X -twox-hash@2.1.2 X -typed-builder@0.19.1 X X -typed-builder-macro@0.19.1 X X -typenum@1.20.1 X X -unicode-ident@1.0.24 X X X -unicode-segmentation@1.13.2 X X -unicode-width@0.2.2 X X -untrusted@0.9.0 X -url@2.5.8 X X -urlencoding@2.1.3 X -utf8_iter@1.0.4 X X -uuid@1.23.2 X X -vcpkg@0.2.15 X X -version_check@0.9.5 X X -want@0.3.1 X -wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X -webpki-roots@1.0.7 X -wide@0.7.33 X X X -windows-core@0.62.2 X X -windows-implement@0.60.2 X X -windows-interface@0.59.3 X X -windows-link@0.2.1 X X -windows-registry@0.6.1 X X -windows-result@0.4.1 X X -windows-strings@0.5.1 X X -windows-sys@0.52.0 X X -windows-sys@0.61.2 X X -windows-targets@0.52.6 X X -windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_msvc@0.52.6 X X -windows_i686_gnu@0.52.6 X X -windows_i686_gnullvm@0.52.6 X X -windows_i686_msvc@0.52.6 X X -windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_msvc@0.52.6 X X -wit-bindgen@0.51.0 X X X -wit-bindgen@0.57.1 X X X -writeable@0.6.3 X -yansi@1.0.1 X X -yoke@0.8.2 X -yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X -zerofrom@0.1.8 X -zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X -zerotrie@0.2.4 X -zerovec@0.11.6 X -zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X -zstd@0.13.3 X -zstd-safe@7.2.4 X X -zstd-sys@2.0.16+zstd.1.5.7 X X +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 Unicode-3.0 Unlicense Zlib +adler2@2.0.1 X X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +android_system_properties@0.1.5 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +base64@0.22.1 X X +bigdecimal@0.4.10 X X +bitflags@2.13.1 X X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +cc@1.3.0 X X +cfg-if@1.0.4 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X +comfy-table@7.2.2 X +const-oid@0.10.2 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc32fast@1.5.0 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctutils@0.4.2 X X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +equivalent@1.0.2 X X +errno@0.3.14 X X +fallible-streaming-iterator@0.1.9 X X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.17.1 X X +heck@0.5.0 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +integer-encoding@3.0.4 X +ipnet@2.12.0 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libc@0.2.186 X X +libloading@0.9.0 X +libm@0.2.16 X +linux-raw-sys@0.12.1 X X X +litemap@0.8.2 X +log@0.4.33 X X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +memchr@2.8.3 X X +mime@0.3.17 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-complex@0.4.6 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +once_cell@1.21.4 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +paimon@0.3.0 X +paimon-integration-tests@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-vindex-core@0.2.0 X +parquet@58.3.0 X +paste@1.0.15 X X +percent-encoding@2.3.2 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project-lite@0.2.17 X X +pkg-config@0.3.33 X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost-derive@0.13.5 X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +rust-ini@0.21.3 X +rustc_version@0.4.1 X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +same-file@1.0.6 X X +schannel@0.1.29 X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@2.0.1 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +slab@0.4.12 X +smallvec@1.15.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +stable_deref_trait@1.2.1 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tempfile@3.27.0 X X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8_iter@1.0.4 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +wide@0.7.33 X X X +winapi-util@0.1.11 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.61.2 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/crates/integrations/datafusion/Cargo.toml b/crates/integrations/datafusion/Cargo.toml index d7576d0b..9be9a350 100644 --- a/crates/integrations/datafusion/Cargo.toml +++ b/crates/integrations/datafusion/Cargo.toml @@ -19,8 +19,10 @@ name = "paimon-datafusion" edition.workspace = true version.workspace = true +publish = ["crates-io"] exclude = ["testdata/"] license.workspace = true +rust-version.workspace = true homepage = "https://paimon.apache.org/docs/rust/datafusion/" documentation = "https://docs.rs/paimon-datafusion" description = "Apache Paimon DataFusion Integration" diff --git a/crates/integrations/datafusion/DEPENDENCIES.rust.tsv b/crates/integrations/datafusion/DEPENDENCIES.rust.tsv index 7809a72f..7a3621e9 100644 --- a/crates/integrations/datafusion/DEPENDENCIES.rust.tsv +++ b/crates/integrations/datafusion/DEPENDENCIES.rust.tsv @@ -3,16 +3,17 @@ adler2@2.0.1 X X X ahash@0.8.12 X X aho-corasick@1.1.4 X X alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X +alloc-stdlib@0.2.4 X allocator-api2@0.2.21 X X android_system_properties@0.1.5 X X -anyhow@1.0.102 X X +anyhow@1.0.104 X X apache-avro@0.21.0 X approx@0.5.1 X -ar_archive_writer@0.5.1 X -arc-swap@1.9.1 X X +ar_archive_writer@0.5.2 X +arc-swap@1.9.2 X X +arcref@0.2.0 X arrayref@0.3.9 X -arrayvec@0.7.6 X X +arrayvec@0.7.8 X X arrow@58.3.0 X arrow-arith@58.3.0 X arrow-array@58.3.0 X X @@ -27,59 +28,84 @@ arrow-row@58.3.0 X arrow-schema@58.3.0 X arrow-select@58.3.0 X arrow-string@58.3.0 X +async-channel@2.5.0 X X async-compression@0.4.42 X X +async-executor@1.14.0 X X +async-fs@2.2.0 X X +async-io@2.6.0 X X +async-lock@3.4.2 X X +async-net@2.0.0 X X +async-process@2.5.0 X X +async-signal@0.2.14 X X async-stream@0.3.6 X async-stream-impl@0.3.6 X -async-trait@0.1.89 X X +async-task@4.7.1 X X +async-trait@0.1.91 X X atoi@2.0.0 X atomic-waker@1.1.2 X X autocfg@1.5.1 X X -backon@1.6.0 X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X base64@0.22.1 X X +better_io@0.2.0 X bigdecimal@0.4.10 X X -bitflags@2.11.1 X X +bindgen@0.72.1 X +bit-vec@0.9.1 X X +bitflags@2.13.1 X X bitpacking@0.9.3 X +bitvec@1.1.1 X blake2@0.10.6 X X blake3@1.8.5 X X X block-buffer@0.10.4 X X block-buffer@0.12.1 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X +blocking@1.6.2 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X +bytemuck@1.25.2 X X X byteorder@1.5.0 X X -bytes@1.11.1 X +bytes@1.12.1 X bzip2@0.6.1 X X -cc@1.2.63 X X +cc@1.3.0 X X census@0.4.2 X +cexpr@0.6.0 X X cfg-if@1.0.4 X X -chrono@0.4.44 X X +chacha20@0.10.1 X X +chrono@0.4.45 X X chrono-tz@0.10.4 X X +clang-sys@1.8.1 X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X comfy-table@7.2.2 X compression-codecs@0.4.38 X X compression-core@0.4.32 X X +concurrent-queue@2.5.0 X X const-oid@0.10.2 X X -const-oid@0.9.6 X X const-random@0.1.18 X X const-random-macro@0.1.16 X X +const_for@0.1.6 X constant_time_eq@0.4.2 X X X core-foundation@0.10.1 X X core-foundation@0.9.4 X X core-foundation-sys@0.8.7 X X +core_detect@1.0.0 X X cpufeatures@0.2.17 X X cpufeatures@0.3.0 X X crc32fast@1.5.0 X X -crossbeam-channel@0.5.15 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X +crossbeam-channel@0.5.16 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X crunchy@0.2.4 X crypto-common@0.1.7 X X crypto-common@0.2.2 X X csv@1.4.0 X X csv-core@0.1.13 X X +ctutils@0.4.2 X X +custom-labels@0.4.6 X darling@0.23.0 X darling_core@0.23.0 X darling_macro@0.23.0 X @@ -120,14 +146,25 @@ diff@0.1.13 X X digest@0.10.7 X X digest@0.11.3 X X displaydoc@0.2.6 X X +dlv-list@0.5.2 X X downcast-rs@1.2.1 X X +dtype_dispatch@0.2.1 X +dunce@1.0.5 X X X either@1.16.0 X X encoding_rs@0.8.35 X X X +enum-iterator@2.3.0 X +enum-iterator-derive@1.5.0 X equivalent@1.0.2 X X errno@0.3.14 X X +event-listener@5.4.1 X X +event-listener-strategy@0.5.4 X X +ext-trait@1.0.1 X X X +ext-trait-proc_macros@1.0.1 X X X +extension-traits@1.0.1 X X X fallible-streaming-iterator@0.1.9 X X fastdivide@0.4.2 X X -fastrand@2.4.1 X X +fastlanes@0.5.2 X +fastrand@2.5.0 X X find-msvc-tools@0.1.9 X X fixedbitset@0.5.7 X X flatbuffers@25.12.19 X @@ -139,22 +176,25 @@ foreign-types@0.3.2 X X foreign-types-shared@0.1.1 X X form_urlencoded@1.2.2 X X fs4@0.8.4 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X +fs_extra@1.3.0 X +fsst-rs@0.5.11 X +funty@2.0.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-lite@2.6.1 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X generic-array@0.14.7 X getrandom@0.2.17 X X getrandom@0.3.4 X X -getrandom@0.4.2 X X +getrandom@0.4.3 X X glob@0.3.3 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X +h2@0.4.15 X half@2.7.1 X X hashbrown@0.14.5 X X hashbrown@0.15.5 X X @@ -163,14 +203,15 @@ heck@0.5.0 X X hermit-abi@0.5.2 X X hex@0.4.3 X X hmac@0.12.1 X X -home@0.5.12 X X +hmac@0.13.0 X X htmlescape@0.3.1 X X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X httparse@1.10.1 X X httpdate@1.0.3 X X -humantime@2.3.0 X X +humansize@2.1.3 X X +humantime@2.4.0 X X hybrid-array@0.4.13 X X hyper@1.10.1 X hyper-rustls@0.27.9 X X X @@ -191,15 +232,26 @@ idna_adapter@1.2.2 X X indexmap@2.14.0 X X instant@0.1.13 X integer-encoding@3.0.4 X +inventory@0.3.24 X X ipnet@2.12.0 X X itertools@0.12.1 X X +itertools@0.13.0 X X itertools@0.14.0 X X itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +kanal@0.1.1 X +lasso@0.7.3 X X +lending-iterator@0.1.7 X X X +lending-iterator-proc_macros@0.1.7 X X X levenshtein_automata@0.2.1 X lexical-core@1.0.6 X X lexical-parse-float@1.0.6 X X @@ -209,61 +261,80 @@ lexical-write-float@1.0.6 X X lexical-write-integer@1.0.6 X X libbz2-rs-sys@0.2.5 X libc@0.2.186 X X +libloading@0.8.9 X libloading@0.9.0 X -liblzma@0.4.6 X X -liblzma-sys@0.4.6 X X +liblzma@0.4.7 X X +liblzma-sys@0.4.7 X X libm@0.2.16 X linux-raw-sys@0.12.1 X X X linux-raw-sys@0.4.15 X X X litemap@0.8.2 X lock_api@0.4.14 X X -log@0.4.30 X X +log@0.4.33 X X lru@0.12.5 X lz4_flex@0.11.6 X lz4_flex@0.13.1 X lzokay-native@0.1.0 X -matrixmultiply@0.3.10 X X +macro_rules_attribute@0.1.3 X +macro_rules_attribute-proc_macro@0.1.3 X +matrixmultiply@0.3.11 X X md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X measure_time@0.8.3 X -memchr@2.8.1 X X -memmap2@0.9.10 X X +memchr@2.8.3 X X +memmap2@0.9.11 X X mime@0.3.17 X X minimal-lexical@0.2.1 X X miniz_oxide@0.8.9 X X X -mio@1.2.1 X +mio@1.2.2 X +moka@0.12.15 X X murmurhash32@0.3.1 X nalgebra@0.33.3 X nalgebra-macros@0.2.2 X native-tls@0.2.18 X X +never-say-never@6.6.666 X X X nom@7.1.3 X +nougat@0.2.4 X X X +nougat-proc_macros@0.2.4 X X X num@0.4.3 X X -num-bigint@0.4.6 X X +num-bigint@0.4.8 X X num-complex@0.4.6 X X num-conv@0.2.2 X X num-integer@0.1.46 X X -num-iter@0.1.45 X X +num-iter@0.1.46 X X num-rational@0.4.2 X X num-traits@0.2.19 X X num_cpus@1.17.0 X X +num_enum@0.7.6 X X X +num_enum_derive@0.7.6 X X X object@0.37.3 X X object_store@0.13.2 X X once_cell@1.21.4 X X oneshot@0.1.13 X X -opendal@0.55.0 X -openssl@0.10.80 X +oneshot@0.2.1 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X openssl-macros@0.1.1 X X openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X +openssl-sys@0.9.117 X orc-rust@0.8.0 X ordered-float@2.10.1 X +ordered-multimap@0.7.3 X ownedbytes@0.7.0 X paimon@0.3.0 X paimon-datafusion@0.3.0 X +paimon-mosaic-core@0.2.0 X paimon-vindex-core@0.2.0 X +parking@2.2.1 X X parking_lot@0.12.5 X X parking_lot_core@0.9.12 X X parquet@58.3.0 X paste@1.0.15 X X +pco@1.0.2 X percent-encoding@2.3.2 X X petgraph@0.8.3 X X phf@0.12.1 X @@ -271,53 +342,70 @@ phf_shared@0.12.1 X pin-project@1.1.13 X X pin-project-internal@1.1.13 X X pin-project-lite@0.2.17 X X +piper@0.2.5 X X pkg-config@0.3.33 X X -portable-atomic@1.13.1 X X +polling@3.11.0 X X +polonius-the-crab@0.2.1 X X X +portable-atomic@1.14.0 X X portable-atomic-util@0.2.7 X X potential_utf@0.1.5 X powerfmt@0.2.0 X X ppv-lite86@0.2.21 X X pretty_assertions@1.4.1 X X prettyplease@0.2.37 X X -proc-macro2@1.0.106 X X +proc-macro2@1.0.107 X X prost@0.13.5 X +prost@0.14.4 X prost-derive@0.13.5 X +prost-derive@0.14.4 X +prost-types@0.14.4 X psm@0.1.31 X X quad-rand@0.2.3 X -quick-xml@0.38.4 X -quote@1.0.45 X X +quick-xml@0.41.0 X +quote@1.0.47 X X r-efi@5.3.0 X X X r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X +radium@0.7.0 X +rand@0.10.2 X X +rand@0.8.7 X X +rand@0.9.5 X X rand_chacha@0.3.1 X X rand_chacha@0.9.0 X X +rand_core@0.10.1 X X rand_core@0.6.4 X X rand_core@0.9.5 X X rand_distr@0.4.3 X X +rand_xoshiro@0.6.0 X X rawpointer@0.2.1 X X rayon@1.12.0 X X rayon-core@1.13.0 X X recursive@0.1.1 X recursive-proc-macro-impl@0.1.1 X redox_syscall@0.5.18 X -regex@1.12.3 X X -regex-automata@0.4.14 X X +regex@1.13.1 X X +regex-automata@0.4.16 X X regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X reqwest@0.12.28 X X -ring@0.17.14 X X +reqwest@0.13.4 X X roaring@0.11.4 X X +rust-ini@0.21.3 X rust-stemmers@1.2.0 X X rustc-hash@1.1.0 X X +rustc-hash@2.1.3 X X rustc_version@0.4.1 X X rustix@0.38.44 X X X rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X rustls-webpki@0.103.13 X -rustversion@1.0.22 X X +rustversion@1.0.23 X X ryu@1.0.23 X X safe_arch@0.7.4 X X X same-file@1.0.6 X X @@ -327,45 +415,55 @@ security-framework@3.7.0 X X security-framework-sys@2.17.0 X X semver@1.0.28 X X seq-macro@0.3.6 X X -serde@1.0.228 X X +serde@1.0.229 X X serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X -serde_repr@0.1.20 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X sha2@0.10.9 X X sha2@0.11.0 X X +shlex@1.3.0 X X shlex@2.0.1 X X +signal-hook-registry@1.4.8 X X simba@0.9.1 X -simd-adler32@0.3.9 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X simdutf8@0.1.5 X X siphasher@1.0.3 X X sketches-ddsketch@0.2.2 X +sketches-ddsketch@0.4.0 X slab@0.4.12 X -smallvec@1.15.1 X X +smallvec@1.15.2 X X +smol@2.0.2 X X snafu@0.8.9 X X snafu@0.9.1 X X snafu-derive@0.8.9 X X snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X +snap@1.1.2 X +socket2@0.6.5 X X sqlparser@0.62.0 X sqlparser_derive@0.5.0 X stable_deref_trait@1.2.1 X X stacker@0.1.24 X X +static_assertions@1.1.0 X X strsim@0.11.1 X strum@0.27.2 X strum_macros@0.27.2 X subtle@2.6.1 X -syn@2.0.117 X X +syn@1.0.109 X X +syn@2.0.119 X X +syn@3.0.2 X X sync_wrapper@1.0.2 X synstructure@0.13.2 X system-configuration@0.7.0 X X system-configuration-sys@0.6.0 X X +tagptr@0.2.0 X X tantivy@0.22.1 X tantivy-bitpacker@0.6.0 X tantivy-columnar@0.3.0 X @@ -375,18 +473,20 @@ tantivy-query-grammar@0.22.0 X tantivy-sstable@0.3.0 X tantivy-stacker@0.3.0 X tantivy-tokenizer-api@0.3.0 X +tap@1.0.1 X tempfile@3.27.0 X X +termtree@1.0.0 X thiserror@1.0.69 X X -thiserror@2.0.18 X X +thiserror@2.0.19 X X thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X +thiserror-impl@2.0.19 X X thrift@0.17.0 X -time@0.3.47 X X -time-core@0.1.8 X X +time@0.3.54 X X +time-core@0.1.9 X X tiny-keccak@2.0.2 X tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X +tokio@1.53.0 X +tokio-macros@2.7.1 X tokio-native-tls@0.3.1 X tokio-rustls@0.26.4 X X tokio-stream@0.1.18 X @@ -399,7 +499,7 @@ tracing@0.1.44 X tracing-attributes@0.1.31 X tracing-core@0.1.36 X try-lock@0.2.5 X -twox-hash@2.1.2 X +twox-hash@2.1.3 X typed-builder@0.19.1 X X typed-builder-macro@0.19.1 X X typenum@1.20.1 X X @@ -411,23 +511,52 @@ url@2.5.8 X X urlencoding@2.1.3 X utf8-ranges@1.0.5 X X utf8_iter@1.0.4 X X -uuid@1.23.2 X X +uuid@1.24.0 X X vcpkg@0.2.15 X X version_check@0.9.5 X X +vortex@0.75.0 X +vortex-alp@0.75.0 X +vortex-array@0.75.0 X +vortex-array-macros@0.75.0 X +vortex-btrblocks@0.75.0 X +vortex-buffer@0.75.0 X +vortex-bytebool@0.75.0 X +vortex-compressor@0.75.0 X +vortex-datetime-parts@0.75.0 X +vortex-decimal-byte-parts@0.75.0 X +vortex-error@0.75.0 X +vortex-fastlanes@0.75.0 X +vortex-file@0.75.0 X +vortex-flatbuffers@0.75.0 X +vortex-fsst@0.75.0 X +vortex-io@0.75.0 X +vortex-ipc@0.75.0 X +vortex-layout@0.75.0 X +vortex-mask@0.75.0 X +vortex-metrics@0.75.0 X +vortex-pco@0.75.0 X +vortex-proto@0.75.0 X +vortex-runend@0.75.0 X +vortex-scan@0.75.0 X +vortex-sequence@0.75.0 X +vortex-session@0.75.0 X +vortex-sparse@0.75.0 X +vortex-utils@0.75.0 X +vortex-zigzag@0.75.0 X +vortex-zstd@0.75.0 X walkdir@2.5.0 X X want@0.3.1 X wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X web-time@1.1.0 X X -webpki-roots@1.0.7 X +webpki-root-certs@1.0.9 X wide@0.7.33 X X X winapi@0.3.9 X X winapi-i686-pc-windows-gnu@0.4.0 X X @@ -452,22 +581,24 @@ windows_i686_msvc@0.52.6 X X windows_x86_64_gnu@0.52.6 X X windows_x86_64_gnullvm@0.52.6 X X windows_x86_64_msvc@0.52.6 X X -wit-bindgen@0.51.0 X X X wit-bindgen@0.57.1 X X X writeable@0.6.3 X +wyz@0.5.1 X +xattr@1.6.1 X X yansi@1.0.1 X X -yoke@0.8.2 X +yoke@0.8.3 X yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X zerofrom@0.1.8 X zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X +zeroize@1.9.0 X X zerotrie@0.2.4 X zerovec@0.11.6 X zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X +zigzag@0.1.0 X +zlib-rs@0.6.6 X +zmij@1.0.23 X zstd@0.13.3 X zstd-safe@7.2.4 X X zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/crates/paimon-rest-server/DEPENDENCIES.rust.tsv b/crates/paimon-rest-server/DEPENDENCIES.rust.tsv new file mode 100644 index 00000000..3715feca --- /dev/null +++ b/crates/paimon-rest-server/DEPENDENCIES.rust.tsv @@ -0,0 +1,379 @@ +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 Unicode-3.0 Unlicense Zlib +adler2@2.0.1 X X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +android_system_properties@0.1.5 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +axum@0.7.9 X +axum-core@0.4.5 X +axum-macros@0.4.2 X +base64@0.22.1 X X +bigdecimal@0.4.10 X X +bitflags@2.13.1 X X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +cc@1.3.0 X X +cfg-if@1.0.4 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X +comfy-table@7.2.2 X +const-oid@0.10.2 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc32fast@1.5.0 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctutils@0.4.2 X X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +equivalent@1.0.2 X X +errno@0.3.14 X X +fallible-streaming-iterator@0.1.9 X X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs_extra@1.3.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.17.1 X X +heck@0.5.0 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +integer-encoding@3.0.4 X +ipnet@2.12.0 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libc@0.2.186 X X +libloading@0.9.0 X +libm@0.2.16 X +linux-raw-sys@0.12.1 X X X +litemap@0.8.2 X +log@0.4.33 X X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +matchit@0.7.3 X X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +memchr@2.8.3 X X +mime@0.3.17 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-complex@0.4.6 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +once_cell@1.21.4 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-oss@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +paimon@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-rest-server@0.3.0 X +paimon-vindex-core@0.2.0 X +parquet@58.3.0 X +paste@1.0.15 X X +percent-encoding@2.3.2 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project-lite@0.2.17 X X +pkg-config@0.3.33 X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost-derive@0.13.5 X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +rust-ini@0.21.3 X +rustc_version@0.4.1 X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +same-file@1.0.6 X X +schannel@0.1.29 X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_path_to_error@0.1.20 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@2.0.1 X X +signal-hook-registry@1.4.8 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +slab@0.4.12 X +smallvec@1.15.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +stable_deref_trait@1.2.1 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tempfile@3.27.0 X X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8_iter@1.0.4 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +wide@0.7.33 X X X +winapi-util@0.1.11 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.61.2 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/crates/paimon/Cargo.toml b/crates/paimon/Cargo.toml index 129700c8..49ec1e8e 100644 --- a/crates/paimon/Cargo.toml +++ b/crates/paimon/Cargo.toml @@ -20,6 +20,7 @@ categories = ["database"] description = "The rust implementation of Apache Paimon" documentation = "https://docs.rs/paimon" name = "paimon" +publish = ["crates-io"] exclude = ["testdata/"] homepage.workspace = true @@ -27,6 +28,7 @@ repository.workspace = true edition.workspace = true license.workspace = true version.workspace = true +rust-version.workspace = true [features] default = ["storage-memory", "storage-fs", "storage-oss"] @@ -45,14 +47,14 @@ fulltext = ["tantivy", "tempfile"] vortex = ["dep:vortex"] storage-memory = ["opendal/services-memory"] -storage-fs = ["opendal/services-fs"] -storage-oss = ["opendal/services-oss"] -storage-s3 = ["opendal/services-s3"] -storage-cos = ["opendal/services-cos"] -storage-azdls = ["opendal/services-azdls"] -storage-obs = ["opendal/services-obs"] -storage-gcs = ["opendal/services-gcs"] -storage-hdfs = ["opendal/services-hdfs-native"] +storage-fs = ["dep:opendal-service-fs"] +storage-oss = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-oss"] +storage-s3 = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-s3"] +storage-cos = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-cos"] +storage-azdls = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-azdls"] +storage-obs = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-obs"] +storage-gcs = ["dep:opendal-http-transport-reqwest", "dep:opendal-service-gcs"] +storage-hdfs = ["dep:opendal-service-hdfs-native"] [dependencies] url = "2.5.2" @@ -68,7 +70,16 @@ serde_with = "3.9.0" serde_repr = "0.1" snafu = "0.9.0" typed-builder = "^0.19" -opendal = { version = "0.55", features = ["services-fs"] } +opendal = { package = "opendal-core", version = "0.58.0" } +opendal-http-transport-reqwest = { version = "0.58.0", optional = true } +opendal-service-azdls = { version = "0.58.0", optional = true } +opendal-service-cos = { version = "0.58.0", optional = true } +opendal-service-fs = { version = "0.58.0", optional = true } +opendal-service-gcs = { version = "0.58.0", optional = true } +opendal-service-hdfs-native = { version = "0.58.0", optional = true } +opendal-service-obs = { version = "0.58.0", optional = true } +opendal-service-oss = { version = "0.58.0", optional = true } +opendal-service-s3 = { version = "0.58.0", optional = true } pretty_assertions = "1" apache-avro = { version = "0.21", features = ["snappy", "zstandard"] } indexmap = "2.5.0" diff --git a/crates/paimon/DEPENDENCIES.rust.tsv b/crates/paimon/DEPENDENCIES.rust.tsv index 77627970..b60dd8de 100644 --- a/crates/paimon/DEPENDENCIES.rust.tsv +++ b/crates/paimon/DEPENDENCIES.rust.tsv @@ -1,446 +1,606 @@ -crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MPL-2.0 Unicode-3.0 Unlicense Zlib zlib-acknowledgement -adler2@2.0.1 X X X -aes@0.8.4 X X -ahash@0.8.12 X X -aho-corasick@1.1.4 X X -alloc-no-stdlib@2.0.4 X -alloc-stdlib@0.2.2 X -allocator-api2@0.2.21 X X -android_system_properties@0.1.5 X X -anyhow@1.0.102 X X -apache-avro@0.21.0 X -approx@0.5.1 X -arc-swap@1.9.1 X X -arrow@58.3.0 X -arrow-arith@58.3.0 X -arrow-array@58.3.0 X X -arrow-buffer@58.3.0 X -arrow-cast@58.3.0 X -arrow-csv@58.3.0 X -arrow-data@58.3.0 X -arrow-ipc@58.3.0 X -arrow-json@58.3.0 X -arrow-ord@58.3.0 X -arrow-row@58.3.0 X -arrow-schema@58.3.0 X -arrow-select@58.3.0 X -arrow-string@58.3.0 X -async-stream@0.3.6 X -async-stream-impl@0.3.6 X -async-trait@0.1.89 X X -atoi@2.0.0 X -atomic-waker@1.1.2 X X -autocfg@1.5.1 X X -backon@1.6.0 X -base64@0.22.1 X X -base64ct@1.8.3 X X -bigdecimal@0.4.10 X X -bitflags@2.11.1 X X -bitpacking@0.9.3 X -block-buffer@0.10.4 X X -block-padding@0.3.3 X X -bon@3.9.1 X X -bon-macros@3.9.1 X X -brotli@8.0.3 X X -brotli-decompressor@5.0.1 X X -bumpalo@3.20.3 X X -bytemuck@1.25.0 X X X -byteorder@1.5.0 X X -bytes@1.11.1 X -cbc@0.1.2 X X -cc@1.2.63 X X -census@0.4.2 X -cfg-if@1.0.4 X X -chrono@0.4.44 X X -chrono-tz@0.10.4 X X -cipher@0.4.4 X X -comfy-table@7.2.2 X -const-oid@0.9.6 X X -const-random@0.1.18 X X -const-random-macro@0.1.16 X X -core-foundation@0.10.1 X X -core-foundation@0.9.4 X X -core-foundation-sys@0.8.7 X X -cpufeatures@0.2.17 X X -crc@3.4.0 X X -crc-catalog@2.5.0 X X -crc32c@0.6.8 X X -crc32fast@1.5.0 X X -crossbeam-channel@0.5.15 X X -crossbeam-deque@0.8.6 X X -crossbeam-epoch@0.9.18 X X -crossbeam-utils@0.8.21 X X -crunchy@0.2.4 X -crypto-common@0.1.7 X X -csv@1.4.0 X X -csv-core@0.1.13 X X -ctr@0.9.2 X X -darling@0.23.0 X -darling_core@0.23.0 X -darling_macro@0.23.0 X -der@0.7.10 X X -deranged@0.5.8 X X -des@0.8.1 X X -diff@0.1.13 X X -digest@0.10.7 X X -displaydoc@0.2.6 X X -dns-lookup@3.0.1 X X -downcast-rs@1.2.1 X X -either@1.16.0 X X -encoding_rs@0.8.35 X X X -equivalent@1.0.2 X X -errno@0.3.14 X X -fallible-streaming-iterator@0.1.9 X X -fastdivide@0.4.2 X X -fastrand@2.4.1 X X -find-msvc-tools@0.1.9 X X -flatbuffers@25.12.19 X -flate2@1.1.9 X X -fnv@1.0.7 X X -foldhash@0.1.5 X -foreign-types@0.3.2 X X -foreign-types-shared@0.1.1 X X -form_urlencoded@1.2.2 X X -fs4@0.8.4 X X -futures@0.3.32 X X -futures-channel@0.3.32 X X -futures-core@0.3.32 X X -futures-executor@0.3.32 X X -futures-io@0.3.32 X X -futures-macro@0.3.32 X X -futures-sink@0.3.32 X X -futures-task@0.3.32 X X -futures-util@0.3.32 X X -g2gen@1.2.2 X X -g2p@1.2.2 X X -g2poly@1.2.2 X X -generic-array@0.14.7 X -getrandom@0.2.17 X X -getrandom@0.3.4 X X -getrandom@0.4.2 X X -gloo-timers@0.3.0 X X -h2@0.4.14 X -half@2.7.1 X X -hashbrown@0.15.5 X X -hashbrown@0.17.1 X X -hdfs-native@0.13.5 X -heck@0.5.0 X X -hermit-abi@0.5.2 X X -hex@0.4.3 X X -hmac@0.12.1 X X -home@0.5.12 X X -htmlescape@0.3.1 X X X -http@1.4.1 X X -http-body@1.0.1 X -http-body-util@0.1.3 X -httparse@1.10.1 X X -httpdate@1.0.3 X X -hyper@1.10.1 X -hyper-rustls@0.27.9 X X X -hyper-tls@0.6.0 X X -hyper-util@0.1.20 X -iana-time-zone@0.1.65 X X -iana-time-zone-haiku@0.1.2 X X -icu_collections@2.2.0 X -icu_locale_core@2.2.0 X -icu_normalizer@2.2.0 X -icu_normalizer_data@2.2.0 X -icu_properties@2.2.0 X -icu_properties_data@2.2.0 X -icu_provider@2.2.0 X -ident_case@1.0.1 X X -idna@1.1.0 X X -idna_adapter@1.2.2 X X -indexmap@2.14.0 X X -inout@0.1.4 X X -instant@0.1.13 X -integer-encoding@3.0.4 X -ipnet@2.12.0 X X -itertools@0.12.1 X X -itertools@0.14.0 X X -itoa@1.0.18 X X -jiff@0.2.28 X X -jiff-tzdb@0.1.6 X X -jiff-tzdb-platform@0.1.3 X X -jobserver@0.1.34 X X -js-sys@0.3.99 X X -jsonwebtoken@9.3.1 X -lazy_static@1.5.0 X X -levenshtein_automata@0.2.1 X -lexical-core@1.0.6 X X -lexical-parse-float@1.0.6 X X -lexical-parse-integer@1.0.6 X X -lexical-util@1.0.7 X X -lexical-write-float@1.0.6 X X -lexical-write-integer@1.0.6 X X -libc@0.2.186 X X -libloading@0.9.0 X -libm@0.2.16 X -libredox@0.1.17 X -linux-raw-sys@0.12.1 X X X -linux-raw-sys@0.4.15 X X X -litemap@0.8.2 X -log@0.4.30 X X -lru@0.12.5 X -lz4_flex@0.11.6 X -lz4_flex@0.13.1 X -lzokay-native@0.1.0 X -matrixmultiply@0.3.10 X X -md-5@0.10.6 X X -measure_time@0.8.3 X -memchr@2.8.1 X X -memmap2@0.9.10 X X -mime@0.3.17 X X -minimal-lexical@0.2.1 X X -miniz_oxide@0.8.9 X X X -mio@1.2.1 X -murmurhash32@0.3.1 X -nalgebra@0.33.3 X -nalgebra-macros@0.2.2 X -native-tls@0.2.18 X X -nom@7.1.3 X -num@0.4.3 X X -num-bigint@0.4.6 X X -num-bigint-dig@0.8.6 X X -num-complex@0.4.6 X X -num-conv@0.2.2 X X -num-integer@0.1.46 X X -num-iter@0.1.45 X X -num-rational@0.4.2 X X -num-traits@0.2.19 X X -num_cpus@1.17.0 X X -once_cell@1.21.4 X X -oneshot@0.1.13 X X -opendal@0.55.0 X -openssl@0.10.80 X -openssl-macros@0.1.1 X X -openssl-probe@0.2.1 X X -openssl-sys@0.9.116 X -orc-rust@0.8.0 X -ordered-float@2.10.1 X -ownedbytes@0.7.0 X -paimon@0.3.0 X -paimon-vindex-core@0.2.0 X -parquet@58.3.0 X -paste@1.0.15 X X -pbkdf2@0.12.2 X X -pem@3.0.6 X -pem-rfc7468@0.7.0 X X -percent-encoding@2.3.2 X X -phf@0.12.1 X -phf_shared@0.12.1 X -pin-project-lite@0.2.17 X X -pkcs1@0.7.5 X X -pkcs5@0.7.1 X X -pkcs8@0.10.2 X X -pkg-config@0.3.33 X X -plain@0.2.3 X X -portable-atomic@1.13.1 X X -portable-atomic-util@0.2.7 X X -potential_utf@0.1.5 X -powerfmt@0.2.0 X X -ppv-lite86@0.2.21 X X -pretty_assertions@1.4.1 X X -prettyplease@0.2.37 X X -proc-macro2@1.0.106 X X -prost@0.13.5 X -prost@0.14.3 X -prost-derive@0.13.5 X -prost-derive@0.14.3 X -prost-types@0.14.3 X -quad-rand@0.2.3 X -quick-xml@0.37.5 X -quick-xml@0.38.4 X -quote@1.0.45 X X -r-efi@5.3.0 X X X -r-efi@6.0.0 X X X -rand@0.8.6 X X -rand@0.9.4 X X -rand_chacha@0.3.1 X X -rand_chacha@0.9.0 X X -rand_core@0.6.4 X X -rand_core@0.9.5 X X -rand_distr@0.4.3 X X -rawpointer@0.2.1 X X -rayon@1.12.0 X X -rayon-core@1.13.0 X X -regex@1.12.3 X X -regex-automata@0.4.14 X X -regex-lite@0.1.9 X X -regex-syntax@0.8.10 X X -reqsign@0.16.5 X -reqwest@0.12.28 X X -ring@0.17.14 X X -roaring@0.11.4 X X -roxmltree@0.21.1 X X -rsa@0.9.10 X X -rust-stemmers@1.2.0 X X -rustc-hash@1.1.0 X X -rustc_version@0.4.1 X X -rustix@0.38.44 X X X -rustix@1.1.4 X X X -rustls@0.23.40 X X X -rustls-pki-types@1.14.1 X X -rustls-webpki@0.103.13 X -rustversion@1.0.22 X X -ryu@1.0.23 X X -safe_arch@0.7.4 X X X -salsa20@0.10.2 X X -schannel@0.1.29 X -scrypt@0.11.0 X X -security-framework@3.7.0 X X -security-framework-sys@2.17.0 X X -semver@1.0.28 X X -seq-macro@0.3.6 X X -serde@1.0.228 X X -serde_bytes@0.11.19 X X -serde_core@1.0.228 X X -serde_derive@1.0.228 X X -serde_json@1.0.150 X X -serde_repr@0.1.20 X X -serde_urlencoded@0.7.1 X X -serde_with@3.20.0 X X -serde_with_macros@3.20.0 X X -sha1@0.10.6 X X -sha2@0.10.9 X X -shlex@2.0.1 X X -signature@2.2.0 X X -simba@0.9.1 X -simd-adler32@0.3.9 X -simdutf8@0.1.5 X X -simple_asn1@0.6.4 X -siphasher@1.0.3 X X -sketches-ddsketch@0.2.2 X -slab@0.4.12 X -smallvec@1.15.1 X X -snafu@0.8.9 X X -snafu@0.9.1 X X -snafu-derive@0.8.9 X X -snafu-derive@0.9.1 X X -snap@1.1.1 X -socket2@0.6.4 X X -spin@0.9.8 X -spki@0.7.3 X X -stable_deref_trait@1.2.1 X X -strsim@0.11.1 X -strum@0.27.2 X -strum_macros@0.27.2 X -subtle@2.6.1 X -syn@2.0.117 X X -sync_wrapper@1.0.2 X -synstructure@0.13.2 X -system-configuration@0.7.0 X X -system-configuration-sys@0.6.0 X X -tantivy@0.22.1 X -tantivy-bitpacker@0.6.0 X -tantivy-columnar@0.3.0 X -tantivy-common@0.7.0 X -tantivy-fst@0.5.0 X X -tantivy-query-grammar@0.22.0 X -tantivy-sstable@0.3.0 X -tantivy-stacker@0.3.0 X -tantivy-tokenizer-api@0.3.0 X -tempfile@3.27.0 X X -thiserror@1.0.69 X X -thiserror@2.0.18 X X -thiserror-impl@1.0.69 X X -thiserror-impl@2.0.18 X X -thrift@0.17.0 X -time@0.3.47 X X -time-core@0.1.8 X X -time-macros@0.2.27 X X -tiny-keccak@2.0.2 X -tinystr@0.8.3 X -tokio@1.52.3 X -tokio-macros@2.7.0 X -tokio-native-tls@0.3.1 X -tokio-rustls@0.26.4 X X -tokio-util@0.7.18 X -tower@0.5.3 X -tower-http@0.6.11 X -tower-layer@0.3.3 X -tower-service@0.3.3 X -tracing@0.1.44 X -tracing-core@0.1.36 X -try-lock@0.2.5 X -twox-hash@2.1.2 X -typed-builder@0.19.1 X X -typed-builder-macro@0.19.1 X X -typenum@1.20.1 X X -unicode-ident@1.0.24 X X X -unicode-segmentation@1.13.2 X X -unicode-width@0.2.2 X X -untrusted@0.9.0 X -url@2.5.8 X X -urlencoding@2.1.3 X -utf8-ranges@1.0.5 X X -utf8_iter@1.0.4 X X -uuid@1.23.2 X X -vcpkg@0.2.15 X X -version_check@0.9.5 X X -want@0.3.1 X -wasi@0.11.1+wasi-snapshot-preview1 X X X -wasip2@1.0.3+wasi-0.2.9 X X X -wasip3@0.4.0+wasi-0.3.0-rc-2026-01-06 X X X -wasite@0.1.0 X X X -wasm-bindgen@0.2.122 X X -wasm-bindgen-futures@0.4.72 X X -wasm-bindgen-macro@0.2.122 X X -wasm-bindgen-macro-support@0.2.122 X X -wasm-bindgen-shared@0.2.122 X X -wasm-streams@0.4.2 X X -web-sys@0.3.99 X X -webpki-roots@1.0.7 X -whoami@1.6.1 X X X -wide@0.7.33 X X X -winapi@0.3.9 X X -winapi-i686-pc-windows-gnu@0.4.0 X X -winapi-x86_64-pc-windows-gnu@0.4.0 X X -windows-core@0.62.2 X X -windows-implement@0.60.2 X X -windows-interface@0.59.3 X X -windows-link@0.2.1 X X -windows-registry@0.6.1 X X -windows-result@0.4.1 X X -windows-strings@0.5.1 X X -windows-sys@0.52.0 X X -windows-sys@0.59.0 X X -windows-sys@0.60.2 X X -windows-sys@0.61.2 X X -windows-targets@0.52.6 X X -windows-targets@0.53.5 X X -windows_aarch64_gnullvm@0.52.6 X X -windows_aarch64_gnullvm@0.53.1 X X -windows_aarch64_msvc@0.52.6 X X -windows_aarch64_msvc@0.53.1 X X -windows_i686_gnu@0.52.6 X X -windows_i686_gnu@0.53.1 X X -windows_i686_gnullvm@0.52.6 X X -windows_i686_gnullvm@0.53.1 X X -windows_i686_msvc@0.52.6 X X -windows_i686_msvc@0.53.1 X X -windows_x86_64_gnu@0.52.6 X X -windows_x86_64_gnu@0.53.1 X X -windows_x86_64_gnullvm@0.52.6 X X -windows_x86_64_gnullvm@0.53.1 X X -windows_x86_64_msvc@0.52.6 X X -windows_x86_64_msvc@0.53.1 X X -wit-bindgen@0.51.0 X X X -wit-bindgen@0.57.1 X X X -writeable@0.6.3 X -yansi@1.0.1 X X -yoke@0.8.2 X -yoke-derive@0.8.2 X -zerocopy@0.8.50 X X X -zerocopy-derive@0.8.50 X X X -zerofrom@0.1.8 X -zerofrom-derive@0.1.7 X -zeroize@1.8.2 X X -zerotrie@0.2.4 X -zerovec@0.11.6 X -zerovec-derive@0.11.3 X -zlib-rs@0.6.3 X -zmij@1.0.21 X -zstd@0.13.3 X -zstd-safe@7.2.4 X X -zstd-sys@2.0.16+zstd.1.5.7 X X +crate 0BSD Apache-2.0 Apache-2.0 WITH LLVM-exception BSD-2-Clause BSD-3-Clause BSL-1.0 CC0-1.0 CDLA-Permissive-2.0 ISC LGPL-2.1-or-later MIT MIT-0 MPL-2.0 Unicode-3.0 Unlicense Zlib zlib-acknowledgement +adler2@2.0.1 X X X +aes@0.8.4 X X +ahash@0.8.12 X X +aho-corasick@1.1.4 X X +alloc-no-stdlib@2.0.4 X +alloc-stdlib@0.2.4 X +allocator-api2@0.2.21 X X +android_system_properties@0.1.5 X X +anyhow@1.0.104 X X +apache-avro@0.21.0 X +approx@0.5.1 X +arc-swap@1.9.2 X X +arcref@0.2.0 X +arrow@58.3.0 X +arrow-arith@58.3.0 X +arrow-array@58.3.0 X X +arrow-buffer@58.3.0 X +arrow-cast@58.3.0 X +arrow-csv@58.3.0 X +arrow-data@58.3.0 X +arrow-ipc@58.3.0 X +arrow-json@58.3.0 X +arrow-ord@58.3.0 X +arrow-row@58.3.0 X +arrow-schema@58.3.0 X +arrow-select@58.3.0 X +arrow-string@58.3.0 X +async-channel@2.5.0 X X +async-executor@1.14.0 X X +async-fs@2.2.0 X X +async-io@2.6.0 X X +async-lock@3.4.2 X X +async-net@2.0.0 X X +async-process@2.5.0 X X +async-signal@0.2.14 X X +async-stream@0.3.6 X +async-stream-impl@0.3.6 X +async-task@4.7.1 X X +async-trait@0.1.91 X X +atoi@2.0.0 X +atomic-waker@1.1.2 X X +autocfg@1.5.1 X X +aws-lc-rs@1.17.3 X X +aws-lc-sys@0.43.0 X X X X X +base64@0.22.1 X X +base64ct@1.8.3 X X +better_io@0.2.0 X +bigdecimal@0.4.10 X X +bindgen@0.72.1 X +bit-vec@0.9.1 X X +bitflags@2.13.1 X X +bitpacking@0.9.3 X +bitvec@1.1.1 X +block-buffer@0.10.4 X X +block-buffer@0.12.1 X X +block-padding@0.3.3 X X +blocking@1.6.2 X X +bon@3.9.3 X X +bon-macros@3.9.3 X X +brotli@8.0.4 X X +brotli-decompressor@5.0.3 X X +bumpalo@3.20.3 X X +bytemuck@1.25.2 X X X +byteorder@1.5.0 X X +bytes@1.12.1 X +cbc@0.1.2 X X +cc@1.3.0 X X +census@0.4.2 X +cexpr@0.6.0 X X +cfg-if@1.0.4 X X +chacha20@0.10.1 X X +chrono@0.4.45 X X +chrono-tz@0.10.4 X X +cipher@0.4.4 X X +clang-sys@1.8.1 X +cmake@0.1.58 X X +cmov@0.5.4 X X +combine@4.6.7 X +comfy-table@7.2.2 X +concurrent-queue@2.5.0 X X +const-oid@0.10.2 X X +const-oid@0.9.6 X X +const-random@0.1.18 X X +const-random-macro@0.1.16 X X +const_for@0.1.6 X +core-foundation@0.10.1 X X +core-foundation@0.9.4 X X +core-foundation-sys@0.8.7 X X +core_detect@1.0.0 X X +cpufeatures@0.2.17 X X +cpufeatures@0.3.0 X X +crc@3.4.0 X X +crc-catalog@2.5.0 X X +crc-fast@1.10.0 X X +crc32fast@1.5.0 X X +crossbeam-channel@0.5.16 X X +crossbeam-deque@0.8.7 X X +crossbeam-epoch@0.9.20 X X +crossbeam-utils@0.8.22 X X +crunchy@0.2.4 X +crypto-common@0.1.7 X X +crypto-common@0.2.2 X X +csv@1.4.0 X X +csv-core@0.1.13 X X +ctr@0.9.2 X X +ctutils@0.4.2 X X +custom-labels@0.4.6 X +darling@0.23.0 X +darling_core@0.23.0 X +darling_macro@0.23.0 X +dashmap@6.2.1 X +der@0.7.10 X X +deranged@0.5.8 X X +des@0.8.1 X X +diff@0.1.13 X X +digest@0.10.7 X X +digest@0.11.3 X X +displaydoc@0.2.6 X X +dlv-list@0.5.2 X X +dns-lookup@3.0.1 X X +downcast-rs@1.2.1 X X +dtype_dispatch@0.2.1 X +dunce@1.0.5 X X X +either@1.16.0 X X +encoding_rs@0.8.35 X X X +enum-iterator@2.3.0 X +enum-iterator-derive@1.5.0 X +equivalent@1.0.2 X X +errno@0.3.14 X X +event-listener@5.4.1 X X +event-listener-strategy@0.5.4 X X +ext-trait@1.0.1 X X X +ext-trait-proc_macros@1.0.1 X X X +extension-traits@1.0.1 X X X +fallible-streaming-iterator@0.1.9 X X +fastdivide@0.4.2 X X +fastlanes@0.5.2 X +fastrand@2.5.0 X X +find-msvc-tools@0.1.9 X X +flatbuffers@25.12.19 X +flate2@1.1.9 X X +fnv@1.0.7 X X +foldhash@0.1.5 X +foldhash@0.2.0 X +foreign-types@0.3.2 X X +foreign-types-shared@0.1.1 X X +form_urlencoded@1.2.2 X X +fs4@0.8.4 X X +fs_extra@1.3.0 X +fsst-rs@0.5.11 X +funty@2.0.0 X +futures@0.3.33 X X +futures-channel@0.3.33 X X +futures-core@0.3.33 X X +futures-executor@0.3.33 X X +futures-io@0.3.33 X X +futures-lite@2.6.1 X X +futures-macro@0.3.33 X X +futures-sink@0.3.33 X X +futures-task@0.3.33 X X +futures-util@0.3.33 X X +g2gen@1.2.2 X X +g2p@1.2.2 X X +g2poly@1.2.2 X X +generic-array@0.14.7 X +getrandom@0.2.17 X X +getrandom@0.3.4 X X +getrandom@0.4.3 X X +glob@0.3.3 X X +h2@0.4.15 X +half@2.7.1 X X +hashbrown@0.14.5 X X +hashbrown@0.15.5 X X +hashbrown@0.17.1 X X +hdfs-native@0.13.5 X +heck@0.5.0 X X +hermit-abi@0.5.2 X X +hex@0.4.3 X X +hmac@0.12.1 X X +hmac@0.13.0 X X +htmlescape@0.3.1 X X X +http@1.4.2 X X +http-body@1.1.0 X +http-body-util@0.1.4 X +httparse@1.10.1 X X +httpdate@1.0.3 X X +humansize@2.1.3 X X +hybrid-array@0.4.13 X X +hyper@1.10.1 X +hyper-rustls@0.27.9 X X X +hyper-tls@0.6.0 X X +hyper-util@0.1.20 X +iana-time-zone@0.1.65 X X +iana-time-zone-haiku@0.1.2 X X +icu_collections@2.2.0 X +icu_locale_core@2.2.0 X +icu_normalizer@2.2.0 X +icu_normalizer_data@2.2.0 X +icu_properties@2.2.0 X +icu_properties_data@2.2.0 X +icu_provider@2.2.0 X +ident_case@1.0.1 X X +idna@1.1.0 X X +idna_adapter@1.2.2 X X +indexmap@2.14.0 X X +inout@0.1.4 X X +instant@0.1.13 X +integer-encoding@3.0.4 X +inventory@0.3.24 X X +ipnet@2.12.0 X X +itertools@0.12.1 X X +itertools@0.13.0 X X +itertools@0.14.0 X X +itoa@1.0.18 X X +jiff@0.2.34 X X +jiff-core@0.1.0 X X +jiff-tzdb@0.1.8 X X +jiff-tzdb-platform@0.1.3 X X +jni@0.22.4 X X +jni-macros@0.22.4 X X +jni-sys@0.4.1 X X +jni-sys-macros@0.4.1 X X +jobserver@0.1.35 X X +js-sys@0.3.103 X X +kanal@0.1.1 X +lasso@0.7.3 X X +lazy_static@1.5.0 X X +lending-iterator@0.1.7 X X X +lending-iterator-proc_macros@0.1.7 X X X +levenshtein_automata@0.2.1 X +lexical-core@1.0.6 X X +lexical-parse-float@1.0.6 X X +lexical-parse-integer@1.0.6 X X +lexical-util@1.0.7 X X +lexical-write-float@1.0.6 X X +lexical-write-integer@1.0.6 X X +libc@0.2.186 X X +libloading@0.8.9 X +libloading@0.9.0 X +libm@0.2.16 X +libredox@0.1.18 X +linux-raw-sys@0.12.1 X X X +linux-raw-sys@0.4.15 X X X +litemap@0.8.2 X +lock_api@0.4.14 X X +log@0.4.33 X X +lru@0.12.5 X +lz4_flex@0.11.6 X +lz4_flex@0.13.1 X +lzokay-native@0.1.0 X +macro_rules_attribute@0.1.3 X +macro_rules_attribute-proc_macro@0.1.3 X +matrixmultiply@0.3.11 X X +md-5@0.10.6 X X +md-5@0.11.0 X X +mea@0.6.4 X +measure_time@0.8.3 X +memchr@2.8.3 X X +memmap2@0.9.11 X X +mime@0.3.17 X X +minimal-lexical@0.2.1 X X +miniz_oxide@0.8.9 X X X +mio@1.2.2 X +moka@0.12.15 X X +murmurhash32@0.3.1 X +nalgebra@0.33.3 X +nalgebra-macros@0.2.2 X +native-tls@0.2.18 X X +never-say-never@6.6.666 X X X +nom@7.1.3 X +nougat@0.2.4 X X X +nougat-proc_macros@0.2.4 X X X +num@0.4.3 X X +num-bigint@0.4.8 X X +num-bigint-dig@0.8.6 X X +num-complex@0.4.6 X X +num-conv@0.2.2 X X +num-integer@0.1.46 X X +num-iter@0.1.46 X X +num-rational@0.4.2 X X +num-traits@0.2.19 X X +num_cpus@1.17.0 X X +num_enum@0.7.6 X X X +num_enum_derive@0.7.6 X X X +once_cell@1.21.4 X X +oneshot@0.1.13 X X +oneshot@0.2.1 X X +opendal-core@0.58.0 X +opendal-http-transport-reqwest@0.58.0 X +opendal-service-azdls@0.58.0 X +opendal-service-azure-common@0.58.0 X +opendal-service-cos@0.58.0 X +opendal-service-fs@0.58.0 X +opendal-service-gcs@0.58.0 X +opendal-service-hdfs-native@0.58.0 X +opendal-service-obs@0.58.0 X +opendal-service-oss@0.58.0 X +opendal-service-s3@0.58.0 X +openssl@0.10.81 X +openssl-macros@0.1.1 X X +openssl-probe@0.2.1 X X +openssl-sys@0.9.117 X +orc-rust@0.8.0 X +ordered-float@2.10.1 X +ordered-multimap@0.7.3 X +ownedbytes@0.7.0 X +paimon@0.3.0 X +paimon-mosaic-core@0.2.0 X +paimon-vindex-core@0.2.0 X +parking@2.2.1 X X +parking_lot@0.12.5 X X +parking_lot_core@0.9.12 X X +parquet@58.3.0 X +paste@1.0.15 X X +pbkdf2@0.12.2 X X +pco@1.0.2 X +pem@3.0.6 X +pem-rfc7468@0.7.0 X X +percent-encoding@2.3.2 X X +phf@0.12.1 X +phf_shared@0.12.1 X +pin-project-lite@0.2.17 X X +piper@0.2.5 X X +pkcs1@0.7.5 X X +pkcs5@0.7.1 X X +pkcs8@0.10.2 X X +pkg-config@0.3.33 X X +plain@0.2.3 X X +polling@3.11.0 X X +polonius-the-crab@0.2.1 X X X +portable-atomic@1.14.0 X X +portable-atomic-util@0.2.7 X X +potential_utf@0.1.5 X +powerfmt@0.2.0 X X +ppv-lite86@0.2.21 X X +pretty_assertions@1.4.1 X X +prettyplease@0.2.37 X X +proc-macro2@1.0.107 X X +prost@0.13.5 X +prost@0.14.4 X +prost-derive@0.13.5 X +prost-derive@0.14.4 X +prost-types@0.14.4 X +quad-rand@0.2.3 X +quick-xml@0.41.0 X +quote@1.0.47 X X +r-efi@5.3.0 X X X +r-efi@6.0.0 X X X +radium@0.7.0 X +rand@0.10.2 X X +rand@0.8.7 X X +rand@0.9.5 X X +rand_chacha@0.3.1 X X +rand_chacha@0.9.0 X X +rand_core@0.10.1 X X +rand_core@0.6.4 X X +rand_core@0.9.5 X X +rand_distr@0.4.3 X X +rand_xoshiro@0.6.0 X X +rawpointer@0.2.1 X X +rayon@1.12.0 X X +rayon-core@1.13.0 X X +redox_syscall@0.5.18 X +redox_syscall@0.9.0 X +regex@1.13.1 X X +regex-automata@0.4.16 X X +regex-lite@0.1.9 X X +regex-syntax@0.8.11 X X +reqsign-aliyun-oss@3.1.1 X +reqsign-aws-v4@3.0.2 X +reqsign-azure-storage@3.1.0 X +reqsign-core@3.1.0 X +reqsign-file-read-tokio@3.0.2 X +reqsign-google@3.0.2 X +reqsign-huaweicloud-obs@3.0.2 X +reqsign-tencent-cos@3.0.2 X +reqwest@0.12.28 X X +reqwest@0.13.4 X X +roaring@0.11.4 X X +roxmltree@0.21.1 X X +rsa@0.9.10 X X +rust-ini@0.21.3 X +rust-stemmers@1.2.0 X X +rustc-hash@1.1.0 X X +rustc-hash@2.1.3 X X +rustc_version@0.4.1 X X +rustix@0.38.44 X X X +rustix@1.1.4 X X X +rustls@0.23.42 X X X +rustls-native-certs@0.8.4 X X X +rustls-pki-types@1.15.0 X X +rustls-platform-verifier@0.7.0 X X +rustls-platform-verifier-android@0.1.1 X X +rustls-webpki@0.103.13 X +rustversion@1.0.23 X X +ryu@1.0.23 X X +safe_arch@0.7.4 X X X +salsa20@0.10.2 X X +same-file@1.0.6 X X +schannel@0.1.29 X +scopeguard@1.2.0 X X +scrypt@0.11.0 X X +security-framework@3.7.0 X X +security-framework-sys@2.17.0 X X +semver@1.0.28 X X +seq-macro@0.3.6 X X +serde@1.0.229 X X +serde_bytes@0.11.19 X X +serde_core@1.0.229 X X +serde_derive@1.0.229 X X +serde_json@1.0.151 X X +serde_repr@0.1.21 X X +serde_urlencoded@0.7.1 X X +serde_with@3.21.0 X X +serde_with_macros@3.21.0 X X +sha1@0.10.7 X X +sha1@0.11.0 X X +sha2@0.10.9 X X +sha2@0.11.0 X X +shlex@1.3.0 X X +shlex@2.0.1 X X +signal-hook-registry@1.4.8 X X +signature@2.2.0 X X +simba@0.9.1 X +simd-adler32@0.3.10 X +simd_cesu8@1.2.0 X X +simdutf8@0.1.5 X X +siphasher@1.0.3 X X +sketches-ddsketch@0.2.2 X +sketches-ddsketch@0.4.0 X +slab@0.4.12 X +smallvec@1.15.2 X X +smol@2.0.2 X X +snafu@0.8.9 X X +snafu@0.9.1 X X +snafu-derive@0.8.9 X X +snafu-derive@0.9.1 X X +snap@1.1.2 X +socket2@0.6.5 X X +spin@0.10.1 X +spin@0.9.9 X +spki@0.7.3 X X +stable_deref_trait@1.2.1 X X +static_assertions@1.1.0 X X +strsim@0.11.1 X +strum@0.27.2 X +strum_macros@0.27.2 X +subtle@2.6.1 X +syn@1.0.109 X X +syn@2.0.119 X X +syn@3.0.2 X X +sync_wrapper@1.0.2 X +synstructure@0.13.2 X +system-configuration@0.7.0 X X +system-configuration-sys@0.6.0 X X +tagptr@0.2.0 X X +tantivy@0.22.1 X +tantivy-bitpacker@0.6.0 X +tantivy-columnar@0.3.0 X +tantivy-common@0.7.0 X +tantivy-fst@0.5.0 X X +tantivy-query-grammar@0.22.0 X +tantivy-sstable@0.3.0 X +tantivy-stacker@0.3.0 X +tantivy-tokenizer-api@0.3.0 X +tap@1.0.1 X +tempfile@3.27.0 X X +termtree@1.0.0 X +thiserror@1.0.69 X X +thiserror@2.0.19 X X +thiserror-impl@1.0.69 X X +thiserror-impl@2.0.19 X X +thrift@0.17.0 X +time@0.3.54 X X +time-core@0.1.9 X X +tiny-keccak@2.0.2 X +tinystr@0.8.3 X +tokio@1.53.0 X +tokio-macros@2.7.1 X +tokio-native-tls@0.3.1 X +tokio-rustls@0.26.4 X X +tokio-util@0.7.18 X +tower@0.5.3 X +tower-http@0.6.11 X +tower-layer@0.3.3 X +tower-service@0.3.3 X +tracing@0.1.44 X +tracing-attributes@0.1.31 X +tracing-core@0.1.36 X +try-lock@0.2.5 X +twox-hash@2.1.3 X +typed-builder@0.19.1 X X +typed-builder-macro@0.19.1 X X +typenum@1.20.1 X X +unicode-ident@1.0.24 X X X +unicode-segmentation@1.13.2 X X +unicode-width@0.2.2 X X +untrusted@0.9.0 X +url@2.5.8 X X +urlencoding@2.1.3 X +utf8-ranges@1.0.5 X X +utf8_iter@1.0.4 X X +uuid@1.24.0 X X +vcpkg@0.2.15 X X +version_check@0.9.5 X X +vortex@0.75.0 X +vortex-alp@0.75.0 X +vortex-array@0.75.0 X +vortex-array-macros@0.75.0 X +vortex-btrblocks@0.75.0 X +vortex-buffer@0.75.0 X +vortex-bytebool@0.75.0 X +vortex-compressor@0.75.0 X +vortex-datetime-parts@0.75.0 X +vortex-decimal-byte-parts@0.75.0 X +vortex-error@0.75.0 X +vortex-fastlanes@0.75.0 X +vortex-file@0.75.0 X +vortex-flatbuffers@0.75.0 X +vortex-fsst@0.75.0 X +vortex-io@0.75.0 X +vortex-ipc@0.75.0 X +vortex-layout@0.75.0 X +vortex-mask@0.75.0 X +vortex-metrics@0.75.0 X +vortex-pco@0.75.0 X +vortex-proto@0.75.0 X +vortex-runend@0.75.0 X +vortex-scan@0.75.0 X +vortex-sequence@0.75.0 X +vortex-session@0.75.0 X +vortex-sparse@0.75.0 X +vortex-utils@0.75.0 X +vortex-zigzag@0.75.0 X +vortex-zstd@0.75.0 X +walkdir@2.5.0 X X +want@0.3.1 X +wasi@0.11.1+wasi-snapshot-preview1 X X X +wasip2@1.0.4+wasi-0.2.12 X X X +wasite@0.1.0 X X X +wasm-bindgen@0.2.126 X X +wasm-bindgen-futures@0.4.76 X X +wasm-bindgen-macro@0.2.126 X X +wasm-bindgen-macro-support@0.2.126 X X +wasm-bindgen-shared@0.2.126 X X +wasm-streams@0.5.0 X X +web-sys@0.3.103 X X +web-time@1.1.0 X X +webpki-root-certs@1.0.9 X +whoami@1.6.1 X X X +wide@0.7.33 X X X +winapi@0.3.9 X X +winapi-i686-pc-windows-gnu@0.4.0 X X +winapi-util@0.1.11 X X +winapi-x86_64-pc-windows-gnu@0.4.0 X X +windows-core@0.62.2 X X +windows-implement@0.60.2 X X +windows-interface@0.59.3 X X +windows-link@0.2.1 X X +windows-registry@0.6.1 X X +windows-result@0.4.1 X X +windows-strings@0.5.1 X X +windows-sys@0.52.0 X X +windows-sys@0.59.0 X X +windows-sys@0.60.2 X X +windows-sys@0.61.2 X X +windows-targets@0.52.6 X X +windows-targets@0.53.5 X X +windows_aarch64_gnullvm@0.52.6 X X +windows_aarch64_gnullvm@0.53.1 X X +windows_aarch64_msvc@0.52.6 X X +windows_aarch64_msvc@0.53.1 X X +windows_i686_gnu@0.52.6 X X +windows_i686_gnu@0.53.1 X X +windows_i686_gnullvm@0.52.6 X X +windows_i686_gnullvm@0.53.1 X X +windows_i686_msvc@0.52.6 X X +windows_i686_msvc@0.53.1 X X +windows_x86_64_gnu@0.52.6 X X +windows_x86_64_gnu@0.53.1 X X +windows_x86_64_gnullvm@0.52.6 X X +windows_x86_64_gnullvm@0.53.1 X X +windows_x86_64_msvc@0.52.6 X X +windows_x86_64_msvc@0.53.1 X X +wit-bindgen@0.57.1 X X X +writeable@0.6.3 X +wyz@0.5.1 X +xattr@1.6.1 X X +yansi@1.0.1 X X +yoke@0.8.3 X +yoke-derive@0.8.2 X +zerocopy@0.8.54 X X X +zerocopy-derive@0.8.54 X X X +zerofrom@0.1.8 X +zerofrom-derive@0.1.7 X +zeroize@1.9.0 X X +zerotrie@0.2.4 X +zerovec@0.11.6 X +zerovec-derive@0.11.3 X +zigzag@0.1.0 X +zlib-rs@0.6.6 X +zmij@1.0.23 X +zstd@0.13.3 X +zstd-safe@7.2.4 X X +zstd-sys@2.0.16+zstd.1.5.7 X X diff --git a/crates/paimon/src/io/file_io.rs b/crates/paimon/src/io/file_io.rs index 1e7517bc..996d9acc 100644 --- a/crates/paimon/src/io/file_io.rs +++ b/crates/paimon/src/io/file_io.rs @@ -246,7 +246,8 @@ impl FileIO { pub async fn delete_dir(&self, path: &str) -> Result<()> { let (op, relative_path) = self.storage.create(path)?; - op.remove_all(relative_path.as_ref()) + op.delete_with(relative_path.as_ref()) + .recursive(true) .await .context(IoUnexpectedSnafu { message: format!("Failed to delete directory '{path}'"), diff --git a/crates/paimon/src/io/mod.rs b/crates/paimon/src/io/mod.rs index 31f7c0dd..a16e7ff7 100644 --- a/crates/paimon/src/io/mod.rs +++ b/crates/paimon/src/io/mod.rs @@ -21,6 +21,22 @@ pub use file_io::*; mod storage; pub use storage::*; +#[cfg(any( + feature = "storage-azdls", + feature = "storage-cos", + feature = "storage-gcs", + feature = "storage-obs", + feature = "storage-oss", + feature = "storage-s3" +))] +fn with_http_transport(op: opendal::Operator) -> opendal::Operator { + use opendal::{HttpTransporter, OperationContext}; + use opendal_http_transport_reqwest::ReqwestTransport; + + let transport = HttpTransporter::new(ReqwestTransport::default()); + op.with_context(OperationContext::new().with_http_transport(transport)) +} + #[cfg(any( feature = "storage-s3", feature = "storage-cos", diff --git a/crates/paimon/src/io/storage.rs b/crates/paimon/src/io/storage.rs index 8ab67e40..fd696267 100644 --- a/crates/paimon/src/io/storage.rs +++ b/crates/paimon/src/io/storage.rs @@ -39,19 +39,19 @@ use std::sync::MutexGuard; #[cfg(feature = "storage-azdls")] use super::AzdlsStorageConfig; +use opendal::Operator; #[cfg(feature = "storage-cos")] -use opendal::services::CosConfig; +use opendal_service_cos::CosConfig; #[cfg(feature = "storage-gcs")] -use opendal::services::GcsConfig; +use opendal_service_gcs::GcsConfig; #[cfg(feature = "storage-hdfs")] -use opendal::services::HdfsNativeConfig; +use opendal_service_hdfs_native::HdfsNativeConfig; #[cfg(feature = "storage-obs")] -use opendal::services::ObsConfig; +use opendal_service_obs::ObsConfig; #[cfg(feature = "storage-oss")] -use opendal::services::OssConfig; +use opendal_service_oss::OssConfig; #[cfg(feature = "storage-s3")] -use opendal::services::S3Config; -use opendal::{Operator, Scheme}; +use opendal_service_s3::S3Config; #[cfg(any( feature = "storage-cos", feature = "storage-gcs", @@ -112,19 +112,18 @@ pub enum Storage { impl Storage { pub(crate) fn build(file_io_builder: FileIOBuilder) -> crate::Result { let (scheme_str, props) = file_io_builder.into_parts(); - let scheme = Self::parse_scheme(&scheme_str)?; - - match scheme { + let scheme = scheme_str.to_ascii_lowercase(); + match scheme.as_str() { #[cfg(feature = "storage-memory")] - Scheme::Memory => Ok(Self::Memory { + "memory" => Ok(Self::Memory { op: super::memory_config_build()?, }), #[cfg(feature = "storage-fs")] - Scheme::Fs => Ok(Self::LocalFs { + "file" | "fs" | "" => Ok(Self::LocalFs { op: super::fs_config_build()?, }), #[cfg(feature = "storage-oss")] - Scheme::Oss => { + "oss" => { let config = super::oss_config_parse(props)?; Ok(Self::Oss { config: Box::new(config), @@ -132,7 +131,7 @@ impl Storage { }) } #[cfg(feature = "storage-s3")] - Scheme::S3 => { + "s3" | "s3a" => { let config = super::s3_config_parse(props)?; Ok(Self::S3 { config: Box::new(config), @@ -140,7 +139,7 @@ impl Storage { }) } #[cfg(feature = "storage-cos")] - Scheme::Cos => { + "cos" | "cosn" => { let config = super::cos_config_parse(props)?; Ok(Self::Cos { config: Box::new(config), @@ -148,7 +147,7 @@ impl Storage { }) } #[cfg(feature = "storage-azdls")] - Scheme::Azdls => { + "abfs" | "abfss" | "az" | "azdfs" | "azdls" | "azure" => { let config = super::azdls_config_parse(props)?; Ok(Self::Azdls { config: Box::new(config), @@ -156,7 +155,7 @@ impl Storage { }) } #[cfg(feature = "storage-obs")] - Scheme::Obs => { + "obs" => { let config = super::obs_config_parse(props)?; Ok(Self::Obs { config: Box::new(config), @@ -164,7 +163,7 @@ impl Storage { }) } #[cfg(feature = "storage-gcs")] - Scheme::Gcs => { + "gcs" | "gs" => { let config = super::gcs_config_parse(props)?; Ok(Self::Gcs { config: Box::new(config), @@ -172,7 +171,7 @@ impl Storage { }) } #[cfg(feature = "storage-hdfs")] - Scheme::HdfsNative => { + "hdfs" | "hdfs-native" | "hdfs_native" => { let config = super::hdfs_config_parse(props)?; Ok(Self::Hdfs { config: Box::new(config), @@ -413,19 +412,110 @@ impl Storage { super::s3_config_build(config, path) }) } +} + +#[cfg(test)] +mod scheme_tests { + use crate::error::Error; + use crate::io::{FileIOBuilder, Storage}; + + fn build(scheme: &str) -> Storage { + Storage::build(FileIOBuilder::new(scheme)).unwrap() + } + + #[cfg(feature = "storage-memory")] + #[test] + fn memory_scheme_is_case_insensitive() { + for scheme in ["memory", "MEMORY"] { + assert!(matches!(build(scheme), Storage::Memory { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-fs")] + #[test] + fn local_fs_scheme_aliases_are_compatible() { + for scheme in ["", "file", "FILE", "fs", "FS"] { + assert!(matches!(build(scheme), Storage::LocalFs { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-oss")] + #[test] + fn oss_scheme_is_case_insensitive() { + for scheme in ["oss", "OSS"] { + let storage = Storage::build(FileIOBuilder::new(scheme).with_props([ + ("fs.oss.endpoint", "https://oss-cn-hangzhou.aliyuncs.com"), + ("fs.oss.accessKeyId", "test-ak"), + ("fs.oss.accessKeySecret", "test-sk"), + ])) + .unwrap(); + assert!(matches!(storage, Storage::Oss { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-s3")] + #[test] + fn s3_scheme_aliases_are_compatible() { + for scheme in ["s3", "S3", "s3a", "S3A"] { + assert!(matches!(build(scheme), Storage::S3 { .. }), "{scheme}"); + } + } - fn parse_scheme(scheme: &str) -> crate::Result { - match scheme { - "memory" => Ok(Scheme::Memory), - "file" | "" => Ok(Scheme::Fs), - "s3" | "s3a" => Ok(Scheme::S3), - "cosn" => Ok(Scheme::Cos), - "abfs" | "abfss" | "az" | "azure" => Ok(Scheme::Azdls), - "gs" => Ok(Scheme::Gcs), - "hdfs" => Ok(Scheme::HdfsNative), - s => Ok(s.parse::()?), + #[cfg(feature = "storage-cos")] + #[test] + fn cos_scheme_aliases_are_compatible() { + for scheme in ["cos", "COS", "cosn", "COSN"] { + assert!(matches!(build(scheme), Storage::Cos { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-azdls")] + #[test] + fn azdls_scheme_aliases_are_compatible() { + for scheme in [ + "azdls", "AZDLS", "azdfs", "AZDFS", "abfs", "ABFS", "abfss", "ABFSS", "az", "AZ", + "azure", "AZURE", + ] { + assert!(matches!(build(scheme), Storage::Azdls { .. }), "{scheme}"); } } + + #[cfg(feature = "storage-obs")] + #[test] + fn obs_scheme_is_case_insensitive() { + for scheme in ["obs", "OBS"] { + assert!(matches!(build(scheme), Storage::Obs { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-gcs")] + #[test] + fn gcs_scheme_aliases_are_compatible() { + for scheme in ["gcs", "GCS", "gs", "GS"] { + assert!(matches!(build(scheme), Storage::Gcs { .. }), "{scheme}"); + } + } + + #[cfg(feature = "storage-hdfs")] + #[test] + fn hdfs_native_scheme_aliases_are_compatible() { + for scheme in [ + "hdfs", + "HDFS", + "hdfs-native", + "HDFS-NATIVE", + "hdfs_native", + "HDFS_NATIVE", + ] { + assert!(matches!(build(scheme), Storage::Hdfs { .. }), "{scheme}"); + } + } + + #[test] + fn unknown_scheme_is_rejected() { + let error = FileIOBuilder::new("unknown").build().unwrap_err(); + assert!(matches!(error, Error::IoUnsupported { .. })); + } } #[cfg(all(test, feature = "storage-fs"))] diff --git a/crates/paimon/src/io/storage_azdls.rs b/crates/paimon/src/io/storage_azdls.rs index 3c2a36af..6551f617 100644 --- a/crates/paimon/src/io/storage_azdls.rs +++ b/crates/paimon/src/io/storage_azdls.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::AzdlsConfig; use opendal::{Configurator, Operator}; +use opendal_service_azdls::AzdlsConfig; use url::Url; use crate::error::Error; @@ -68,7 +68,7 @@ pub(crate) fn azdls_config_build(cfg: &AzdlsStorageConfig, path: &str) -> Result let (cfg, relative_path) = azdls_config_for_path(cfg, path)?; let builder = cfg.into_builder(); - let op = Operator::new(builder)?.finish(); + let op = super::with_http_transport(Operator::new(builder)?); debug_assert_eq!( relative_path, diff --git a/crates/paimon/src/io/storage_cos.rs b/crates/paimon/src/io/storage_cos.rs index ff7b11a6..61ea159a 100644 --- a/crates/paimon/src/io/storage_cos.rs +++ b/crates/paimon/src/io/storage_cos.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::CosConfig; use opendal::{Configurator, Operator}; +use opendal_service_cos::CosConfig; use url::Url; use crate::error::Error; @@ -39,6 +39,7 @@ const KEY_ALIASES: &[(&str, &str)] = &[ ("fs.cosn.secret-key", "fs.cosn.userinfo.secretKey"), ]; +#[allow(deprecated)] pub(crate) fn cos_config_parse(props: HashMap) -> Result { let normalized = normalize_storage_config(props, CONFIG_PREFIXES, "fs.cosn.", KEY_ALIASES); @@ -68,7 +69,7 @@ pub(crate) fn cos_config_build(cfg: &CosConfig, path: &str) -> Result })?; let builder = cfg.clone().into_builder().bucket(bucket); - Ok(Operator::new(builder)?.finish()) + Ok(super::with_http_transport(Operator::new(builder)?)) } #[cfg(test)] diff --git a/crates/paimon/src/io/storage_fs.rs b/crates/paimon/src/io/storage_fs.rs index ff38d761..5d5fd6af 100644 --- a/crates/paimon/src/io/storage_fs.rs +++ b/crates/paimon/src/io/storage_fs.rs @@ -15,8 +15,8 @@ // specific language governing permissions and limitations // under the License. -use opendal::services::FsConfig; use opendal::Operator; +use opendal_service_fs::FsConfig; use crate::Result; @@ -25,5 +25,5 @@ pub(crate) fn fs_config_build() -> Result { let mut cfg = FsConfig::default(); cfg.root = Some("/".to_string()); - Ok(Operator::from_config(cfg)?.finish()) + Ok(Operator::from_config(cfg)?) } diff --git a/crates/paimon/src/io/storage_gcs.rs b/crates/paimon/src/io/storage_gcs.rs index dd24cb69..487ede59 100644 --- a/crates/paimon/src/io/storage_gcs.rs +++ b/crates/paimon/src/io/storage_gcs.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::GcsConfig; use opendal::{Configurator, Operator}; +use opendal_service_gcs::GcsConfig; use url::Url; use crate::error::Error; @@ -68,7 +68,7 @@ pub(crate) fn gcs_config_parse(props: HashMap) -> Result Result })?; let builder = cfg.clone().into_builder().bucket(bucket); - Ok(Operator::new(builder)?.finish()) + Ok(super::with_http_transport(Operator::new(builder)?)) } #[cfg(test)] @@ -146,7 +146,7 @@ mod tests { let cfg = gcs_config_parse(props).unwrap(); assert_eq!(cfg.credential_path.as_deref(), Some("/tmp/gcs.json")); - assert!(cfg.allow_anonymous); + assert!(cfg.skip_signature); } #[test] @@ -176,7 +176,7 @@ mod tests { cfg.service_account.as_deref(), Some("opendal-sa@example.iam.gserviceaccount.com") ); - assert!(cfg.allow_anonymous); + assert!(cfg.skip_signature); assert!(cfg.disable_vm_metadata); assert!(cfg.disable_config_load); } diff --git a/crates/paimon/src/io/storage_hdfs.rs b/crates/paimon/src/io/storage_hdfs.rs index 6486f775..8f40aea1 100644 --- a/crates/paimon/src/io/storage_hdfs.rs +++ b/crates/paimon/src/io/storage_hdfs.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::HdfsNativeConfig; use opendal::Operator; +use opendal_service_hdfs_native::HdfsNativeConfig; use url::Url; use crate::error::Error; @@ -54,6 +54,7 @@ const HDFS_ENABLE_APPEND: &str = "hdfs.enable-append"; /// Extracts HDFS-related configuration from the properties map. /// The `hdfs.name-node` key is optional — if omitted, the name node /// will be extracted from the file path URL at operator build time. +#[allow(deprecated)] pub(crate) fn hdfs_config_parse(props: HashMap) -> Result { let mut cfg = HdfsNativeConfig::default(); @@ -91,10 +92,11 @@ pub(crate) fn hdfs_config_build(cfg: &HdfsNativeConfig, path: &str) -> Result Result { - Ok(Operator::from_config(MemoryConfig::default())?.finish()) + Ok(Operator::from_config(MemoryConfig::default())?) } diff --git a/crates/paimon/src/io/storage_obs.rs b/crates/paimon/src/io/storage_obs.rs index 4e7def74..a64a97f2 100644 --- a/crates/paimon/src/io/storage_obs.rs +++ b/crates/paimon/src/io/storage_obs.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::ObsConfig; use opendal::{Configurator, Operator}; +use opendal_service_obs::ObsConfig; use url::Url; use crate::error::Error; @@ -38,7 +38,7 @@ const KEY_ALIASES: &[(&str, &str)] = &[ ("fs.obs.secret_access_key", "fs.obs.secret.key"), ]; -#[allow(clippy::field_reassign_with_default)] +#[allow(clippy::field_reassign_with_default, deprecated)] pub(crate) fn obs_config_parse(props: HashMap) -> Result { let normalized = normalize_storage_config(props, CONFIG_PREFIXES, "fs.obs.", KEY_ALIASES); @@ -63,7 +63,7 @@ pub(crate) fn obs_config_build(cfg: &ObsConfig, path: &str) -> Result })?; let builder = cfg.clone().into_builder().bucket(bucket); - Ok(Operator::new(builder)?.finish()) + Ok(super::with_http_transport(Operator::new(builder)?)) } #[cfg(test)] diff --git a/crates/paimon/src/io/storage_oss.rs b/crates/paimon/src/io/storage_oss.rs index 7884894d..77b883a7 100644 --- a/crates/paimon/src/io/storage_oss.rs +++ b/crates/paimon/src/io/storage_oss.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::OssConfig; use opendal::{Configurator, Operator}; +use opendal_service_oss::OssConfig; use url::Url; use crate::error::Error; @@ -97,7 +97,7 @@ pub(crate) fn oss_config_build(cfg: &OssConfig, path: &str) -> Result })?; let builder = cfg.clone().into_builder().bucket(bucket); - Ok(Operator::new(builder)?.finish()) + Ok(super::with_http_transport(Operator::new(builder)?)) } #[cfg(test)] diff --git a/crates/paimon/src/io/storage_s3.rs b/crates/paimon/src/io/storage_s3.rs index 19134342..8d77a365 100644 --- a/crates/paimon/src/io/storage_s3.rs +++ b/crates/paimon/src/io/storage_s3.rs @@ -17,8 +17,8 @@ use std::collections::HashMap; -use opendal::services::S3Config; use opendal::{Configurator, Operator}; +use opendal_service_s3::S3Config; use url::Url; use crate::error::Error; @@ -106,7 +106,7 @@ pub(crate) fn s3_config_parse(props: HashMap) -> Result Result { })?; let builder = cfg.clone().into_builder().bucket(bucket); - Ok(Operator::new(builder)?.finish()) + Ok(super::with_http_transport(Operator::new(builder)?)) } #[cfg(test)] diff --git a/deny.toml b/deny.toml index 98a4dec0..ebbe91cd 100644 --- a/deny.toml +++ b/deny.toml @@ -15,8 +15,16 @@ # specific language governing permissions and limitations # under the License. +[advisories] +ignore = [ + { id = "RUSTSEC-2023-0071", reason = "No fixed version; reqsign only signs locally generated outbound requests and exposes no remote signing or decryption timing oracle." }, + { id = "RUSTSEC-2026-0176", reason = "The affected PyList and PyTuple iterator APIs are unused." }, + { id = "RUSTSEC-2026-0177", reason = "PyCFunction::new_closure is unused." }, +] + [licenses] allow = [ + "0BSD", "Apache-2.0", "Apache-2.0 WITH LLVM-exception", "BSD-2-Clause", @@ -31,10 +39,7 @@ allow = [ exceptions = [ # open data licenses that SHOULD be OK - { crate = "webpki-roots", allow = [ + { crate = "webpki-root-certs", allow = [ "CDLA-Permissive-2.0", ] }, - # The MPL license is allowed (binary-only): - # https://www.apache.org/legal/resolved.html#category-b - { allow = ["MPL-2.0"], crate = "generational-arena" }, ] diff --git a/docs/src/release/creating-a-release.md b/docs/src/release/creating-a-release.md index 81ebd78a..57553a05 100644 --- a/docs/src/release/creating-a-release.md +++ b/docs/src/release/creating-a-release.md @@ -171,7 +171,7 @@ RC_TAG="v${RELEASE_VERSION}-rc${RC_NUM}" 1. Install [cargo-deny](https://embarkstudios.github.io/cargo-deny/): ```bash - cargo install cargo-deny + cargo install cargo-deny --version 0.19.6 --locked ``` 2. Generate the dependency list (requires **Python 3.11+**): @@ -179,15 +179,17 @@ RC_TAG="v${RELEASE_VERSION}-rc${RC_NUM}" ```bash git checkout main git pull + cargo fetch --locked python3 scripts/dependencies.py generate + python3 scripts/dependencies.py verify ``` - This creates a `DEPENDENCIES.rust.tsv` file for the workspace root and each member crate. + This creates dependency reports for the workspace, each member crate, and the Go binding. 3. Commit the result: ```bash - git add **/DEPENDENCIES*.tsv + git add Cargo.lock DEPENDENCIES.rust.tsv '**/DEPENDENCIES.rust.tsv' git commit -m "chore: update dependency list for release ${RELEASE_VERSION}" git push origin main ``` @@ -210,12 +212,12 @@ After cutting the release branch, bump `main` to the next version so that ongoin ```bash git checkout main ./scripts/bump-version.sh ${RELEASE_VERSION} ${NEXT_VERSION} -git add Cargo.toml +git add Cargo.toml Cargo.lock DEPENDENCIES.rust.tsv '**/DEPENDENCIES.rust.tsv' git commit -m "chore: bump version to ${NEXT_VERSION}" git push origin main ``` -The script updates `version` in root `Cargo.toml` (`[workspace.package]` and the `paimon` entry in `[workspace.dependencies]`). All member crates inherit the workspace version. +The script updates `version` in root `Cargo.toml` (`[workspace.package]` and the `paimon` entry in `[workspace.dependencies]`), refreshes `Cargo.lock`, and regenerates the dependency reports. It requires Python 3.11+ and cargo-deny 0.19.6; set `PYTHON` when Python 3.11+ is not available as `python3`. All member crates inherit the workspace version. ### Optional: Create PRs for release blog and download page diff --git a/scripts/bump-version.sh b/scripts/bump-version.sh index 22111490..7056a205 100755 --- a/scripts/bump-version.sh +++ b/scripts/bump-version.sh @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -# Bump version in root Cargo.toml ([workspace.package] and [workspace.dependencies]). +# Bump the workspace version and refresh locked release metadata. # Run from repo root. # # Usage: ./scripts/bump-version.sh @@ -33,6 +33,7 @@ TO_VERSION="$2" REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" cd "$REPO_ROOT" +PYTHON="${PYTHON:-python3}" if [ ! -f Cargo.toml ]; then echo "Cargo.toml not found. Run from repo root." @@ -52,5 +53,10 @@ case "$(uname -s)" in ;; esac -echo "Bumped version from ${FROM_VERSION} to ${TO_VERSION} in Cargo.toml" -echo "Review with: git diff Cargo.toml" +cargo update -p paimon --precise "${TO_VERSION}" +PYTHONDONTWRITEBYTECODE=1 "${PYTHON}" scripts/dependencies.py generate +PYTHONDONTWRITEBYTECODE=1 "${PYTHON}" scripts/dependencies.py verify + +echo "Bumped version from ${FROM_VERSION} to ${TO_VERSION}" +echo "Updated Cargo.toml, Cargo.lock, and dependency reports" +echo "Review with: git diff -- Cargo.toml Cargo.lock DEPENDENCIES.rust.tsv '**/DEPENDENCIES.rust.tsv'" diff --git a/scripts/constants.py b/scripts/constants.py index 4a23e6a5..98d3a64e 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -17,28 +17,34 @@ # under the License. import tomllib +from dataclasses import dataclass from pathlib import Path ROOT_DIR = Path(__file__).resolve().parent.parent -def list_packages(): - """Package directories from [workspace].members in root Cargo.toml, plus workspace root. - Each gets a DEPENDENCIES.rust.tsv. Avoids scanning target/, .git/, etc. - Requires Python 3.11+ (tomllib). - """ +@dataclass(frozen=True) +class PackageSpec: + output_dir: str + manifest_path: str + + +def list_packages() -> list[PackageSpec]: + """List dependency report inputs and destinations.""" root_cargo = ROOT_DIR / "Cargo.toml" if not root_cargo.exists(): - return ["."] + return [PackageSpec(".", "Cargo.toml")] with open(root_cargo, "rb") as f: data = tomllib.load(f) members = data.get("workspace", {}).get("members", []) if not isinstance(members, list): - return ["."] - packages = ["."] + return [PackageSpec(".", "Cargo.toml")] + packages = [PackageSpec(".", "Cargo.toml")] for m in members: if isinstance(m, str) and m: - packages.append(m) + packages.append(PackageSpec(m, f"{m}/Cargo.toml")) + # The Go module embeds paimon-c. + packages.append(PackageSpec("bindings/go", "bindings/c/Cargo.toml")) return packages diff --git a/scripts/dependencies.py b/scripts/dependencies.py index ec77469f..cf032378 100644 --- a/scripts/dependencies.py +++ b/scripts/dependencies.py @@ -26,53 +26,115 @@ f"Current: {sys.version}. Use python3.11+ or see docs for release requirements." ) +import difflib import subprocess -from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter +from argparse import ArgumentDefaultsHelpFormatter, ArgumentParser +from functools import cache from constants import PACKAGES, ROOT_DIR +CARGO_DENY_VERSION = "0.19.6" -def check_single_package(root): - pkg_dir = ROOT_DIR / root if root != "." else ROOT_DIR - if (pkg_dir / "Cargo.toml").exists(): - print(f"Checking dependencies of {root}") - subprocess.run( - ["cargo", "deny", "check", "license"], - cwd=pkg_dir, - check=True, + +@cache +def verify_cargo_deny() -> None: + output = subprocess.check_output( + ["cargo", "deny", "--version"], cwd=ROOT_DIR, text=True + ).strip() + actual = output.rsplit(" ", 1)[-1] + if actual != CARGO_DENY_VERSION: + raise RuntimeError( + f"cargo-deny {CARGO_DENY_VERSION} is required, found {output!r}" ) - else: - print(f"Skipping {root} as Cargo.toml does not exist") + + +def cargo_deny(spec, *args, capture_output=False): + verify_cargo_deny() + return subprocess.run( + [ + "cargo", + "deny", + "--locked", + "--all-features", + "--manifest-path", + str(ROOT_DIR / spec.manifest_path), + *args, + ], + cwd=ROOT_DIR, + check=not capture_output, + capture_output=capture_output, + text=True, + ) + + +def check_single_package(spec): + print(f"Checking dependencies of {spec.output_dir}") + cargo_deny(spec, "check", "licenses") def check_deps(): - for d in PACKAGES: - check_single_package(d) - - -def generate_single_package(root): - pkg_dir = ROOT_DIR / root if root != "." else ROOT_DIR - if (pkg_dir / "Cargo.toml").exists(): - print(f"Generating dependencies {root}") - result = subprocess.run( - ["cargo", "deny", "list", "-f", "tsv", "-t", "0.6"], - cwd=pkg_dir, - capture_output=True, - text=True, + checked = set() + for spec in PACKAGES: + if spec.manifest_path in checked: + continue + checked.add(spec.manifest_path) + check_single_package(spec) + + +def dependency_report(spec): + result = cargo_deny(spec, "list", "-f", "tsv", "-t", "0.6", capture_output=True) + if result.returncode != 0: + raise RuntimeError( + f"cargo deny list failed for {spec.manifest_path}: " + f"{result.stderr or result.stdout}" ) - if result.returncode != 0: - raise RuntimeError( - f"cargo deny list failed in {root}: {result.stderr or result.stdout}" - ) - out_file = pkg_dir / "DEPENDENCIES.rust.tsv" - out_file.write_text(result.stdout) - else: - print(f"Skipping {root} as Cargo.toml does not exist") + return result.stdout + + +def output_file(spec): + output_dir = ROOT_DIR if spec.output_dir == "." else ROOT_DIR / spec.output_dir + return output_dir / "DEPENDENCIES.rust.tsv" + + +def generate_single_package(spec): + print(f"Generating dependencies {spec.output_dir}") + out_file = output_file(spec) + out_file.parent.mkdir(parents=True, exist_ok=True) + out_file.write_bytes(dependency_report(spec).encode("utf-8")) def generate_deps(): - for d in PACKAGES: - generate_single_package(d) + for spec in PACKAGES: + generate_single_package(spec) + + +def verify_deps(): + failed = False + for spec in PACKAGES: + expected = dependency_report(spec) + out_file = output_file(spec) + if not out_file.exists(): + print(f"Missing dependency report: {out_file.relative_to(ROOT_DIR)}") + failed = True + continue + expected_bytes = expected.encode("utf-8") + actual_bytes = out_file.read_bytes() + if actual_bytes == expected_bytes: + continue + failed = True + print(f"Stale dependency report: {out_file.relative_to(ROOT_DIR)}") + actual = actual_bytes.decode("utf-8") + diff = difflib.unified_diff( + actual.splitlines(), + expected.splitlines(), + fromfile=str(out_file.relative_to(ROOT_DIR)), + tofile=f"generated/{out_file.relative_to(ROOT_DIR)}", + lineterm="", + ) + for line in list(diff)[:200]: + print(line) + if failed: + raise RuntimeError("dependency reports are missing or stale") if __name__ == "__main__": @@ -90,6 +152,13 @@ def generate_deps(): ) parser_generate.set_defaults(func=generate_deps) + parser_verify = subparsers.add_parser( + "verify", + description="Verify committed dependency reports", + help="Verify committed dependency reports", + ) + parser_verify.set_defaults(func=verify_deps) + args = parser.parse_args() arg_dict = dict(vars(args)) del arg_dict["func"]