diff --git a/.github/workflows/tests-kzg.yml b/.github/workflows/tests-kzg.yml
index 964d35d93..6c9fb7eae 100644
--- a/.github/workflows/tests-kzg.yml
+++ b/.github/workflows/tests-kzg.yml
@@ -25,6 +25,7 @@ env:
CARGO_TERM_COLOR: always
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
OPENVM_FAST_TEST: "1"
+ OPENVM_BRANCH: develop-v2.1.0-rv64
jobs:
test:
@@ -43,13 +44,27 @@ jobs:
- uses: taiki-e/install-action@nextest
# The KZG integration tests build a zkVM guest via the OpenVM SDK, which
- # compiles with `-Z build-std` using OpenVM's pinned nightly + rust-src.
- # This must match `DEFAULT_RUSTUP_TOOLCHAIN_NAME` in OpenVM's
- # crates/toolchain/build (overridable via the OPENVM_RUST_TOOLCHAIN env var).
- - name: Install OpenVM guest toolchain
+ # requires the custom `openvm-1.94.0` rustup toolchain. It is installed
+ # by the cargo-openvm CLI built from the same openvm branch this repo pins.
+ - name: Checkout openvm (for cargo-openvm CLI)
+ run: git clone --depth=1 --branch="$OPENVM_BRANCH" https://github.com/openvm-org/openvm.git
+
+ - name: Build cargo-openvm
+ working-directory: openvm
run: |
- rustup install nightly-2025-08-02
- rustup component add rust-src --toolchain nightly-2025-08-02
+ cargo update -p openvm-stark-sdk
+ cargo build --locked -p cargo-openvm
+ echo "${{ github.workspace }}/openvm/target/debug" >> $GITHUB_PATH
+
+ - name: Restore openvm toolchain from cache
+ uses: runs-on/cache@v4
+ with:
+ path: ~/.openvm/toolchains
+ key: openvm-toolchain-openvm-1.94.0-${{ runner.os }}-${{ runner.arch }}
+
+ # Skips the download if restored from cache, just re-links into rustup.
+ - name: Install openvm rust toolchain
+ run: cargo openvm toolchain install
- name: Run tests
run: cargo nextest run -p openvm-kzg --release
diff --git a/Cargo.lock b/Cargo.lock
index c7d4e2557..ef3b7d50c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2,61 +2,13 @@
# It is not intended for manual editing.
version = 4
-[[package]]
-name = "abi_stable"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69d6512d3eb05ffe5004c59c206de7f99c34951504056ce23fc953842f12c445"
-dependencies = [
- "abi_stable_derive",
- "abi_stable_shared",
- "const_panic",
- "core_extensions",
- "crossbeam-channel",
- "generational-arena",
- "libloading 0.7.4",
- "lock_api",
- "parking_lot",
- "paste",
- "repr_offset",
- "rustc_version 0.4.1",
- "serde",
- "serde_derive",
- "serde_json",
-]
-
-[[package]]
-name = "abi_stable_derive"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7178468b407a4ee10e881bc7a328a65e739f0863615cca4429d43916b05e898"
-dependencies = [
- "abi_stable_shared",
- "as_derive_utils",
- "core_extensions",
- "proc-macro2",
- "quote",
- "rustc_version 0.4.1",
- "syn 1.0.109",
- "typed-arena",
-]
-
-[[package]]
-name = "abi_stable_shared"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2b5df7688c123e63f4d4d649cba63f2967ba7f7861b1664fca3f77d3dad2b63"
-dependencies = [
- "core_extensions",
-]
-
[[package]]
name = "actix-codec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"bytes",
"futures-core",
"futures-sink",
@@ -69,23 +21,23 @@ dependencies = [
[[package]]
name = "actix-http"
-version = "3.11.2"
+version = "3.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7926860314cbe2fb5d1f13731e387ab43bd32bca224e82e6e2db85de0a3dba49"
+checksum = "48e2faa3e7418ed780cca54829d32782a4008a077230f67457caa063415e99c2"
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"base64 0.22.1",
- "bitflags 2.10.0",
+ "bitflags",
"brotli",
"bytes",
"bytestring",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"encoding_rs",
"flate2",
- "foldhash 0.1.5",
+ "foldhash 0.2.0",
"futures-core",
"h2 0.3.27",
"http 0.2.12",
@@ -97,8 +49,8 @@ dependencies = [
"mime",
"percent-encoding",
"pin-project-lite",
- "rand 0.9.2",
- "sha1",
+ "rand 0.10.2",
+ "sha1 0.11.0",
"smallvec",
"tokio",
"tokio-util",
@@ -113,17 +65,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
dependencies = [
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "actix-router"
-version = "0.5.3"
+version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
+checksum = "14f8c75c51892f18d9c46150c5ac7beb81c95f78c8b83a634d49f4ca32551fe7"
dependencies = [
"bytestring",
- "cfg-if 1.0.1",
+ "cfg-if",
"http 0.2.12",
"regex",
"regex-lite",
@@ -180,9 +132,9 @@ dependencies = [
[[package]]
name = "actix-web"
-version = "4.12.1"
+version = "4.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1654a77ba142e37f049637a3e5685f864514af11fcbc51cb51eb6596afe5b8d6"
+checksum = "df09e2d9239703dd64056359c920c7f3fba6535ec61a0059e0f44e095ffe02b4"
dependencies = [
"actix-codec",
"actix-http",
@@ -195,11 +147,11 @@ dependencies = [
"actix-web-codegen",
"bytes",
"bytestring",
- "cfg-if 1.0.1",
+ "cfg-if",
"cookie",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"encoding_rs",
- "foldhash 0.1.5",
+ "foldhash 0.2.0",
"futures-core",
"futures-util",
"impl-more",
@@ -215,7 +167,7 @@ dependencies = [
"serde_json",
"serde_urlencoded",
"smallvec",
- "socket2 0.6.3",
+ "socket2 0.6.5",
"time",
"tracing",
"url",
@@ -230,14 +182,14 @@ dependencies = [
"actix-router",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "addr2line"
-version = "0.24.2"
+version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
+checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
dependencies = [
"gimli",
]
@@ -254,7 +206,7 @@ version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
- "crypto-common",
+ "crypto-common 0.1.7",
"generic-array",
]
@@ -264,9 +216,9 @@ version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"cipher",
- "cpufeatures",
+ "cpufeatures 0.2.17",
]
[[package]]
@@ -289,8 +241,8 @@ version = "0.8.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
dependencies = [
- "cfg-if 1.0.1",
- "getrandom 0.3.3",
+ "cfg-if",
+ "getrandom 0.3.4",
"once_cell",
"version_check",
"zerocopy",
@@ -298,9 +250,9 @@ dependencies = [
[[package]]
name = "aho-corasick"
-version = "1.1.3"
+version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
+checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
dependencies = [
"memchr",
]
@@ -313,9 +265,9 @@ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
-version = "0.2.2"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
+checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
dependencies = [
"alloc-no-stdlib",
]
@@ -350,7 +302,7 @@ dependencies = [
"alloy-pubsub",
"alloy-rpc-client",
"alloy-rpc-types",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-signer",
"alloy-signer-local",
"alloy-transport",
@@ -370,7 +322,7 @@ dependencies = [
"alloy-rlp",
"num_enum",
"serde",
- "strum 0.27.1",
+ "strum 0.27.2",
]
[[package]]
@@ -382,22 +334,22 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-trie 0.9.4",
"alloy-tx-macros",
"auto_impl",
"borsh",
"c-kzg",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"either",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"once_cell",
- "rand 0.8.5",
+ "rand 0.8.7",
"secp256k1 0.30.0",
"serde",
"serde_json",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -410,7 +362,7 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
]
@@ -434,15 +386,15 @@ dependencies = [
"futures",
"futures-util",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
[[package]]
name = "alloy-core"
-version = "1.4.1"
+version = "1.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a"
+checksum = "3bad0f48b9fe97029db0de15bb29a75f5f84848530673ba271b78216947d3877"
dependencies = [
"alloy-dyn-abi",
"alloy-json-abi",
@@ -461,11 +413,11 @@ dependencies = [
"alloy-primitives",
"alloy-sol-type-parser",
"alloy-sol-types",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"itoa",
"serde",
"serde_json",
- "winnow 0.7.14",
+ "winnow 0.7.15",
]
[[package]]
@@ -478,7 +430,7 @@ dependencies = [
"alloy-rlp",
"crc",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -505,26 +457,28 @@ dependencies = [
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"serde",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
name = "alloy-eip7928"
-version = "0.3.3"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8222b1d88f9a6d03be84b0f5e76bb60cd83991b43ad8ab6477f0e4a7809b98d"
+checksum = "6b827a6d7784fe3eb3489d40699407a4cdcce74271421a01bdffe60cf573bb16"
dependencies = [
"alloy-primitives",
"alloy-rlp",
"borsh",
+ "once_cell",
"serde",
+ "thiserror 2.0.18",
]
[[package]]
name = "alloy-eips"
-version = "1.5.2"
+version = "1.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "813a67f87e56b38554d18b182616ee5006e8e2bf9df96a0df8bf29dff1d52e3f"
+checksum = "e6ef28c9fdad22d4eec52d894f5f2673a0895f1e5ef196734568e68c0f6caca8"
dependencies = [
"alloy-eip2124",
"alloy-eip2930",
@@ -532,16 +486,15 @@ dependencies = [
"alloy-eip7928",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 1.5.2",
+ "alloy-serde 1.8.3",
"auto_impl",
"borsh",
"c-kzg",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"either",
"serde",
"serde_with",
"sha2 0.10.9",
- "thiserror 2.0.12",
]
[[package]]
@@ -556,11 +509,11 @@ dependencies = [
"alloy-eip7928",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"auto_impl",
"borsh",
"c-kzg",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"either",
"ethereum_ssz",
"ethereum_ssz_derive",
@@ -583,9 +536,9 @@ dependencies = [
"alloy-rpc-types-eth",
"alloy-sol-types",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"revm 38.0.0",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -597,7 +550,7 @@ checksum = "1e111e22c1a2133e9ebfd9051ea0eaf63559594d2f50d43cbc6762fbb95fc3c2"
dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-trie 0.9.4",
"borsh",
"serde",
@@ -638,10 +591,10 @@ checksum = "31b6af6f374c1eeef8ab8dc26232cd440db167322a4207a3debd3d1ee565ca47"
dependencies = [
"alloy-primitives",
"alloy-sol-types",
- "http 1.3.1",
+ "http 1.4.2",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -659,16 +612,16 @@ dependencies = [
"alloy-primitives",
"alloy-rpc-types-any",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-signer",
"alloy-sol-types",
"async-trait",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures-utils-wasm",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -680,7 +633,7 @@ dependencies = [
"alloy-consensus",
"alloy-eips 2.0.0",
"alloy-primitives",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
]
@@ -692,22 +645,22 @@ checksum = "66b1483f8c2562bf35f0270b697d5b5fe8170464e935bd855a4c5eaf6f89b354"
dependencies = [
"alloy-rlp",
"bytes",
- "cfg-if 1.0.1",
+ "cfg-if",
"const-hex",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"foldhash 0.2.0",
- "getrandom 0.4.2",
+ "getrandom 0.4.3",
"hashbrown 0.16.1",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"itoa",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"keccak-asm",
"paste",
"proptest",
- "rand 0.9.2",
+ "rand 0.9.5",
"rapidhash",
"ruint",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"serde",
"sha3",
]
@@ -745,13 +698,13 @@ dependencies = [
"either",
"futures",
"futures-utils-wasm",
- "lru 0.16.3",
+ "lru 0.16.4",
"parking_lot",
"pin-project",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
"url",
@@ -793,13 +746,13 @@ dependencies = [
[[package]]
name = "alloy-rlp-derive"
-version = "0.3.15"
+version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f36834a5c0a2fa56e171bf256c34d70fca07d0c0031583edea1c4946b7889c9e"
+checksum = "9d4311c03125e8a18296504560b9de3d75ecbd0dcda7f71e6cf2a196d57e6fba"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -817,7 +770,7 @@ dependencies = [
"alloy-transport-ws",
"futures",
"pin-project",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"serde",
"serde_json",
"tokio",
@@ -841,7 +794,7 @@ dependencies = [
"alloy-rpc-types-eth",
"alloy-rpc-types-trace",
"alloy-rpc-types-txpool",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
]
@@ -865,7 +818,7 @@ checksum = "06bc10b0dca4f5bfc3cd30ed46eab5d651b5bb2cd300d683bdcdf5d2bfe6e82c"
dependencies = [
"alloy-primitives",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
]
@@ -879,7 +832,7 @@ dependencies = [
"alloy-network-primitives",
"alloy-primitives",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
"serde_json",
]
@@ -893,13 +846,13 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rpc-types-engine",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"ethereum_ssz",
"ethereum_ssz_derive",
"serde",
"serde_json",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tree_hash",
"tree_hash_derive",
]
@@ -912,7 +865,7 @@ checksum = "301249e3c9e43661cfd7ebbb4746a00af6ce1ef58b5c968451882cd60438417d"
dependencies = [
"alloy-primitives",
"alloy-rlp",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"serde",
"serde_with",
]
@@ -927,14 +880,14 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 2.0.1",
- "derive_more 2.0.1",
+ "alloy-serde 2.0.4",
+ "derive_more 2.1.1",
"ethereum_ssz",
"ethereum_ssz_derive",
"jsonwebtoken",
- "rand 0.8.5",
+ "rand 0.8.7",
"serde",
- "strum 0.27.1",
+ "strum 0.27.2",
]
[[package]]
@@ -949,13 +902,13 @@ dependencies = [
"alloy-network-primitives",
"alloy-primitives",
"alloy-rlp",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-sol-types",
- "itertools 0.14.0",
+ "itertools 0.13.0",
"serde",
"serde_json",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -968,7 +921,7 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
"serde_json",
]
@@ -981,10 +934,10 @@ checksum = "ede0458c51bef23620aa6bd01a0b4f608be7bcb61d98e91b8530208ae545f3c2"
dependencies = [
"alloy-primitives",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -995,15 +948,15 @@ checksum = "d3f4df183248b57f3e0b99054b1b6786769d3fdff6d01a702234068140c8ba76"
dependencies = [
"alloy-primitives",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"serde",
]
[[package]]
name = "alloy-serde"
-version = "1.5.2"
+version = "1.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "946a0d413dbb5cd9adba0de5f8a1a34d5b77deda9b69c1d7feed8fc875a1aa26"
+checksum = "11ece63b89294b8614ab3f483560c08d016930f842bf36da56bf0b764a15c11e"
dependencies = [
"alloy-primitives",
"serde",
@@ -1012,9 +965,9 @@ dependencies = [
[[package]]
name = "alloy-serde"
-version = "2.0.1"
+version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "beaa5c581a67e2743d95b4849eb9cfeb90866429cdaa6d8f6b75eb988b2d0cd9"
+checksum = "a0eada2558e921b39dfcead33c487364df9b31374f5733c1c9d2c891c4529933"
dependencies = [
"alloy-primitives",
"serde",
@@ -1023,9 +976,9 @@ dependencies = [
[[package]]
name = "alloy-signer"
-version = "2.0.1"
+version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c5da9ae50f9b48d7b4e2e5cde87175257be7e5e56909a7794720597c1d9806f6"
+checksum = "41eb29f7a8adcd8941fbb8e134022a133e6f8dfd345f2e3b7109599f8a7dca08"
dependencies = [
"alloy-primitives",
"async-trait",
@@ -1033,7 +986,7 @@ dependencies = [
"either",
"elliptic-curve",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -1050,8 +1003,8 @@ dependencies = [
"coins-bip32",
"coins-bip39",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
- "rand 0.8.5",
- "thiserror 2.0.12",
+ "rand 0.8.7",
+ "thiserror 2.0.18",
"zeroize",
]
@@ -1066,7 +1019,7 @@ dependencies = [
"proc-macro-error2",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -1079,12 +1032,12 @@ dependencies = [
"alloy-sol-macro-input",
"const-hex",
"heck",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"proc-macro-error2",
"proc-macro2",
"quote",
"sha3",
- "syn 2.0.102",
+ "syn 2.0.118",
"syn-solidity",
]
@@ -1102,7 +1055,7 @@ dependencies = [
"proc-macro2",
"quote",
"serde_json",
- "syn 2.0.102",
+ "syn 2.0.118",
"syn-solidity",
]
@@ -1113,7 +1066,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6df77fea9d6a2a75c0ef8d2acbdfd92286cc599983d3175ccdc170d3433d249"
dependencies = [
"serde",
- "winnow 0.7.14",
+ "winnow 0.7.15",
]
[[package]]
@@ -1137,13 +1090,13 @@ dependencies = [
"alloy-json-rpc",
"auto_impl",
"base64 0.22.1",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
"futures-utils-wasm",
"parking_lot",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tower",
"tracing",
@@ -1159,8 +1112,8 @@ checksum = "a29980e69119444ed26b75e7ee5bed2043870f904a64318297e55800db686564"
dependencies = [
"alloy-json-rpc",
"alloy-transport",
- "itertools 0.14.0",
- "reqwest 0.13.3",
+ "itertools 0.13.0",
+ "reqwest 0.13.4",
"serde_json",
"tower",
"tracing",
@@ -1196,7 +1149,7 @@ dependencies = [
"alloy-pubsub",
"alloy-transport",
"futures",
- "http 1.3.1",
+ "http 1.4.2",
"rustls",
"serde_json",
"tokio",
@@ -1215,7 +1168,7 @@ dependencies = [
"alloy-primitives",
"alloy-rlp",
"arrayvec",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"nybbles 0.3.4",
"serde",
"smallvec",
@@ -1231,32 +1184,26 @@ dependencies = [
"alloy-primitives",
"alloy-rlp",
"arrayvec",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"nybbles 0.4.8",
"serde",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
[[package]]
name = "alloy-tx-macros"
-version = "2.0.1"
+version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3520337f3d3d063a7fe20f47aaa62d695e3dc0372b34f601560dee24e76988b9"
+checksum = "406bc1183f6843e0aba09f7b3365e828b597213d60793ba5cb41befc863e3a78"
dependencies = [
"darling 0.23.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
-[[package]]
-name = "android-tzdata"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
-
[[package]]
name = "android_system_properties"
version = "0.1.5"
@@ -1283,9 +1230,9 @@ dependencies = [
[[package]]
name = "anstream"
-version = "0.6.19"
+version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
+checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
dependencies = [
"anstyle",
"anstyle-parse",
@@ -1298,33 +1245,33 @@ dependencies = [
[[package]]
name = "anstyle"
-version = "1.0.11"
+version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
+checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
[[package]]
name = "anstyle-parse"
-version = "0.2.7"
+version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
+checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
-version = "1.1.3"
+version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
+checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
dependencies = [
- "windows-sys 0.59.0",
+ "windows-sys 0.60.2",
]
[[package]]
name = "anstyle-wincon"
-version = "3.0.10"
+version = "3.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
+checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
dependencies = [
"anstyle",
"once_cell_polyfill",
@@ -1333,9 +1280,9 @@ dependencies = [
[[package]]
name = "anyhow"
-version = "1.0.100"
+version = "1.0.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
+checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3"
[[package]]
name = "aquamarine"
@@ -1348,7 +1295,7 @@ dependencies = [
"proc-macro-error2",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -1394,7 +1341,7 @@ dependencies = [
"ark-std 0.5.0",
"educe",
"fnv",
- "hashbrown 0.15.4",
+ "hashbrown 0.15.5",
"itertools 0.13.0",
"num-bigint",
"num-integer",
@@ -1460,6 +1407,23 @@ dependencies = [
"zeroize",
]
+[[package]]
+name = "ark-ff"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f7a806ac6c8307b929df4645776290a50ee2aac754ad09d8bdf73391309e43af"
+dependencies = [
+ "ark-ff-asm 0.6.0",
+ "ark-ff-macros 0.6.0",
+ "ark-serialize 0.6.0",
+ "ark-std 0.6.0",
+ "digest 0.10.7",
+ "educe",
+ "num-bigint",
+ "num-traits",
+ "zeroize",
+]
+
[[package]]
name = "ark-ff-asm"
version = "0.3.0"
@@ -1487,7 +1451,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60"
dependencies = [
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "ark-ff-asm"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1479009684adc073dff49a1025d3a7065b317a9ead25aaaca38cdc70058ba8a2"
+dependencies = [
+ "quote",
+ "syn 2.0.118",
]
[[package]]
@@ -1525,7 +1499,20 @@ dependencies = [
"num-traits",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "ark-ff-macros"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4a0691ed21ef00ef89c1e9bda832eba493dda3ec2f8d892fb25b705f73f06bb8"
+dependencies = [
+ "num-bigint",
+ "num-traits",
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
]
[[package]]
@@ -1540,7 +1527,7 @@ dependencies = [
"ark-std 0.5.0",
"educe",
"fnv",
- "hashbrown 0.15.4",
+ "hashbrown 0.15.5",
]
[[package]]
@@ -1599,13 +1586,26 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7"
dependencies = [
- "ark-serialize-derive",
+ "ark-serialize-derive 0.5.0",
"ark-std 0.5.0",
"arrayvec",
"digest 0.10.7",
"num-bigint",
]
+[[package]]
+name = "ark-serialize"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a74dd304fd536fb95d0a328e72be759209cc496a9da094c5bc56e5fea4f9e86b"
+dependencies = [
+ "ark-serialize-derive 0.6.0",
+ "ark-std 0.6.0",
+ "digest 0.10.7",
+ "num-bigint",
+ "serde_with",
+]
+
[[package]]
name = "ark-serialize-derive"
version = "0.5.0"
@@ -1614,7 +1614,18 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "ark-serialize-derive"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4f153690697a2b91e5e1251ff98411ee5371500a111a0fd317a70e588eb300f9"
+dependencies = [
+ "proc-macro2",
+ "quote",
+ "syn 2.0.118",
]
[[package]]
@@ -1624,7 +1635,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c"
dependencies = [
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
]
[[package]]
@@ -1634,7 +1645,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185"
dependencies = [
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
]
[[package]]
@@ -1644,7 +1655,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a"
dependencies = [
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
+]
+
+[[package]]
+name = "ark-std"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "367c9c827ed431bff6868b7aa926e05b16eb46603cc8b6e768e4a5553fa1d155"
+dependencies = [
+ "num-traits",
+ "rand 0.8.7",
]
[[package]]
@@ -1655,40 +1676,27 @@ checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
[[package]]
name = "arrayvec"
-version = "0.7.6"
+version = "0.7.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
+checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
dependencies = [
"serde",
]
-[[package]]
-name = "as_derive_utils"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ff3c96645900a44cf11941c111bd08a6573b0e2f9f69bc9264b179d8fae753c4"
-dependencies = [
- "core_extensions",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
[[package]]
name = "asn1_der"
-version = "0.7.6"
+version = "0.7.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247"
+checksum = "4858a9d740c5007a9069007c3b4e91152d0506f13c1b31dd49051fd537656156"
[[package]]
name = "async-compression"
-version = "0.4.33"
+version = "0.4.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93c1f86859c1af3d514fa19e8323147ff10ea98684e6c7b307912509f50e67b2"
+checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
dependencies = [
"compression-codecs",
"compression-core",
- "futures-core",
"pin-project-lite",
"tokio",
]
@@ -1712,7 +1720,7 @@ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -1723,7 +1731,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -1743,17 +1751,6 @@ version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
-[[package]]
-name = "atty"
-version = "0.2.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-dependencies = [
- "hermit-abi 0.1.19",
- "libc",
- "winapi",
-]
-
[[package]]
name = "aurora-engine-modexp"
version = "1.2.0"
@@ -1772,20 +1769,20 @@ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "autocfg"
-version = "1.4.0"
+version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
+checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
[[package]]
name = "aws-lc-rs"
-version = "1.16.3"
+version = "1.17.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ec6fb3fe69024a75fa7e1bfb48aa6cf59706a101658ea01bfd33b2b248a038f"
+checksum = "4342d8937fc7e5dd9b1c60292261c0670c882a2cd1719cfc11b1af41731e32ad"
dependencies = [
"aws-lc-sys",
"untrusted 0.7.1",
@@ -1794,14 +1791,15 @@ dependencies = [
[[package]]
name = "aws-lc-sys"
-version = "0.40.0"
+version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f50037ee5e1e41e7b8f9d161680a725bd1626cb6f8c7e901f91f942850852fe7"
+checksum = "6d9ceb1da931507a12f4fccea479dccd00da1943e1b4ae72d8e502d707361444"
dependencies = [
"cc",
"cmake",
"dunce",
"fs_extra",
+ "pkg-config",
]
[[package]]
@@ -1812,18 +1810,18 @@ checksum = "be5eb007b7cacc6c660343e96f650fedf4b5a77512399eb952ca6642cf8d13f7"
[[package]]
name = "backtrace"
-version = "0.3.75"
+version = "0.3.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
+checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
dependencies = [
"addr2line",
- "cfg-if 1.0.1",
+ "cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
"serde",
- "windows-targets 0.52.6",
+ "windows-link",
]
[[package]]
@@ -1848,6 +1846,12 @@ dependencies = [
"match-lookup",
]
+[[package]]
+name = "base45"
+version = "3.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "240e56f4d3c453c36faacb695c535a4d5f8c7d23dac175014f32eb0a71012a03"
+
[[package]]
name = "base64"
version = "0.21.7"
@@ -1862,9 +1866,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "base64ct"
-version = "1.8.0"
+version = "1.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
+checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
[[package]]
name = "bech32"
@@ -1907,40 +1911,22 @@ dependencies = [
"virtue",
]
-[[package]]
-name = "bindgen"
-version = "0.70.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
-dependencies = [
- "bitflags 2.10.0",
- "cexpr",
- "clang-sys",
- "itertools 0.13.0",
- "proc-macro2",
- "quote",
- "regex",
- "rustc-hash 1.1.0",
- "shlex",
- "syn 2.0.102",
-]
-
[[package]]
name = "bindgen"
version = "0.72.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"cexpr",
"clang-sys",
"itertools 0.13.0",
"proc-macro2",
"quote",
"regex",
- "rustc-hash 2.1.1",
- "shlex",
- "syn 2.0.102",
+ "rustc-hash 2.1.3",
+ "shlex 1.3.0",
+ "syn 2.0.118",
]
[[package]]
@@ -1960,41 +1946,56 @@ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
[[package]]
name = "bitcode"
-version = "0.6.6"
+version = "0.6.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf300f4aa6e66f3bdff11f1236a88c622fe47ea814524792240b4d554d9858ee"
+checksum = "0a6ed1b54d8dc333e7be604d00fa9262f4635485ffea923647b6521a5fff045d"
dependencies = [
"bytemuck",
"serde",
]
[[package]]
-name = "bitcoin-io"
-version = "0.1.3"
+name = "bitcoin-consensus-encoding"
+version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf"
+checksum = "b2d6094e2a1ba3c93b5a596fe5a10d1a10c3c6e06785cde89f693a044c01aa40"
+dependencies = [
+ "bitcoin-internals",
+]
[[package]]
-name = "bitcoin_hashes"
-version = "0.14.0"
+name = "bitcoin-internals"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16"
+checksum = "a30a22d1f112dde8e16be7b45c63645dc165cef254f835b3e1e9553e485cfa64"
dependencies = [
- "bitcoin-io",
- "hex-conservative",
+ "hex-conservative 0.3.2",
]
[[package]]
-name = "bitflags"
-version = "1.3.2"
+name = "bitcoin-io"
+version = "0.1.101"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "bb5de036369d1ac59d3c1819ebc4d850f89466f5401c571a285b6ed564a4cb78"
+dependencies = [
+ "bitcoin-consensus-encoding",
+]
+
+[[package]]
+name = "bitcoin_hashes"
+version = "0.14.101"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+checksum = "bca4c7abb40c8817d77403c880988cfd484f23ab2365726afb2f798363e2c4a2"
+dependencies = [
+ "bitcoin-io",
+ "hex-conservative 0.2.2",
+]
[[package]]
name = "bitflags"
-version = "2.10.0"
+version = "2.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
+checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
dependencies = [
"serde_core",
]
@@ -2007,9 +2008,9 @@ checksum = "a1d084b0137aaa901caf9f1e8b21daa6aa24d41cd806e111335541eff9683bd6"
[[package]]
name = "bitvec"
-version = "1.0.1"
+version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
+checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
dependencies = [
"funty",
"radium",
@@ -2029,9 +2030,9 @@ dependencies = [
[[package]]
name = "blake2b_simd"
-version = "1.0.3"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99"
+checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3"
dependencies = [
"arrayref",
"arrayvec",
@@ -2056,6 +2057,15 @@ 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"
@@ -2121,9 +2131,9 @@ dependencies = [
[[package]]
name = "bon"
-version = "3.6.4"
+version = "3.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f61138465baf186c63e8d9b6b613b508cd832cba4ce93cf37ce5f096f91ac1a6"
+checksum = "a602c73c7b0148ec6d12af6fd5cc7a46e2eacc8878271a999abac56eed12f561"
dependencies = [
"bon-macros",
"rustversion",
@@ -2131,56 +2141,57 @@ dependencies = [
[[package]]
name = "bon-macros"
-version = "3.6.4"
+version = "3.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "40d1dad34aa19bf02295382f08d9bc40651585bd497266831d40ee6296fb49ca"
+checksum = "6dee98b0db6a962de883bf5d20362dee4d7ca0d12fe39a7c6c73c844e1cd7c1f"
dependencies = [
- "darling 0.20.11",
+ "darling 0.23.0",
"ident_case",
"prettyplease",
"proc-macro2",
"quote",
"rustversion",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "borsh"
-version = "1.6.0"
+version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f"
+checksum = "2f3f6da4992df95bbcd9af42a6c7dcb994498fc9048230405f3b36ff7cd3f145"
dependencies = [
"borsh-derive",
+ "bytes",
"cfg_aliases",
]
[[package]]
name = "borsh-derive"
-version = "1.6.0"
+version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c"
+checksum = "3ae8fb4fb5740e4b2c4884ff95f5f32f5e8479db1e8fd8eb49ddbe09eb09bb7c"
dependencies = [
"once_cell",
- "proc-macro-crate 3.3.0",
+ "proc-macro-crate 3.5.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "boyer-moore-magiclen"
-version = "0.2.22"
+version = "0.2.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7441b4796eb8a7107d4cd99d829810be75f5573e1081c37faa0e8094169ea0d6"
+checksum = "43f0fdabfbc8017645223fd529c6077df2c491277e44e88ed8afd5afe54e715a"
dependencies = [
"debug-helper",
]
[[package]]
name = "brotli"
-version = "8.0.2"
+version = "8.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
+checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
@@ -2189,9 +2200,9 @@ dependencies = [
[[package]]
name = "brotli-decompressor"
-version = "5.0.0"
+version = "5.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
+checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
@@ -2209,9 +2220,9 @@ dependencies = [
[[package]]
name = "bumpalo"
-version = "3.19.0"
+version = "3.20.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
+checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
[[package]]
name = "byte-slice-cast"
@@ -2221,9 +2232,9 @@ checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d"
[[package]]
name = "bytemuck"
-version = "1.23.1"
+version = "1.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422"
+checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
[[package]]
name = "byteorder"
@@ -2233,24 +2244,24 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "bytes"
-version = "1.11.1"
+version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
+checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
dependencies = [
"serde",
]
[[package]]
name = "bytesize"
-version = "2.0.1"
+version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3c8f83209414aacf0eeae3cf730b18d6981697fba62f200fcfb92b9f082acba"
+checksum = "3d7c8918969267b2932ffd5655509bbbea0833823058c378876953217f5fc50e"
[[package]]
name = "bytestring"
-version = "1.5.0"
+version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "113b4343b5f6617e7ad401ced8de3cc8b012e73a594347c307b90db3e9271289"
+checksum = "86566c496f2f47d9b8147a4c8b02ffdb69c919fe0c2b2e7195d22cbba0e635c9"
dependencies = [
"bytes",
]
@@ -2267,9 +2278,9 @@ dependencies = [
[[package]]
name = "c-kzg"
-version = "2.1.7"
+version = "2.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6648ed1e4ea8e8a1a4a2c78e1cda29a3fd500bc622899c340d8525ea9a76b24a"
+checksum = "38d04308254695569fdb9bfe3bacc1c91837a670d0806605eb82d63748fbd3a6"
dependencies = [
"blst",
"cc",
@@ -2282,11 +2293,11 @@ dependencies = [
[[package]]
name = "camino"
-version = "1.1.10"
+version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab"
+checksum = "5f2d30e4173c4026932d51d31d6b0613b1fd3014bf3f9f8943d4ba139c437ba0"
dependencies = [
- "serde",
+ "serde_core",
]
[[package]]
@@ -2300,9 +2311,9 @@ dependencies = [
[[package]]
name = "cargo-platform"
-version = "0.3.2"
+version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "87a0c0e6148f11f01f32650a2ea02d532b2ad4e81d8bd41e6e565b5adc5e6082"
+checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
dependencies = [
"serde",
"serde_core",
@@ -2316,7 +2327,7 @@ checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037"
dependencies = [
"camino",
"cargo-platform 0.1.9",
- "semver 1.0.26",
+ "semver 1.0.28",
"serde",
"serde_json",
"thiserror 1.0.69",
@@ -2329,11 +2340,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
dependencies = [
"camino",
- "cargo-platform 0.3.2",
- "semver 1.0.26",
+ "cargo-platform 0.3.3",
+ "semver 1.0.28",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -2344,14 +2355,14 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
[[package]]
name = "cc"
-version = "1.2.61"
+version = "1.2.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
+checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
dependencies = [
"find-msvc-tools",
"jobserver",
"libc",
- "shlex",
+ "shlex 2.0.1",
]
[[package]]
@@ -2371,15 +2382,9 @@ dependencies = [
[[package]]
name = "cfg-if"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
-[[package]]
-name = "cfg-if"
-version = "1.0.1"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
+checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
[[package]]
name = "cfg_aliases"
@@ -2387,19 +2392,29 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
+[[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.41"
+version = "0.4.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
+checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
dependencies = [
- "android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
"serde",
"wasm-bindgen",
- "windows-link 0.1.3",
+ "windows-link",
]
[[package]]
@@ -2435,7 +2450,7 @@ version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
- "crypto-common",
+ "crypto-common 0.1.7",
"inout",
]
@@ -2447,14 +2462,14 @@ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
dependencies = [
"glob",
"libc",
- "libloading 0.8.9",
+ "libloading",
]
[[package]]
name = "clap"
-version = "4.5.56"
+version = "4.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a75ca66430e33a14957acc24c5077b503e7d374151b2b4b3a10c83b4ceb4be0e"
+checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
dependencies = [
"clap_builder",
"clap_derive",
@@ -2462,9 +2477,9 @@ dependencies = [
[[package]]
name = "clap_builder"
-version = "4.5.56"
+version = "4.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "793207c7fa6300a0608d1080b858e5fdbe713cdc1c8db9fb17777d8a13e63df0"
+checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
dependencies = [
"anstream",
"anstyle",
@@ -2474,21 +2489,21 @@ dependencies = [
[[package]]
name = "clap_derive"
-version = "4.5.55"
+version = "4.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
+checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
dependencies = [
"heck",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "clap_lex"
-version = "0.7.5"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
+checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
[[package]]
name = "cmake"
@@ -2505,7 +2520,7 @@ version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
dependencies = [
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -2535,7 +2550,7 @@ dependencies = [
"hmac",
"once_cell",
"pbkdf2",
- "rand 0.8.5",
+ "rand 0.8.7",
"sha2 0.10.9",
"thiserror 1.0.69",
]
@@ -2561,19 +2576,9 @@ dependencies = [
[[package]]
name = "colorchoice"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
-
-[[package]]
-name = "colored"
-version = "2.2.0"
+version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
-dependencies = [
- "lazy_static",
- "windows-sys 0.48.0",
-]
+checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
[[package]]
name = "combine"
@@ -2587,9 +2592,9 @@ dependencies = [
[[package]]
name = "compression-codecs"
-version = "0.4.32"
+version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "680dc087785c5230f8e8843e2e57ac7c1c90488b6a91b88caa265410568f441b"
+checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
dependencies = [
"brotli",
"compression-core",
@@ -2601,9 +2606,9 @@ dependencies = [
[[package]]
name = "compression-core"
-version = "0.4.31"
+version = "0.4.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
+checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
[[package]]
name = "concat-kdf"
@@ -2616,15 +2621,14 @@ dependencies = [
[[package]]
name = "const-hex"
-version = "1.14.1"
+version = "1.19.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83e22e0ed40b96a48d3db274f72fd365bd78f67af39b6bbd47e8a15e1c6207ff"
+checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558"
dependencies = [
- "cfg-if 1.0.1",
- "cpufeatures",
- "hex",
+ "cfg-if",
+ "cpufeatures 0.2.17",
"proptest",
- "serde",
+ "serde_core",
]
[[package]]
@@ -2633,6 +2637,12 @@ 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-str"
version = "0.4.3"
@@ -2641,11 +2651,12 @@ checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
[[package]]
name = "const_format"
-version = "0.2.34"
+version = "0.2.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd"
+checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e"
dependencies = [
"const_format_proc_macros",
+ "konst",
]
[[package]]
@@ -2659,26 +2670,17 @@ dependencies = [
"unicode-xid",
]
-[[package]]
-name = "const_panic"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652"
-dependencies = [
- "typewit",
-]
-
[[package]]
name = "constant_time_eq"
-version = "0.3.1"
+version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
+checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
[[package]]
name = "convert_case"
-version = "0.7.1"
+version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
+checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
dependencies = [
"unicode-segmentation",
]
@@ -2721,67 +2723,52 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
[[package]]
-name = "core2"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "core_extensions"
-version = "1.5.4"
+name = "cpufeatures"
+version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42bb5e5d0269fd4f739ea6cedaf29c16d81c27a7ce7582008e90eb50dcd57003"
+checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
dependencies = [
- "core_extensions_proc_macros",
+ "libc",
]
-[[package]]
-name = "core_extensions_proc_macros"
-version = "1.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "533d38ecd2709b7608fb8e18e4504deb99e9a72879e6aa66373a76d8dc4259ea"
-
[[package]]
name = "cpufeatures"
-version = "0.2.17"
+version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
+checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
dependencies = [
"libc",
]
[[package]]
name = "crc"
-version = "3.3.0"
+version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
+checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
-version = "2.4.0"
+version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
+checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
[[package]]
name = "crc32fast"
-version = "1.4.2"
+version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
+checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
]
[[package]]
name = "criterion"
-version = "0.8.1"
+version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4d883447757bb0ee46f233e9dc22eb84d93a9508c9b868687b274fc431d886bf"
+checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
dependencies = [
"alloca",
"anes",
@@ -2804,9 +2791,9 @@ dependencies = [
[[package]]
name = "criterion-plot"
-version = "0.8.1"
+version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed943f81ea2faa8dcecbbfa50164acf95d555afec96a27871663b300e387b2e4"
+checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
dependencies = [
"cast",
"itertools 0.13.0",
@@ -2833,18 +2820,18 @@ dependencies = [
[[package]]
name = "crossbeam-channel"
-version = "0.5.15"
+version = "0.5.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
+checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
-version = "0.8.6"
+version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
+checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
@@ -2852,33 +2839,33 @@ dependencies = [
[[package]]
name = "crossbeam-epoch"
-version = "0.9.18"
+version = "0.9.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
+checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-queue"
-version = "0.3.12"
+version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
+checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
-version = "0.8.21"
+version = "0.8.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
+checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
[[package]]
name = "crunchy"
-version = "0.2.3"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
+checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
[[package]]
name = "crypto-bigint"
@@ -2894,15 +2881,24 @@ dependencies = [
[[package]]
name = "crypto-common"
-version = "0.1.6"
+version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
+checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
dependencies = [
"generic-array",
"rand_core 0.6.4",
"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 = "ctor"
version = "0.5.0"
@@ -2928,32 +2924,14 @@ dependencies = [
"cipher",
]
-[[package]]
-name = "cuda-config"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ee74643f7430213a1a78320f88649de309b20b80818325575e393f848f79f5d"
-dependencies = [
- "glob",
-]
-
-[[package]]
-name = "cuda-driver-sys"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d4c552cc0de854877d80bcd1f11db75d42be32962d72a6799b88dcca88fffbd"
-dependencies = [
- "cuda-config",
-]
-
[[package]]
name = "curve25519-dalek"
version = "4.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
dependencies = [
- "cfg-if 1.0.1",
- "cpufeatures",
+ "cfg-if",
+ "cpufeatures 0.2.17",
"curve25519-dalek-derive",
"digest 0.10.7",
"fiat-crypto",
@@ -2970,7 +2948,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3004,7 +2982,7 @@ dependencies = [
"proc-macro2",
"quote",
"strsim",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3018,7 +2996,7 @@ dependencies = [
"quote",
"serde",
"strsim",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3029,7 +3007,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
dependencies = [
"darling_core 0.20.11",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3040,16 +3018,16 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
dependencies = [
"darling_core 0.23.0",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "dashmap"
-version = "6.1.0"
+version = "6.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
+checksum = "e6361d5c062261c78a176addb82d4c821ae42bed6089de0e12603cd25de2059c"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"crossbeam-utils",
"hashbrown 0.14.5",
"lock_api",
@@ -3061,15 +3039,15 @@ dependencies = [
[[package]]
name = "data-encoding"
-version = "2.9.0"
+version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
+checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
[[package]]
name = "data-encoding-macro"
-version = "0.1.18"
+version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d"
+checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c"
dependencies = [
"data-encoding",
"data-encoding-macro-internal",
@@ -3077,19 +3055,19 @@ dependencies = [
[[package]]
name = "data-encoding-macro-internal"
-version = "0.1.16"
+version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976"
+checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090"
dependencies = [
"data-encoding",
- "syn 2.0.102",
+ "syn 1.0.109",
]
[[package]]
name = "debug-helper"
-version = "0.3.13"
+version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f578e8e2c440e7297e008bb5486a3a8a194775224bbc23729b0dbdfaeebf162e"
+checksum = "80a4af69c60438a1a82af89d362f4729fd38db7b73f305a237636fad31ceb2bf"
[[package]]
name = "delay_map"
@@ -3108,17 +3086,16 @@ version = "0.7.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
dependencies = [
- "const-oid",
+ "const-oid 0.9.6",
"zeroize",
]
[[package]]
name = "deranged"
-version = "0.5.5"
+version = "0.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
+checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
dependencies = [
- "powerfmt",
"serde_core",
]
@@ -3141,7 +3118,7 @@ checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3152,18 +3129,18 @@ checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "derive-where"
-version = "1.6.0"
+version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
+checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3184,7 +3161,7 @@ dependencies = [
"darling 0.20.11",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3194,7 +3171,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
dependencies = [
"derive_builder_core",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -3208,11 +3185,11 @@ dependencies = [
[[package]]
name = "derive_more"
-version = "2.0.1"
+version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
+checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
dependencies = [
- "derive_more-impl 2.0.1",
+ "derive_more-impl 2.1.1",
]
[[package]]
@@ -3223,20 +3200,21 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
"unicode-xid",
]
[[package]]
name = "derive_more-impl"
-version = "2.0.1"
+version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
+checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
dependencies = [
"convert_case",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "rustc_version 0.4.1",
+ "syn 2.0.118",
"unicode-xid",
]
@@ -3278,18 +3256,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer 0.10.4",
- "const-oid",
- "crypto-common",
+ "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",
+]
+
[[package]]
name = "dirs-next"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"dirs-sys-next",
]
@@ -3306,9 +3295,9 @@ dependencies = [
[[package]]
name = "discv5"
-version = "0.10.2"
+version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f170f4f6ed0e1df52bf43b403899f0081917ecf1500bfe312505cc3b515a8899"
+checksum = "4c7999df38d0bd8f688212e1a4fae31fd2fea6d218649b9cd7c40bf3ec1318fc"
dependencies = [
"aes",
"aes-gcm",
@@ -3324,13 +3313,12 @@ dependencies = [
"hkdf",
"lazy_static",
"libp2p-identity",
- "lru 0.12.5",
"more-asserts",
"multiaddr",
"parking_lot",
- "rand 0.8.5",
+ "rand 0.8.7",
"smallvec",
- "socket2 0.5.10",
+ "socket2 0.6.5",
"tokio",
"tracing",
"uint 0.10.0",
@@ -3339,20 +3327,20 @@ dependencies = [
[[package]]
name = "displaydoc"
-version = "0.2.5"
+version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
+checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "doctest-file"
-version = "1.0.0"
+version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aac81fa3e28d21450aa4d2ac065992ba96a1d7303efbce51a95f4fd175b67562"
+checksum = "c2db04e74f0a9a93103b50e90b96024c9b2bdca8bce6a632ec71b88736d3d359"
[[package]]
name = "dotenv"
@@ -3368,9 +3356,9 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
[[package]]
name = "dtor"
-version = "0.1.0"
+version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934"
+checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
dependencies = [
"dtor-proc-macro",
]
@@ -3389,9 +3377,9 @@ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
[[package]]
name = "dyn-clone"
-version = "1.0.19"
+version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
+checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
[[package]]
name = "ecdsa"
@@ -3442,14 +3430,14 @@ dependencies = [
"enum-ordinalize",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "either"
-version = "1.15.0"
+version = "1.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
+checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
dependencies = [
"serde",
]
@@ -3498,7 +3486,7 @@ version = "0.8.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
]
[[package]]
@@ -3520,7 +3508,7 @@ dependencies = [
"hex",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"log",
- "rand 0.8.5",
+ "rand 0.8.7",
"secp256k1 0.30.0",
"serde",
"sha3",
@@ -3536,40 +3524,27 @@ dependencies = [
"heck",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "enum-ordinalize"
-version = "4.3.0"
+version = "4.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5"
+checksum = "07f808d588c10e464ea6f7d3eaed500049eff30aaac103460f61828c2d65b3eb"
dependencies = [
"enum-ordinalize-derive",
]
[[package]]
name = "enum-ordinalize-derive"
-version = "4.3.1"
+version = "4.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff"
+checksum = "42e528e2d34ba8a67a1a650b86beae8ef69fc5fdb638016f386b973226590432"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
-]
-
-[[package]]
-name = "env_logger"
-version = "0.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
-dependencies = [
- "atty",
- "humantime 1.3.0",
- "log",
- "regex",
- "termcolor",
+ "syn 2.0.118",
]
[[package]]
@@ -3580,12 +3555,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
[[package]]
name = "errno"
-version = "0.3.12"
+version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
+checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
dependencies = [
"libc",
- "windows-sys 0.59.0",
+ "windows-sys 0.52.0",
]
[[package]]
@@ -3617,16 +3592,16 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa93f58bb1eb3d1e556e4f408ef1dac130bad01ac37db4e7ade45de40d1c86a"
dependencies = [
- "cpufeatures",
+ "cpufeatures 0.2.17",
"ring",
"sha2 0.10.9",
]
[[package]]
name = "ethereum_serde_utils"
-version = "0.8.0"
+version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3dc1355dbb41fbbd34ec28d4fb2a57d9a70c67ac3c19f6a5ca4d4a176b9e997a"
+checksum = "38df44a7a271ab43835678f9215b53cc2523e4714a215da6643d83dc110245da"
dependencies = [
"alloy-primitives",
"hex",
@@ -3637,9 +3612,9 @@ dependencies = [
[[package]]
name = "ethereum_ssz"
-version = "0.10.3"
+version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "368a4a4e4273b0135111fe9464e35465067766a8f664615b5a86338b73864407"
+checksum = "e462875ad8693755ea8913d6e905715c76ea4836e2254e18c9cf0f7a8f8c2a13"
dependencies = [
"alloy-primitives",
"ethereum_serde_utils",
@@ -3652,14 +3627,25 @@ dependencies = [
[[package]]
name = "ethereum_ssz_derive"
-version = "0.10.3"
+version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f2cd82c68120c89361e1a457245cf212f7d9f541bffaffed530c8f2d54a160b2"
+checksum = "daf022360bdbe9456eda5f35718a50476d5b2a0d51a97ed4eae27420737a6fba"
dependencies = [
"darling 0.23.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
+]
+
+[[package]]
+name = "evmap"
+version = "11.0.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1b8874945f036109c72242964c1174cf99434e30cfa45bf45fedc983f50046f8"
+dependencies = [
+ "hashbag",
+ "left-right",
+ "smallvec",
]
[[package]]
@@ -3674,9 +3660,9 @@ dependencies = [
[[package]]
name = "fastrand"
-version = "2.3.0"
+version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
+checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
[[package]]
name = "fastrlp"
@@ -3746,9 +3732,9 @@ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
[[package]]
name = "fixed-cache"
-version = "0.1.8"
+version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c41c7aa69c00ebccf06c3fa7ffe2a6cf26a58b5fe4deabfe646285ff48136a8f"
+checksum = "2fe63500644ef0269fe6b744e7e5dc5c20b5eebf3d881bc2be53f194636f6583"
dependencies = [
"equivalent",
"rapidhash",
@@ -3762,7 +3748,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534"
dependencies = [
"byteorder",
- "rand 0.8.5",
+ "rand 0.8.7",
"rustc-hex",
"static_assertions",
]
@@ -3785,28 +3771,19 @@ checksum = "6dc7a9cb3326bafb80642c5ce99b39a2c0702d4bfa8ee8a3e773791a6cbe2407"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "flate2"
-version = "1.1.2"
+version = "1.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
+checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
dependencies = [
"crc32fast",
"miniz_oxide",
]
-[[package]]
-name = "flume"
-version = "0.10.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
-dependencies = [
- "spin 0.9.8",
-]
-
[[package]]
name = "fnv"
version = "1.0.7"
@@ -3842,9 +3819,9 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "form_urlencoded"
-version = "1.2.1"
+version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
+checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
dependencies = [
"percent-encoding",
]
@@ -3872,9 +3849,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
[[package]]
name = "futures"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
+checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
dependencies = [
"futures-channel",
"futures-core",
@@ -3887,9 +3864,9 @@ dependencies = [
[[package]]
name = "futures-channel"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
+checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
dependencies = [
"futures-core",
"futures-sink",
@@ -3897,15 +3874,15 @@ dependencies = [
[[package]]
name = "futures-core"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
+checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
[[package]]
name = "futures-executor"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
+checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
dependencies = [
"futures-core",
"futures-task",
@@ -3914,48 +3891,48 @@ dependencies = [
[[package]]
name = "futures-io"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
+checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
[[package]]
name = "futures-macro"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
+checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "futures-sink"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
+checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
[[package]]
name = "futures-task"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
+checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
[[package]]
name = "futures-timer"
-version = "3.0.3"
+version = "3.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
+checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
dependencies = [
"gloo-timers",
- "send_wrapper 0.4.0",
+ "send_wrapper",
]
[[package]]
name = "futures-util"
-version = "0.3.31"
+version = "0.3.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
+checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
dependencies = [
"futures-channel",
"futures-core",
@@ -3965,7 +3942,6 @@ dependencies = [
"futures-task",
"memchr",
"pin-project-lite",
- "pin-utils",
"slab",
]
@@ -3976,12 +3952,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42012b0f064e01aa58b545fe3727f90f7dd4020f4a3ea735b50344965f5a57e9"
[[package]]
-name = "generational-arena"
-version = "0.2.9"
+name = "generator"
+version = "0.8.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "877e94aff08e743b651baaea359664321055749b398adff8740a7399af7796e7"
+checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae"
dependencies = [
- "cfg-if 1.0.1",
+ "cc",
+ "cfg-if",
+ "libc",
+ "log",
+ "rustversion",
+ "windows-link",
+ "windows-result",
]
[[package]]
@@ -3997,54 +3979,52 @@ dependencies = [
[[package]]
name = "getrandom"
-version = "0.2.16"
+version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
+checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"js-sys",
"libc",
- "wasi 0.11.1+wasi-snapshot-preview1",
+ "wasi",
"wasm-bindgen",
]
[[package]]
name = "getrandom"
-version = "0.3.3"
+version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
+checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
dependencies = [
- "cfg-if 1.0.1",
- "js-sys",
+ "cfg-if",
"libc",
- "r-efi 5.2.0",
- "wasi 0.14.2+wasi-0.2.4",
- "wasm-bindgen",
+ "r-efi 5.3.0",
+ "wasip2",
]
[[package]]
name = "getrandom"
-version = "0.4.2"
+version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
+checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
+ "js-sys",
"libc",
"r-efi 6.0.0",
- "wasip2",
- "wasip3",
+ "rand_core 0.10.1",
+ "wasm-bindgen",
]
[[package]]
name = "getset"
-version = "0.1.5"
+version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3586f256131df87204eb733da72e3d3eb4f343c639f4b7be279ac7c48baeafe"
+checksum = "6cf442baaabe4213ce7d1239afc26c039180b6456da2cededa316ae2c8a77a77"
dependencies = [
- "proc-macro-error2",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -4059,29 +4039,9 @@ dependencies = [
[[package]]
name = "gimli"
-version = "0.31.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
-
-[[package]]
-name = "git-version"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19"
-dependencies = [
- "git-version-macro",
-]
-
-[[package]]
-name = "git-version-macro"
-version = "0.3.9"
+version = "0.32.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.102",
-]
+checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
[[package]]
name = "git2"
@@ -4089,7 +4049,7 @@ version = "0.20.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"libc",
"libgit2-sys",
"log",
@@ -4098,9 +4058,9 @@ dependencies = [
[[package]]
name = "glob"
-version = "0.3.2"
+version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
+checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
[[package]]
name = "gloo-net"
@@ -4112,7 +4072,7 @@ dependencies = [
"futures-core",
"futures-sink",
"gloo-utils",
- "http 1.3.1",
+ "http 1.4.2",
"js-sys",
"pin-project",
"serde",
@@ -4125,9 +4085,9 @@ dependencies = [
[[package]]
name = "gloo-timers"
-version = "0.2.6"
+version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
+checksum = "482ce8a491a501da4cd806bd190275363d674f2845005c6ddbd5d3e1dd54495d"
dependencies = [
"futures-channel",
"futures-core",
@@ -4150,12 +4110,12 @@ dependencies = [
[[package]]
name = "gmp-mpfr-sys"
-version = "1.7.0"
+version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8cfc928d8ff4ab3767a3674cf55f81186436fb6070866bb1443ffe65a640d2d6"
+checksum = "7db155b537cb791b133341f99f68371d86ee7fa4c79aacfbc376d72d23c70531"
dependencies = [
"libc",
- "windows-sys 0.61.1",
+ "windows-sys 0.61.2",
]
[[package]]
@@ -4177,7 +4137,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
dependencies = [
"ff 0.13.1",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_core 0.6.4",
"rand_xorshift 0.3.0",
"subtle",
@@ -4195,7 +4155,7 @@ dependencies = [
"futures-sink",
"futures-util",
"http 0.2.12",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"slab",
"tokio",
"tokio-util",
@@ -4204,17 +4164,17 @@ dependencies = [
[[package]]
name = "h2"
-version = "0.4.12"
+version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
+checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
dependencies = [
"atomic-waker",
"bytes",
"fnv",
"futures-core",
"futures-sink",
- "http 1.3.1",
- "indexmap 2.12.1",
+ "http 1.4.2",
+ "indexmap 2.14.0",
"slab",
"tokio",
"tokio-util",
@@ -4223,12 +4183,13 @@ dependencies = [
[[package]]
name = "half"
-version = "2.6.0"
+version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
+checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"crunchy",
+ "zerocopy",
]
[[package]]
@@ -4242,63 +4203,24 @@ dependencies = [
[[package]]
name = "halo2-axiom"
-version = "0.5.1"
+version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0aee3f8178b78275038e5ea0e2577140056d2c4c87fccaf6777dc0a8eebe455a"
+checksum = "2e73774df3e7c02556a7b7ba8ca06566e256da6a5946db024948b558710ce44a"
dependencies = [
"blake2b_simd",
"crossbeam",
"ff 0.13.1",
"group 0.13.0",
- "halo2curves-axiom 0.7.0",
+ "halo2curves-axiom 0.7.2",
"itertools 0.11.0",
"maybe-rayon",
"pairing 0.23.0",
- "rand 0.8.5",
- "rand_core 0.6.4",
- "rayon",
- "rustc-hash 1.1.0",
- "sha3",
- "tracing",
-]
-
-[[package]]
-name = "halo2-axiom-gpu"
-version = "1.0.0-rc.0"
-source = "git+https://github.com/axiom-crypto/halo2-gpu.git?tag=v1.0.0-rc.0#fa3d662335d8f913660460d443509a84d1f3242f"
-dependencies = [
- "ahash",
- "anyhow",
- "ark-std 0.3.0",
- "blake2b_simd",
- "cfg-if 0.1.10",
- "colored",
- "crossbeam",
- "cuda-driver-sys",
- "env_logger",
- "ff 0.13.1",
- "git-version",
- "group 0.13.0",
- "halo2curves-axiom 0.7.0",
- "itertools 0.11.0",
- "lazy_static",
- "libc",
- "log",
- "num-bigint",
- "num-integer",
- "once_cell",
- "openvm-cuda-builder",
- "openvm-cuda-common",
- "pairing 0.23.0",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_core 0.6.4",
"rayon",
- "rustacuda",
"rustc-hash 1.1.0",
"sha3",
- "subtle",
"tracing",
- "yastl",
]
[[package]]
@@ -4308,7 +4230,6 @@ source = "git+https://github.com/axiom-crypto/halo2-lib.git?tag=v0.5.2#b4031ae0a
dependencies = [
"getset",
"halo2-axiom",
- "halo2-axiom-gpu",
"itertools 0.11.0",
"log",
"num-bigint",
@@ -4332,7 +4253,7 @@ dependencies = [
"num-bigint",
"num-integer",
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_chacha 0.3.1",
"rand_core 0.6.4",
"rayon",
@@ -4357,9 +4278,9 @@ dependencies = [
[[package]]
name = "halo2curves-axiom"
-version = "0.7.0"
+version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd8309e4638b4f1bcf6613d72265a84074d26034c35edc5d605b5688e580b8b8"
+checksum = "b0cd39c0df23c8b72cb7158ccb106341b078d5019b5478b3bfdaf14e898177d3"
dependencies = [
"blake2b_simd",
"digest 0.10.7",
@@ -4372,7 +4293,7 @@ dependencies = [
"pairing 0.23.0",
"pasta_curves 0.5.1",
"paste",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_core 0.6.4",
"rayon",
"serde",
@@ -4385,8 +4306,8 @@ dependencies = [
[[package]]
name = "halo2curves-axiom"
-version = "0.7.2"
-source = "git+https://github.com/axiom-crypto/halo2curves.git?tag=v0.7.2#3a65a710e27fe03711f6fb4fc0c4469ae351974a"
+version = "0.7.3"
+source = "git+https://github.com/axiom-crypto/halo2curves.git?tag=v0.7.3#d744f712fbeaf62576b2b10842822919551c5ef8"
dependencies = [
"blake2b_simd",
"digest 0.10.7",
@@ -4399,7 +4320,7 @@ dependencies = [
"pairing 0.23.0",
"pasta_curves 0.5.1",
"paste",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_core 0.6.4",
"rayon",
"serde",
@@ -4410,6 +4331,12 @@ dependencies = [
"unroll",
]
+[[package]]
+name = "hashbag"
+version = "0.1.13"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7040a10f52cba493ddb09926e15d10a9d8a28043708a405931fe4c6f19fac064"
+
[[package]]
name = "hashbrown"
version = "0.12.3"
@@ -4433,9 +4360,9 @@ dependencies = [
[[package]]
name = "hashbrown"
-version = "0.15.4"
+version = "0.15.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
+checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
dependencies = [
"allocator-api2",
"equivalent",
@@ -4455,13 +4382,19 @@ dependencies = [
"serde_core",
]
+[[package]]
+name = "hashbrown"
+version = "0.17.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
+
[[package]]
name = "hashlink"
-version = "0.9.1"
+version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
+checksum = "824e001ac4f3012dd16a264bec811403a67ca9deb6c102fc5049b32c4574b35f"
dependencies = [
- "hashbrown 0.14.5",
+ "hashbrown 0.16.1",
]
[[package]]
@@ -4480,15 +4413,6 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
-[[package]]
-name = "hermit-abi"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-dependencies = [
- "libc",
-]
-
[[package]]
name = "hermit-abi"
version = "0.5.2"
@@ -4506,18 +4430,27 @@ dependencies = [
[[package]]
name = "hex-conservative"
-version = "0.2.1"
+version = "0.2.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
+dependencies = [
+ "arrayvec",
+]
+
+[[package]]
+name = "hex-conservative"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd"
+checksum = "830e599c2904b08f0834ee6337d8fe8f0ed4a63b5d9e7a7f49c0ffa06d08d360"
dependencies = [
"arrayvec",
]
[[package]]
name = "hex-literal"
-version = "1.0.0"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bcaaec4551594c969335c98c903c1397853d4198408ea609190f420500f6be71"
+checksum = "e712f64ec3850b98572bffac52e2c6f282b29fe6c5fa6d42334b30be438d95c1"
[[package]]
name = "hickory-proto"
@@ -4526,7 +4459,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
dependencies = [
"async-trait",
- "cfg-if 1.0.1",
+ "cfg-if",
"data-encoding",
"enum-as-inner",
"futures-channel",
@@ -4535,10 +4468,10 @@ dependencies = [
"idna",
"ipnet",
"once_cell",
- "rand 0.9.2",
+ "rand 0.9.5",
"ring",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tinyvec",
"tokio",
"tracing",
@@ -4551,18 +4484,18 @@ version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"futures-util",
"hickory-proto",
"ipconfig",
"moka",
"once_cell",
"parking_lot",
- "rand 0.9.2",
+ "rand 0.9.5",
"resolv-conf",
"serde",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -4598,34 +4531,33 @@ dependencies = [
[[package]]
name = "http"
-version = "1.3.1"
+version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
+checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
dependencies = [
"bytes",
- "fnv",
"itoa",
]
[[package]]
name = "http-body"
-version = "1.0.1"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
+checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c"
dependencies = [
"bytes",
- "http 1.3.1",
+ "http 1.4.2",
]
[[package]]
name = "http-body-util"
-version = "0.1.3"
+version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
+checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2"
dependencies = [
"bytes",
"futures-core",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"pin-project-lite",
]
@@ -4650,18 +4582,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "humantime"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
-dependencies = [
- "quick-error",
-]
-
-[[package]]
-name = "humantime"
-version = "2.3.0"
+version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
+checksum = "15cdd26707701c53297e2fa6afb323d55fbc1d0810c3aec078ae3ef0424c3c15"
[[package]]
name = "humantime-serde"
@@ -4669,21 +4592,31 @@ version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
dependencies = [
- "humantime 2.3.0",
+ "humantime",
"serde",
]
[[package]]
-name = "hyper"
-version = "1.6.0"
+name = "hybrid-array"
+version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
+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-util",
- "h2 0.4.12",
- "http 1.3.1",
+ "futures-core",
+ "h2 0.4.15",
+ "http 1.4.2",
"http-body",
"httparse",
"httpdate",
@@ -4696,17 +4629,16 @@ dependencies = [
[[package]]
name = "hyper-rustls"
-version = "0.27.7"
+version = "0.27.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
+checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
dependencies = [
- "http 1.3.1",
+ "http 1.4.2",
"hyper",
"hyper-util",
"log",
"rustls",
"rustls-native-certs",
- "rustls-pki-types",
"tokio",
"tokio-rustls",
"tower-service",
@@ -4743,23 +4675,22 @@ dependencies = [
[[package]]
name = "hyper-util"
-version = "0.1.14"
+version = "0.1.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc2fdfdbff08affe55bb779f33b053aa1fe5dd5b54c257343c17edfa55711bdb"
+checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
dependencies = [
"base64 0.22.1",
"bytes",
"futures-channel",
- "futures-core",
"futures-util",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"hyper",
"ipnet",
"libc",
"percent-encoding",
"pin-project-lite",
- "socket2 0.5.10",
+ "socket2 0.6.5",
"system-configuration",
"tokio",
"tower-service",
@@ -4769,9 +4700,9 @@ dependencies = [
[[package]]
name = "iana-time-zone"
-version = "0.1.63"
+version = "0.1.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
+checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
dependencies = [
"android_system_properties",
"core-foundation-sys",
@@ -4779,7 +4710,7 @@ dependencies = [
"js-sys",
"log",
"wasm-bindgen",
- "windows-core 0.61.2",
+ "windows-core",
]
[[package]]
@@ -4793,12 +4724,13 @@ dependencies = [
[[package]]
name = "icu_collections"
-version = "2.0.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
+checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
dependencies = [
"displaydoc",
"potential_utf",
+ "utf8_iter",
"yoke",
"zerofrom",
"zerovec",
@@ -4806,9 +4738,9 @@ dependencies = [
[[package]]
name = "icu_locale_core"
-version = "2.0.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
+checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
dependencies = [
"displaydoc",
"litemap",
@@ -4819,11 +4751,10 @@ dependencies = [
[[package]]
name = "icu_normalizer"
-version = "2.0.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
+checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
dependencies = [
- "displaydoc",
"icu_collections",
"icu_normalizer_data",
"icu_properties",
@@ -4834,42 +4765,38 @@ dependencies = [
[[package]]
name = "icu_normalizer_data"
-version = "2.0.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
+checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
[[package]]
name = "icu_properties"
-version = "2.0.1"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
+checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
dependencies = [
- "displaydoc",
"icu_collections",
"icu_locale_core",
"icu_properties_data",
"icu_provider",
- "potential_utf",
"zerotrie",
"zerovec",
]
[[package]]
name = "icu_properties_data"
-version = "2.0.1"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
+checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
[[package]]
name = "icu_provider"
-version = "2.0.0"
+version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
+checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
dependencies = [
"displaydoc",
"icu_locale_core",
- "stable_deref_trait",
- "tinystr",
"writeable",
"yoke",
"zerofrom",
@@ -4877,12 +4804,6 @@ dependencies = [
"zerovec",
]
-[[package]]
-name = "id-arena"
-version = "2.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
-
[[package]]
name = "ident_case"
version = "1.0.1"
@@ -4891,9 +4812,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
-version = "1.0.3"
+version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
+checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
dependencies = [
"idna_adapter",
"smallvec",
@@ -4902,9 +4823,9 @@ dependencies = [
[[package]]
name = "idna_adapter"
-version = "1.2.1"
+version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
+checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
dependencies = [
"icu_normalizer",
"icu_properties",
@@ -4929,7 +4850,7 @@ dependencies = [
"archery",
"bitmaps",
"imbl-sized-chunks",
- "rand_core 0.9.3",
+ "rand_core 0.9.5",
"rand_xoshiro",
"serde_core",
"version_check",
@@ -4956,9 +4877,9 @@ dependencies = [
[[package]]
name = "impl-more"
-version = "0.1.9"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
+checksum = "35a84fd5aa25fae5c0f4a33d9cac2ca017fc622cbd089be2229993514990f870"
[[package]]
name = "impl-trait-for-tuples"
@@ -4968,7 +4889,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -4992,9 +4913,9 @@ dependencies = [
[[package]]
name = "indenter"
-version = "0.3.3"
+version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
+checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5"
[[package]]
name = "indexmap"
@@ -5009,32 +4930,32 @@ dependencies = [
[[package]]
name = "indexmap"
-version = "2.12.1"
+version = "2.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
+checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
dependencies = [
"equivalent",
- "hashbrown 0.16.1",
+ "hashbrown 0.17.1",
"serde",
"serde_core",
]
[[package]]
name = "inotify"
-version = "0.11.0"
+version = "0.11.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f37dccff2791ab604f9babef0ba14fbe0be30bd368dc541e2b08d07c8aa908f3"
+checksum = "153be1941a183ec9ccd095ddbe17a8b8d435ef6c76e9e02451b933c3999af2c8"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
-version = "0.1.5"
+version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
+checksum = "c033f80b2c113cdf91ab7a33faa9cbc014726dcad99880c8609af2a370edf37d"
dependencies = [
"libc",
]
@@ -5051,9 +4972,9 @@ dependencies = [
[[package]]
name = "interprocess"
-version = "2.2.3"
+version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d941b405bd2322993887859a8ee6ac9134945a24ec5ec763a8a962fc64dfec2d"
+checksum = "069323743400cb7ab06a8fe5c1ed911d36b6919ec531661d034c89083629595b"
dependencies = [
"doctest-file",
"futures-core",
@@ -5061,42 +4982,33 @@ dependencies = [
"recvmsg",
"tokio",
"widestring",
- "windows-sys 0.52.0",
+ "windows-sys 0.61.2",
]
[[package]]
name = "ipconfig"
-version = "0.3.2"
+version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
+checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
dependencies = [
- "socket2 0.5.10",
+ "socket2 0.6.5",
"widestring",
- "windows-sys 0.48.0",
- "winreg",
+ "windows-registry",
+ "windows-result",
+ "windows-sys 0.61.2",
]
[[package]]
name = "ipnet"
-version = "2.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
-
-[[package]]
-name = "iri-string"
-version = "0.7.8"
+version = "2.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
-dependencies = [
- "memchr",
- "serde",
-]
+checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
[[package]]
name = "is_terminal_polyfill"
-version = "1.70.1"
+version = "1.70.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
+checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
[[package]]
name = "itertools"
@@ -5136,9 +5048,9 @@ dependencies = [
[[package]]
name = "itoa"
-version = "1.0.15"
+version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
+checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
[[package]]
name = "jni"
@@ -5147,9 +5059,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
dependencies = [
"cesu8",
- "cfg-if 1.0.1",
+ "cfg-if",
"combine",
- "jni-sys 0.3.0",
+ "jni-sys 0.3.1",
"log",
"thiserror 1.0.69",
"walkdir",
@@ -5162,15 +5074,15 @@ version = "0.22.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"combine",
"jni-macros",
"jni-sys 0.4.1",
"log",
"simd_cesu8",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"walkdir",
- "windows-link 0.2.0",
+ "windows-link",
]
[[package]]
@@ -5183,14 +5095,17 @@ dependencies = [
"quote",
"rustc_version 0.4.1",
"simd_cesu8",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "jni-sys"
-version = "0.3.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
+checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
+dependencies = [
+ "jni-sys 0.4.1",
+]
[[package]]
name = "jni-sys"
@@ -5208,28 +5123,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
dependencies = [
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "jobserver"
-version = "0.1.33"
+version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
+checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
dependencies = [
- "getrandom 0.3.3",
+ "getrandom 0.4.3",
"libc",
]
[[package]]
name = "js-sys"
-version = "0.3.97"
+version = "0.3.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1840c94c045fbcf8ba2812c95db44499f7c64910a912551aaaa541decebcacf"
+checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"futures-util",
- "once_cell",
"wasm-bindgen",
]
@@ -5261,14 +5175,14 @@ dependencies = [
"futures-channel",
"futures-util",
"gloo-net",
- "http 1.3.1",
+ "http 1.4.2",
"jsonrpsee-core",
"pin-project",
"rustls",
"rustls-pki-types",
"rustls-platform-verifier 0.5.3",
"soketto",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-rustls",
"tokio-util",
@@ -5286,17 +5200,17 @@ dependencies = [
"bytes",
"futures-timer",
"futures-util",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"http-body-util",
"jsonrpsee-types",
"parking_lot",
"pin-project",
- "rand 0.9.2",
- "rustc-hash 2.1.1",
+ "rand 0.9.5",
+ "rustc-hash 2.1.3",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tower",
@@ -5321,7 +5235,7 @@ dependencies = [
"rustls-platform-verifier 0.5.3",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tower",
"url",
@@ -5334,10 +5248,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2da3f8ab5ce1bb124b6d082e62dffe997578ceaf0aeb9f3174a214589dc00f07"
dependencies = [
"heck",
- "proc-macro-crate 3.3.0",
+ "proc-macro-crate 3.5.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -5347,7 +5261,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c51b7c290bb68ce3af2d029648148403863b982f138484a73f02a9dd52dbd7f"
dependencies = [
"futures-util",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"http-body-util",
"hyper",
@@ -5359,7 +5273,7 @@ dependencies = [
"serde",
"serde_json",
"soketto",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -5373,10 +5287,10 @@ version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc88ff4688e43cc3fa9883a8a95c6fa27aa2e76c96e610b737b6554d650d7fd5"
dependencies = [
- "http 1.3.1",
+ "http 1.4.2",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -5397,7 +5311,7 @@ version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b6fceceeb05301cc4c065ab3bd2fa990d41ff4eb44e4ca1b30fa99c057c3e79"
dependencies = [
- "http 1.3.1",
+ "http 1.4.2",
"jsonrpsee-client-transport",
"jsonrpsee-core",
"jsonrpsee-types",
@@ -5407,19 +5321,20 @@ dependencies = [
[[package]]
name = "jsonwebtoken"
-version = "10.3.0"
+version = "10.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
+checksum = "eba32bfb4ffdeaca3e34431072faf01745c9b26d25504aa7a6cf5684334fc4fc"
dependencies = [
"aws-lc-rs",
"base64 0.22.1",
- "getrandom 0.2.16",
+ "getrandom 0.2.17",
"js-sys",
"pem",
"serde",
"serde_json",
"signature",
"simple_asn1",
+ "zeroize",
]
[[package]]
@@ -5442,7 +5357,7 @@ version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"ecdsa",
"elliptic-curve",
"once_cell",
@@ -5454,7 +5369,7 @@ dependencies = [
[[package]]
name = "k256"
version = "0.13.4"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"ecdsa",
"elliptic-curve",
@@ -5471,28 +5386,43 @@ dependencies = [
[[package]]
name = "keccak"
-version = "0.1.5"
+version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654"
+checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
dependencies = [
- "cpufeatures",
+ "cpufeatures 0.2.17",
]
[[package]]
name = "keccak-asm"
-version = "0.1.6"
+version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa468878266ad91431012b3e5ef1bf9b170eab22883503a318d46857afa4579a"
+checksum = "dd5dc2c0d691cbf7595cde551ced329cca99c2387c2cbc97754c5d0cd045d3ee"
dependencies = [
"digest 0.10.7",
"sha3-asm",
]
+[[package]]
+name = "konst"
+version = "0.2.20"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb"
+dependencies = [
+ "konst_macro_rules",
+]
+
+[[package]]
+name = "konst_macro_rules"
+version = "0.2.19"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37"
+
[[package]]
name = "kqueue"
-version = "1.1.1"
+version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a"
+checksum = "273c0752728918e0ac4976f2b275b6fefb9ecd400585dec929419f3844cd87b5"
dependencies = [
"kqueue-sys",
"libc",
@@ -5500,11 +5430,11 @@ dependencies = [
[[package]]
name = "kqueue-sys"
-version = "1.0.4"
+version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b"
+checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
dependencies = [
- "bitflags 1.3.2",
+ "bitflags",
"libc",
]
@@ -5520,14 +5450,19 @@ version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
dependencies = [
- "spin 0.9.8",
+ "spin 0.9.9",
]
[[package]]
-name = "leb128fmt"
-version = "0.1.0"
+name = "left-right"
+version = "0.11.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
+checksum = "0f0c21e4c8ff95f487fb34e6f9182875f42c84cef966d29216bf115d9bba835a"
+dependencies = [
+ "crossbeam-utils",
+ "loom",
+ "slab",
+]
[[package]]
name = "libc"
@@ -5537,9 +5472,9 @@ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
[[package]]
name = "libgit2-sys"
-version = "0.18.3+1.9.2"
+version = "0.18.5+1.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c9b3acc4b91781bb0b3386669d325163746af5f6e4f73e6d2d630e09a35f3487"
+checksum = "005d6ae6eac1912906073e069f7db60b1fa98e052a68227824afe3e3a1c59ca2"
dependencies = [
"cc",
"libc",
@@ -5547,47 +5482,36 @@ dependencies = [
"pkg-config",
]
-[[package]]
-name = "libloading"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
-dependencies = [
- "cfg-if 1.0.1",
- "winapi",
-]
-
[[package]]
name = "libloading"
version = "0.8.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
dependencies = [
- "cfg-if 1.0.1",
- "windows-link 0.2.0",
+ "cfg-if",
+ "windows-link",
]
[[package]]
name = "libm"
-version = "0.2.15"
+version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
+checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
[[package]]
name = "libmimalloc-sys"
-version = "0.1.42"
+version = "0.1.49"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec9d6fac27761dabcd4ee73571cdb06b7022dc99089acbe5435691edffaac0f4"
+checksum = "6a45a52f43e1c16f667ccfe4dd8c85b7f7c204fd5e3bf46c5b0db9a5c3c0b8e9"
dependencies = [
"cc",
- "libc",
]
[[package]]
name = "libp2p-identity"
-version = "0.2.13"
+version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0c7892c221730ba55f7196e98b0b8ba5e04b4155651736036628e9f73ed6fc3"
+checksum = "9525f3831544f7ae497bde79adf114ef127b0fbbb97edbbf692a80408636421c"
dependencies = [
"asn1_der",
"bs58",
@@ -5595,31 +5519,30 @@ dependencies = [
"hkdf",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"multihash",
- "quick-protobuf",
+ "prost",
"sha2 0.10.9",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
"zeroize",
]
[[package]]
name = "libproc"
-version = "0.14.10"
+version = "0.14.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e78a09b56be5adbcad5aa1197371688dc6bb249a26da3bca2011ee2fb987ebfb"
+checksum = "a54ad7278b8bc5301d5ffd2a94251c004feb971feba96c971ea4063645990757"
dependencies = [
- "bindgen 0.70.1",
+ "bindgen",
"errno",
"libc",
]
[[package]]
name = "libredox"
-version = "0.1.3"
+version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
+checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652"
dependencies = [
- "bitflags 2.10.0",
"libc",
]
@@ -5629,7 +5552,7 @@ version = "0.17.3+10.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9"
dependencies = [
- "bindgen 0.72.1",
+ "bindgen",
"bzip2-sys",
"cc",
"libc",
@@ -5650,7 +5573,7 @@ dependencies = [
"libsecp256k1-core",
"libsecp256k1-gen-ecmult",
"libsecp256k1-gen-genmult",
- "rand 0.8.5",
+ "rand 0.8.7",
"serde",
"sha2 0.9.9",
]
@@ -5686,9 +5609,9 @@ dependencies = [
[[package]]
name = "libz-sys"
-version = "1.1.23"
+version = "1.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7"
+checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9"
dependencies = [
"cc",
"libc",
@@ -5714,15 +5637,15 @@ dependencies = [
[[package]]
name = "linux-raw-sys"
-version = "0.9.4"
+version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
+checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
[[package]]
name = "litemap"
-version = "0.8.0"
+version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
+checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
[[package]]
name = "local-channel"
@@ -5743,11 +5666,10 @@ checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
[[package]]
name = "lock_api"
-version = "0.4.13"
+version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
+checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
dependencies = [
- "autocfg",
"scopeguard",
"serde",
]
@@ -5760,9 +5682,22 @@ checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
[[package]]
name = "log"
-version = "0.4.27"
+version = "0.4.33"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
+
+[[package]]
+name = "loom"
+version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
+checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
+dependencies = [
+ "cfg-if",
+ "generator",
+ "scoped-tls",
+ "tracing",
+ "tracing-subscriber 0.3.23",
+]
[[package]]
name = "lru"
@@ -5770,14 +5705,14 @@ version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
dependencies = [
- "hashbrown 0.15.4",
+ "hashbrown 0.15.5",
]
[[package]]
name = "lru"
-version = "0.16.3"
+version = "0.16.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
+checksum = "7f66e8d5d03f609abc3a39e6f08e4164ebf1447a732906d39eb9b99b7919ef39"
dependencies = [
"hashbrown 0.16.1",
]
@@ -5800,9 +5735,9 @@ dependencies = [
[[package]]
name = "lz4_flex"
-version = "0.12.1"
+version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "98c23545df7ecf1b16c303910a69b079e8e251d60f7dd2cc9b4177f2afaf1746"
+checksum = "90071f8077f8e40adfc4b7fe9cd495ce316263f19e75c2211eeff3fdf475a3d9"
[[package]]
name = "mach2"
@@ -5813,6 +5748,12 @@ dependencies = [
"libc",
]
+[[package]]
+name = "mach2"
+version = "0.6.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "dae608c151f68243f2b000364e1f7b186d9c29845f7d2d85bd31b9ad77ad552b"
+
[[package]]
name = "macro-string"
version = "0.1.4"
@@ -5821,7 +5762,7 @@ checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -5832,7 +5773,7 @@ checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -5860,21 +5801,21 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"rayon",
]
[[package]]
name = "memchr"
-version = "2.7.5"
+version = "2.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
+checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
[[package]]
name = "memmap2"
-version = "0.9.9"
+version = "0.9.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
+checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0"
dependencies = [
"libc",
]
@@ -5897,53 +5838,54 @@ dependencies = [
[[package]]
name = "metrics"
-version = "0.24.3"
+version = "0.24.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8"
+checksum = "89550ee9f79e88fef3119de263694973a8adb26c21d75322164fb8c493039fe2"
dependencies = [
- "ahash",
"portable-atomic",
+ "rapidhash",
]
[[package]]
name = "metrics-derive"
-version = "0.1.1"
+version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37a87f4b19620e4c561f7b48f5e6ca085b1780def671696a6a3d9d0c137360ec"
+checksum = "161ab904c2c62e7bda0f7562bf22f96440ca35ff79e66c800cbac298f2f4f5ec"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "metrics-exporter-prometheus"
-version = "0.18.1"
+version = "0.18.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3589659543c04c7dc5526ec858591015b87cd8746583b51b48ef4353f99dbcda"
+checksum = "1db0d8f1fc9e62caebd0319e11eaec5822b0186c171568f0480b46a0137f9108"
dependencies = [
"base64 0.22.1",
- "indexmap 2.12.1",
- "metrics 0.24.3",
- "metrics-util 0.20.1",
+ "evmap",
+ "indexmap 2.14.0",
+ "metrics 0.24.6",
+ "metrics-util 0.20.4",
"quanta",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
name = "metrics-process"
-version = "2.4.2"
+version = "2.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f615e08e049bd14a44c4425415782efb9bcd479fc1e19ddeb971509074c060d0"
+checksum = "4268d87f64a752f5a651314fc683f04da10be65701ea3e721ba4d74f79163cac"
dependencies = [
"libc",
"libproc",
- "mach2",
- "metrics 0.24.3",
+ "mach2 0.6.0",
+ "metrics 0.24.6",
"once_cell",
"procfs",
"rlimit",
- "windows 0.62.1",
+ "windows",
]
[[package]]
@@ -5952,7 +5894,7 @@ version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62a6a1f7141f1d9bc7a886b87536bbfc97752e08b369e1e0453a9acfab5f5da4"
dependencies = [
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"itoa",
"lockfree-object-pool",
"metrics 0.23.1",
@@ -5960,7 +5902,7 @@ dependencies = [
"once_cell",
"tracing",
"tracing-core",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -5973,7 +5915,7 @@ dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
"hashbrown 0.14.5",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"metrics 0.23.1",
"num_cpus",
"ordered-float",
@@ -5984,25 +5926,26 @@ dependencies = [
[[package]]
name = "metrics-util"
-version = "0.20.1"
+version = "0.20.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cdfb1365fea27e6dd9dc1dbc19f570198bc86914533ad639dae939635f096be4"
+checksum = "96f8722f8562635f92f8ed992f26df0532266eb03d5202607c20c0d7e9745e13"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
"hashbrown 0.16.1",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"quanta",
- "rand 0.9.2",
+ "rand 0.9.5",
"rand_xoshiro",
- "sketches-ddsketch 0.3.0",
+ "rapidhash",
+ "sketches-ddsketch 0.3.1",
]
[[package]]
name = "mimalloc"
-version = "0.1.46"
+version = "0.1.52"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "995942f432bbb4822a7e9c3faa87a695185b0d09273ba85f097b54f4e458f2af"
+checksum = "2d4139bb28d14ad1facf21d5eb8825051b326e172d216b39f6d31df53cc97862"
dependencies = [
"libmimalloc-sys",
]
@@ -6036,6 +5979,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
dependencies = [
"adler2",
+ "simd-adler32",
]
[[package]]
@@ -6046,14 +5990,14 @@ checksum = "c505b3e17ed6b70a7ed2e67fbb2c560ee327353556120d6e72f5232b6880d536"
[[package]]
name = "mio"
-version = "1.2.0"
+version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
+checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427"
dependencies = [
"libc",
"log",
- "wasi 0.11.1+wasi-snapshot-preview1",
- "windows-sys 0.61.1",
+ "wasi",
+ "windows-sys 0.61.2",
]
[[package]]
@@ -6074,14 +6018,14 @@ checksum = "59b43b4fd69e3437618106f7754f34021b831a514f9e1a98ae863cabcd8d8dad"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "moka"
-version = "0.12.13"
+version = "0.12.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e"
+checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
dependencies = [
"crossbeam-channel",
"crossbeam-epoch",
@@ -6121,23 +6065,23 @@ dependencies = [
[[package]]
name = "multibase"
-version = "0.9.2"
+version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
+checksum = "7e0e4a371cbf1dfd666b658ba137763edb23c45beb43cfe369b5593cd6b437b6"
dependencies = [
"base-x",
"base256emoji",
+ "base45",
"data-encoding",
"data-encoding-macro",
]
[[package]]
name = "multihash"
-version = "0.19.3"
+version = "0.19.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
+checksum = "577c63b00ad74d57e8c9aa870b5fccebf2fd64a308a5aee9f1bb88e4aea19447"
dependencies = [
- "core2",
"unsigned-varint",
]
@@ -6149,9 +6093,9 @@ checksum = "e94e1e6445d314f972ff7395df2de295fe51b71821694f0b0e1e79c4f12c8577"
[[package]]
name = "native-tls"
-version = "0.2.14"
+version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
+checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
dependencies = [
"libc",
"log",
@@ -6159,7 +6103,7 @@ dependencies = [
"openssl-probe",
"openssl-sys",
"schannel",
- "security-framework 2.11.1",
+ "security-framework",
"security-framework-sys",
"tempfile",
]
@@ -6194,8 +6138,8 @@ version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
dependencies = [
- "bitflags 2.10.0",
- "cfg-if 1.0.1",
+ "bitflags",
+ "cfg-if",
"cfg_aliases",
"libc",
]
@@ -6216,7 +6160,7 @@ version = "8.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d3d07927151ff8575b7087f245456e549fea62edf0ec4e565a5ee50c8402bc3"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"fsevent-sys",
"inotify",
"kqueue",
@@ -6234,25 +6178,25 @@ version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42b8cfee0e339a0337359f3c88165702ac6e600dc01c0cc9579a92d62b08477a"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
]
[[package]]
name = "ntapi"
-version = "0.4.2"
+version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081"
+checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae"
dependencies = [
"winapi",
]
[[package]]
name = "nu-ansi-term"
-version = "0.50.1"
+version = "0.50.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
+checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
dependencies = [
- "windows-sys 0.52.0",
+ "windows-sys 0.59.0",
]
[[package]]
@@ -6271,13 +6215,13 @@ dependencies = [
[[package]]
name = "num-bigint"
-version = "0.4.6"
+version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
+checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
dependencies = [
"num-integer",
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
"serde",
]
@@ -6292,9 +6236,9 @@ dependencies = [
[[package]]
name = "num-conv"
-version = "0.2.0"
+version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
+checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
[[package]]
name = "num-integer"
@@ -6307,11 +6251,10 @@ dependencies = [
[[package]]
name = "num-iter"
-version = "0.1.45"
+version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
+checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b"
dependencies = [
- "autocfg",
"num-integer",
"num-traits",
]
@@ -6340,7 +6283,7 @@ dependencies = [
"num-integer",
"num-modular",
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
]
[[package]]
@@ -6370,7 +6313,7 @@ version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
dependencies = [
- "hermit-abi 0.5.2",
+ "hermit-abi",
"libc",
]
@@ -6390,10 +6333,10 @@ version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
dependencies = [
- "proc-macro-crate 3.3.0",
+ "proc-macro-crate 3.5.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -6434,7 +6377,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d49ff0c0d00d4a502b39df9af3a525e1efeb14b9dabb5bb83335284c1309210"
dependencies = [
"alloy-rlp",
- "cfg-if 1.0.1",
+ "cfg-if",
"proptest",
"ruint",
"serde",
@@ -6447,7 +6390,7 @@ version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
]
[[package]]
@@ -6462,18 +6405,18 @@ dependencies = [
[[package]]
name = "object"
-version = "0.36.7"
+version = "0.37.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
+checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
-version = "1.21.3"
+version = "1.21.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
+checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
dependencies = [
"critical-section",
"portable-atomic",
@@ -6481,9 +6424,9 @@ dependencies = [
[[package]]
name = "once_cell_polyfill"
-version = "1.70.1"
+version = "1.70.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
+checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
[[package]]
name = "oorandom"
@@ -6499,15 +6442,14 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "openssl"
-version = "0.10.73"
+version = "0.10.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
+checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45"
dependencies = [
- "bitflags 2.10.0",
- "cfg-if 1.0.1",
+ "bitflags",
+ "cfg-if",
"foreign-types",
"libc",
- "once_cell",
"openssl-macros",
"openssl-sys",
]
@@ -6520,20 +6462,20 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openssl-probe"
-version = "0.1.6"
+version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
+checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
[[package]]
name = "openssl-sys"
-version = "0.9.109"
+version = "0.9.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
+checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695"
dependencies = [
"cc",
"libc",
@@ -6551,7 +6493,7 @@ dependencies = [
"futures-sink",
"js-sys",
"pin-project-lite",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -6563,25 +6505,25 @@ checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
dependencies = [
"async-trait",
"bytes",
- "http 1.3.1",
+ "http 1.4.2",
"opentelemetry",
- "reqwest 0.12.20",
+ "reqwest 0.12.28",
]
[[package]]
name = "opentelemetry-otlp"
-version = "0.31.0"
+version = "0.31.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a2366db2dca4d2ad033cad11e6ee42844fd727007af5ad04a1730f4cb8163bf"
+checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f"
dependencies = [
- "http 1.3.1",
+ "http 1.4.2",
"opentelemetry",
"opentelemetry-http",
"opentelemetry-proto",
"opentelemetry_sdk",
"prost",
- "reqwest 0.12.20",
- "thiserror 2.0.12",
+ "reqwest 0.12.28",
+ "thiserror 2.0.18",
"tokio",
"tonic",
"tracing",
@@ -6617,14 +6559,14 @@ dependencies = [
"futures-util",
"opentelemetry",
"percent-encoding",
- "rand 0.9.2",
- "thiserror 2.0.12",
+ "rand 0.9.5",
+ "thiserror 2.0.18",
]
[[package]]
name = "openvm"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"bytemuck",
"num-bigint",
@@ -6637,14 +6579,14 @@ dependencies = [
[[package]]
name = "openvm-algebra-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"blstrs",
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
"eyre",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"num-bigint",
"num-traits",
"once_cell",
@@ -6663,7 +6605,7 @@ dependencies = [
"openvm-riscv-circuit",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-algebra",
"rvr-openvm-lift",
"serde",
@@ -6674,19 +6616,19 @@ dependencies = [
[[package]]
name = "openvm-algebra-complex-macros"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-macros-common",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-algebra-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"num-bigint",
"once_cell",
"openvm-algebra-complex-macros",
@@ -6700,19 +6642,19 @@ dependencies = [
[[package]]
name = "openvm-algebra-moduli-macros"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"num-bigint",
"num-prime",
"openvm-macros-common",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-algebra-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-algebra-guest",
"openvm-decoder",
@@ -6726,19 +6668,19 @@ dependencies = [
[[package]]
name = "openvm-algebra-utils"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"num-bigint",
"num-traits",
- "rand 0.9.2",
+ "rand 0.9.5",
]
[[package]]
name = "openvm-bigint-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
"openvm-bigint-transpiler",
@@ -6756,7 +6698,7 @@ dependencies = [
"openvm-riscv-transpiler",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-bigint",
"rvr-openvm-lift",
"serde",
@@ -6765,7 +6707,7 @@ dependencies = [
[[package]]
name = "openvm-bigint-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-platform",
"strum_macros 0.26.4",
@@ -6774,7 +6716,7 @@ dependencies = [
[[package]]
name = "openvm-bigint-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-bigint-guest",
"openvm-decoder",
@@ -6789,7 +6731,7 @@ dependencies = [
[[package]]
name = "openvm-build"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"cargo_metadata 0.18.1",
"eyre",
@@ -6811,12 +6753,11 @@ dependencies = [
[[package]]
name = "openvm-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "abi_stable",
"backtrace",
"bytesize",
- "cfg-if 1.0.1",
+ "cfg-if",
"dashmap",
"derive-new 0.6.0",
"derive_more 1.0.0",
@@ -6824,7 +6765,7 @@ dependencies = [
"getset",
"itertools 0.14.0",
"libc",
- "libloading 0.8.9",
+ "libloading",
"memmap2",
"metrics 0.23.1",
"openvm-circuit-derive",
@@ -6841,8 +6782,8 @@ dependencies = [
"openvm-stark-sdk",
"p3-baby-bear",
"p3-field",
- "rand 0.9.2",
- "rustc-hash 2.1.1",
+ "rand 0.9.5",
+ "rustc-hash 2.1.3",
"rvr-openvm",
"rvr-openvm-ext-ffi-common",
"rvr-openvm-ir",
@@ -6859,18 +6800,18 @@ dependencies = [
[[package]]
name = "openvm-circuit-derive"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"itertools 0.14.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-circuit-primitives"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"derive-new 0.6.0",
"itertools 0.14.0",
@@ -6882,7 +6823,7 @@ dependencies = [
"openvm-cuda-builder",
"openvm-cuda-common",
"openvm-stark-backend",
- "rand 0.9.2",
+ "rand 0.9.5",
"struct-reflection",
"tracing",
]
@@ -6890,33 +6831,35 @@ dependencies = [
[[package]]
name = "openvm-circuit-primitives-derive"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"itertools 0.14.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-codec-derive"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
"proc-macro-crate 1.3.1",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-continuations"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
+ "derivative",
"derive-new 0.6.0",
"eyre",
+ "hex",
"itertools 0.14.0",
"num-bigint",
"openvm-circuit",
@@ -6934,15 +6877,16 @@ dependencies = [
"p3-bn254",
"p3-field",
"p3-matrix",
+ "serde",
"tracing",
]
[[package]]
name = "openvm-cpu-backend"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.7.0",
"getset",
"itertools 0.14.0",
@@ -6956,7 +6900,7 @@ dependencies = [
"p3-maybe-rayon",
"p3-util",
"rayon",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"serde",
"thiserror 1.0.69",
"tracing",
@@ -6964,8 +6908,8 @@ dependencies = [
[[package]]
name = "openvm-cuda-backend"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
"derive-new 0.7.0",
"getset",
@@ -6981,18 +6925,18 @@ dependencies = [
"p3-field",
"p3-symmetric",
"p3-util",
- "rand 0.9.2",
- "rustc-hash 2.1.1",
+ "rand 0.9.5",
+ "rustc-hash 2.1.3",
"serde",
"thiserror 1.0.69",
"tracing",
- "zkhash",
+ "zkhash-axiom",
]
[[package]]
name = "openvm-cuda-builder"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
"cc",
"glob",
@@ -7000,8 +6944,8 @@ dependencies = [
[[package]]
name = "openvm-cuda-common"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
"bytesize",
"ctor",
@@ -7028,24 +6972,24 @@ dependencies = [
[[package]]
name = "openvm-custom-insn"
version = "0.1.0"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-decoder"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
[[package]]
name = "openvm-deferral-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"dashmap",
"derive-new 0.6.0",
"derive_more 1.0.0",
@@ -7065,8 +7009,8 @@ dependencies = [
"openvm-stark-backend",
"openvm-stark-sdk",
"p3-field",
- "rand 0.9.2",
- "rustc-hash 2.1.1",
+ "rand 0.9.5",
+ "rustc-hash 2.1.3",
"rvr-openvm-ext-deferral",
"rvr-openvm-ext-ffi-common",
"rvr-openvm-lift",
@@ -7076,7 +7020,7 @@ dependencies = [
[[package]]
name = "openvm-deferral-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-custom-insn",
"strum_macros 0.26.4",
@@ -7085,7 +7029,7 @@ dependencies = [
[[package]]
name = "openvm-deferral-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"eyre",
"openvm-deferral-guest",
@@ -7101,13 +7045,13 @@ dependencies = [
[[package]]
name = "openvm-ecc-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"blstrs",
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"hex-literal",
"lazy_static",
"num-bigint",
@@ -7127,7 +7071,7 @@ dependencies = [
"openvm-riscv-circuit",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-ecc",
"rvr-openvm-lift",
"serde",
@@ -7138,12 +7082,12 @@ dependencies = [
[[package]]
name = "openvm-ecc-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"ecdsa",
"elliptic-curve",
"group 0.13.0",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"once_cell",
"openvm",
"openvm-algebra-guest",
@@ -7157,17 +7101,17 @@ dependencies = [
[[package]]
name = "openvm-ecc-sw-macros"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-macros-common",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-ecc-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-decoder",
"openvm-ecc-guest",
@@ -7181,7 +7125,7 @@ dependencies = [
[[package]]
name = "openvm-instructions"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"backtrace",
"derive-new 0.6.0",
@@ -7198,26 +7142,26 @@ dependencies = [
[[package]]
name = "openvm-instructions-derive"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-keccak256"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-keccak256-guest",
- "spin 0.10.0",
+ "spin 0.10.1",
"tiny-keccak",
]
[[package]]
name = "openvm-keccak256-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"derive-new 0.6.0",
"derive_more 1.0.0",
@@ -7236,7 +7180,7 @@ dependencies = [
"openvm-stark-backend",
"openvm-stark-sdk",
"p3-keccak-air",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-keccak",
"rvr-openvm-lift",
"serde",
@@ -7247,7 +7191,7 @@ dependencies = [
[[package]]
name = "openvm-keccak256-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-platform",
]
@@ -7255,7 +7199,7 @@ dependencies = [
[[package]]
name = "openvm-keccak256-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-decoder",
"openvm-instructions",
@@ -7282,26 +7226,27 @@ dependencies = [
"openvm-kzg",
"openvm-pairing",
"openvm-sdk",
+ "openvm-sdk-config",
"openvm-stark-sdk",
"serde",
"serde-big-array",
"serde_yaml",
- "spin 0.10.0",
- "toml 0.9.5",
+ "spin 0.10.1",
+ "toml 0.9.12+spec-1.1.0",
]
[[package]]
name = "openvm-macros-common"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "openvm-mod-circuit-builder"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"itertools 0.14.0",
"num-bigint",
@@ -7311,8 +7256,8 @@ dependencies = [
"openvm-instructions",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.8.5",
- "rand 0.9.2",
+ "rand 0.8.7",
+ "rand 0.9.5",
"tracing",
]
@@ -7329,7 +7274,7 @@ dependencies = [
"revm-primitives 23.0.0",
"serde",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -7352,17 +7297,17 @@ dependencies = [
"reth-primitives-traits",
"reth-revm",
"tokio",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
"url",
]
[[package]]
name = "openvm-pairing"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"group 0.13.0",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"hex-literal",
"itertools 0.14.0",
"num-bigint",
@@ -7383,13 +7328,13 @@ dependencies = [
[[package]]
name = "openvm-pairing-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
"eyre",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"num-bigint",
"num-traits",
"openvm-algebra-circuit",
@@ -7407,7 +7352,7 @@ dependencies = [
"openvm-riscv-circuit",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-pairing",
"rvr-openvm-lift",
"serde",
@@ -7417,10 +7362,10 @@ dependencies = [
[[package]]
name = "openvm-pairing-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"blstrs",
- "halo2curves-axiom 0.7.2",
+ "halo2curves-axiom 0.7.3",
"hex-literal",
"itertools 0.14.0",
"lazy_static",
@@ -7438,7 +7383,7 @@ dependencies = [
[[package]]
name = "openvm-pairing-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-decoder",
"openvm-instructions",
@@ -7451,7 +7396,7 @@ dependencies = [
[[package]]
name = "openvm-platform"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"libm",
"openvm-custom-insn",
@@ -7461,7 +7406,7 @@ dependencies = [
[[package]]
name = "openvm-poseidon2-air"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"derivative",
"lazy_static",
@@ -7472,14 +7417,14 @@ dependencies = [
"p3-poseidon2",
"p3-poseidon2-air",
"p3-symmetric",
- "rand 0.9.2",
+ "rand 0.9.5",
"zkhash",
]
[[package]]
name = "openvm-recursion-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"derive-new 0.6.0",
"itertools 0.14.0",
@@ -7507,10 +7452,10 @@ dependencies = [
[[package]]
name = "openvm-recursion-circuit-derive"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -7543,9 +7488,9 @@ dependencies = [
"reth-ethereum-primitives",
"serde_json",
"tokio",
- "toml 0.9.5",
+ "toml 0.9.12+spec-1.1.0",
"tracing",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
"url",
"zstd",
]
@@ -7590,7 +7535,7 @@ dependencies = [
[[package]]
name = "openvm-riscv-adapters"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"derive-new 0.6.0",
"itertools 0.14.0",
@@ -7601,15 +7546,15 @@ dependencies = [
"openvm-riscv-circuit",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
]
[[package]]
name = "openvm-riscv-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
"eyre",
@@ -7627,7 +7572,7 @@ dependencies = [
"openvm-riscv-transpiler",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-riscv",
"rvr-openvm-lift",
"serde",
@@ -7638,7 +7583,7 @@ dependencies = [
[[package]]
name = "openvm-riscv-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-custom-insn",
"strum_macros 0.26.4",
@@ -7647,7 +7592,7 @@ dependencies = [
[[package]]
name = "openvm-riscv-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-decoder",
"openvm-instructions",
@@ -7680,7 +7625,7 @@ dependencies = [
"openvm-stateless-executor",
"openvm-stateless-witness",
"rayon",
- "reqwest 0.12.20",
+ "reqwest 0.12.28",
"reth-chainspec",
"reth-ethereum-primitives",
"reth-evm",
@@ -7689,22 +7634,22 @@ dependencies = [
"revm 38.0.0",
"risc0-ethereum-trie",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tower",
"tracing",
"tracing-actix-web",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
name = "openvm-sdk"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"alloy-sol-types",
"bitcode",
- "cfg-if 1.0.1",
+ "cfg-if",
"clap",
"derivative",
"derive-new 0.6.0",
@@ -7740,16 +7685,17 @@ dependencies = [
[[package]]
name = "openvm-sdk-config"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"bon",
- "cfg-if 1.0.1",
+ "cfg-if",
"derive_more 1.0.0",
"openvm-algebra-circuit",
"openvm-algebra-transpiler",
"openvm-bigint-circuit",
"openvm-bigint-transpiler",
"openvm-circuit",
+ "openvm-continuations",
"openvm-cpu-backend",
"openvm-cuda-backend",
"openvm-deferral-circuit",
@@ -7767,6 +7713,7 @@ dependencies = [
"openvm-stark-backend",
"openvm-stark-sdk",
"openvm-transpiler",
+ "openvm-verify-stark-circuit",
"rvr-openvm-lift",
"serde",
"toml 0.8.23",
@@ -7775,7 +7722,7 @@ dependencies = [
[[package]]
name = "openvm-sha2"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-sha2-guest",
"sha2 0.10.9",
@@ -7784,23 +7731,23 @@ dependencies = [
[[package]]
name = "openvm-sha2-air"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"ndarray",
"num_enum",
"openvm-circuit-primitives",
"openvm-circuit-primitives-derive",
"openvm-stark-backend",
- "rand 0.9.2",
+ "rand 0.9.5",
"sha2 0.10.9",
]
[[package]]
name = "openvm-sha2-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-new 0.6.0",
"derive_more 1.0.0",
"itertools 0.14.0",
@@ -7819,7 +7766,7 @@ dependencies = [
"openvm-sha2-transpiler",
"openvm-stark-backend",
"openvm-stark-sdk",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-sha2",
"rvr-openvm-lift",
"serde",
@@ -7829,7 +7776,7 @@ dependencies = [
[[package]]
name = "openvm-sha2-guest"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-platform",
]
@@ -7837,7 +7784,7 @@ dependencies = [
[[package]]
name = "openvm-sha2-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-decoder",
"openvm-instructions",
@@ -7850,10 +7797,10 @@ dependencies = [
[[package]]
name = "openvm-stark-backend"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derivative",
"derive-new 0.7.0",
"eyre",
@@ -7875,7 +7822,7 @@ dependencies = [
"p3-util",
"postcard",
"rayon",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"serde",
"serde_json",
"thiserror 1.0.69",
@@ -7885,8 +7832,8 @@ dependencies = [
[[package]]
name = "openvm-stark-sdk"
-version = "2.0.0-alpha"
-source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#d1723198c81562157c922d9d06c035e9dcad91e2"
+version = "2.0.0"
+source = "git+https://github.com/openvm-org/stark-backend.git?branch=develop-v2#0b04cdcd3f7790c5e2d306a4b5cd8640f89e2e49"
dependencies = [
"dashmap",
"derive-new 0.7.0",
@@ -7904,14 +7851,14 @@ dependencies = [
"p3-bn254",
"p3-field",
"p3-poseidon2",
- "rand 0.9.2",
+ "rand 0.9.5",
"serde",
"serde_json",
"static_assertions",
"tracing",
"tracing-forest",
- "tracing-subscriber 0.3.22",
- "zkhash",
+ "tracing-subscriber 0.3.23",
+ "zkhash-axiom",
]
[[package]]
@@ -7940,7 +7887,7 @@ dependencies = [
"revm-primitives 23.0.0",
"serde",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -7951,7 +7898,7 @@ dependencies = [
"alloy-rlp",
"alloy-rpc-types-debug",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"openvm-mpt",
"openvm-stateless-executor",
"reth-ethereum",
@@ -7965,14 +7912,14 @@ dependencies = [
"reth-trie",
"serde",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
[[package]]
name = "openvm-static-verifier"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"halo2-base",
"itertools 0.14.0",
@@ -7996,7 +7943,7 @@ dependencies = [
[[package]]
name = "openvm-transpiler"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"elf",
"eyre",
@@ -8011,9 +7958,10 @@ dependencies = [
[[package]]
name = "openvm-verify-stark-circuit"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "cfg-if 1.0.1",
+ "bitcode",
+ "cfg-if",
"derive-new 0.6.0",
"eyre",
"itertools 0.14.0",
@@ -8033,13 +7981,14 @@ dependencies = [
"p3-air",
"p3-field",
"p3-matrix",
+ "serde",
"tracing",
]
[[package]]
name = "openvm-verify-stark-host"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"bitcode",
"eyre",
@@ -8078,7 +8027,7 @@ dependencies = [
[[package]]
name = "p256"
version = "0.13.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"ecdsa",
"elliptic-curve",
@@ -8115,7 +8064,7 @@ dependencies = [
"p3-monty-31",
"p3-poseidon2",
"p3-symmetric",
- "rand 0.9.2",
+ "rand 0.9.5",
]
[[package]]
@@ -8130,7 +8079,7 @@ dependencies = [
"p3-symmetric",
"p3-util",
"paste",
- "rand 0.9.2",
+ "rand 0.9.5",
"serde",
]
@@ -8159,7 +8108,7 @@ dependencies = [
"p3-matrix",
"p3-maybe-rayon",
"p3-util",
- "spin 0.10.0",
+ "spin 0.10.1",
"tracing",
]
@@ -8174,7 +8123,7 @@ dependencies = [
"p3-maybe-rayon",
"p3-util",
"paste",
- "rand 0.9.2",
+ "rand 0.9.5",
"serde",
"tracing",
]
@@ -8202,7 +8151,7 @@ dependencies = [
"p3-matrix",
"p3-maybe-rayon",
"p3-util",
- "rand 0.9.2",
+ "rand 0.9.5",
"tracing",
]
@@ -8216,7 +8165,7 @@ dependencies = [
"p3-field",
"p3-maybe-rayon",
"p3-util",
- "rand 0.9.2",
+ "rand 0.9.5",
"serde",
"tracing",
]
@@ -8240,7 +8189,7 @@ dependencies = [
"p3-field",
"p3-symmetric",
"p3-util",
- "rand 0.9.2",
+ "rand 0.9.5",
]
[[package]]
@@ -8260,9 +8209,9 @@ dependencies = [
"p3-symmetric",
"p3-util",
"paste",
- "rand 0.9.2",
+ "rand 0.9.5",
"serde",
- "spin 0.10.0",
+ "spin 0.10.1",
"tracing",
]
@@ -8276,7 +8225,7 @@ dependencies = [
"p3-mds",
"p3-symmetric",
"p3-util",
- "rand 0.9.2",
+ "rand 0.9.5",
]
[[package]]
@@ -8290,7 +8239,7 @@ dependencies = [
"p3-matrix",
"p3-maybe-rayon",
"p3-poseidon2",
- "rand 0.9.2",
+ "rand 0.9.5",
"tracing",
]
@@ -8366,17 +8315,17 @@ version = "3.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a"
dependencies = [
- "proc-macro-crate 3.3.0",
+ "proc-macro-crate 3.5.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "parking_lot"
-version = "0.12.4"
+version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
+checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
dependencies = [
"lock_api",
"parking_lot_core",
@@ -8384,15 +8333,15 @@ dependencies = [
[[package]]
name = "parking_lot_core"
-version = "0.9.11"
+version = "0.9.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
+checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"libc",
"redox_syscall",
"smallvec",
- "windows-targets 0.52.6",
+ "windows-link",
]
[[package]]
@@ -8405,7 +8354,7 @@ dependencies = [
"ff 0.12.1",
"group 0.12.1",
"lazy_static",
- "rand 0.8.5",
+ "rand 0.8.7",
"static_assertions",
"subtle",
]
@@ -8420,7 +8369,7 @@ dependencies = [
"ff 0.13.1",
"group 0.13.0",
"lazy_static",
- "rand 0.8.5",
+ "rand 0.8.7",
"static_assertions",
"subtle",
]
@@ -8453,18 +8402,17 @@ dependencies = [
[[package]]
name = "percent-encoding"
-version = "2.3.1"
+version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
+checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
[[package]]
name = "pest"
-version = "2.8.0"
+version = "2.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "198db74531d58c70a361c42201efde7e2591e976d518caf7662a47dc5720e7b6"
+checksum = "47627dd7305c6a2d6c8c6bcd24c5a4c17dbbf425f4f9c5313e724b38fc9782e9"
dependencies = [
"memchr",
- "thiserror 2.0.12",
"ucd-trie",
]
@@ -8507,7 +8455,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
dependencies = [
"phf_shared 0.11.3",
- "rand 0.8.5",
+ "rand 0.8.7",
]
[[package]]
@@ -8530,7 +8478,7 @@ dependencies = [
"phf_shared 0.11.3",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -8543,7 +8491,7 @@ dependencies = [
"phf_shared 0.13.1",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -8566,29 +8514,29 @@ dependencies = [
[[package]]
name = "pin-project"
-version = "1.1.10"
+version = "1.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
+checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
-version = "1.1.10"
+version = "1.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
+checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "pin-project-lite"
-version = "0.2.16"
+version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
+checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
[[package]]
name = "pin-utils"
@@ -8608,9 +8556,9 @@ dependencies = [
[[package]]
name = "pkg-config"
-version = "0.3.32"
+version = "0.3.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
+checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
[[package]]
name = "plotters"
@@ -8646,23 +8594,23 @@ version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
dependencies = [
- "cfg-if 1.0.1",
- "cpufeatures",
+ "cfg-if",
+ "cpufeatures 0.2.17",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "portable-atomic"
-version = "1.11.1"
+version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
+checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
[[package]]
name = "portable-atomic-util"
-version = "0.2.6"
+version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
+checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
dependencies = [
"portable-atomic",
]
@@ -8677,7 +8625,7 @@ dependencies = [
"ff 0.13.1",
"lazy_static",
"log",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_xorshift 0.3.0",
"thiserror 1.0.69",
]
@@ -8696,9 +8644,9 @@ dependencies = [
[[package]]
name = "potential_utf"
-version = "0.1.2"
+version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
+checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
dependencies = [
"zerovec",
]
@@ -8730,12 +8678,12 @@ dependencies = [
[[package]]
name = "prettyplease"
-version = "0.2.33"
+version = "0.2.37"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9dee91521343f4c5c6a63edd65e54f31f5c92fe8978c40a4282f8372194c6a7d"
+checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
dependencies = [
"proc-macro2",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -8770,11 +8718,11 @@ dependencies = [
[[package]]
name = "proc-macro-crate"
-version = "3.3.0"
+version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
+checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
dependencies = [
- "toml_edit 0.22.27",
+ "toml_edit 0.25.12+spec-1.1.0",
]
[[package]]
@@ -8796,14 +8744,14 @@ dependencies = [
"proc-macro-error-attr2",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "proc-macro2"
-version = "1.0.95"
+version = "1.0.106"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
+checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
dependencies = [
"unicode-ident",
]
@@ -8814,7 +8762,7 @@ version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25485360a54d6861439d60facef26de713b1e126bf015ec8f98239467a2b82f7"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"chrono",
"flate2",
"procfs-core",
@@ -8827,23 +8775,22 @@ version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6401bf7b6af22f78b563665d15a22e9aef27775b79b149a66ca022468a4e405"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"chrono",
"hex",
]
[[package]]
name = "proptest"
-version = "1.7.0"
+version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f"
+checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
dependencies = [
"bit-set",
"bit-vec",
- "bitflags 2.10.0",
- "lazy_static",
+ "bitflags",
"num-traits",
- "rand 0.9.2",
+ "rand 0.9.5",
"rand_chacha 0.9.0",
"rand_xorshift 0.4.0",
"regex-syntax",
@@ -8854,9 +8801,9 @@ dependencies = [
[[package]]
name = "prost"
-version = "0.14.3"
+version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
+checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
dependencies = [
"bytes",
"prost-derive",
@@ -8864,15 +8811,15 @@ dependencies = [
[[package]]
name = "prost-derive"
-version = "0.14.3"
+version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
+checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
dependencies = [
"anyhow",
- "itertools 0.14.0",
+ "itertools 0.11.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -8885,7 +8832,7 @@ dependencies = [
"libc",
"once_cell",
"raw-cpuid",
- "wasi 0.11.1+wasi-snapshot-preview1",
+ "wasi",
"web-sys",
"winapi",
]
@@ -8896,30 +8843,21 @@ version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
-[[package]]
-name = "quick-protobuf"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d6da84cc204722a989e01ba2f6e1e276e190f22263d0cb6ce8526fcdb0d2e1f"
-dependencies = [
- "byteorder",
-]
-
[[package]]
name = "quinn"
-version = "0.11.8"
+version = "0.11.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8"
+checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
dependencies = [
"bytes",
"cfg_aliases",
"pin-project-lite",
"quinn-proto",
"quinn-udp",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"rustls",
- "socket2 0.5.10",
- "thiserror 2.0.12",
+ "socket2 0.6.5",
+ "thiserror 2.0.18",
"tokio",
"tracing",
"web-time",
@@ -8927,21 +8865,22 @@ dependencies = [
[[package]]
name = "quinn-proto"
-version = "0.11.12"
+version = "0.11.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e"
+checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
dependencies = [
"aws-lc-rs",
"bytes",
- "getrandom 0.3.3",
+ "getrandom 0.4.3",
"lru-slab",
- "rand 0.9.2",
+ "rand 0.10.2",
+ "rand_pcg",
"ring",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"rustls",
"rustls-pki-types",
"slab",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tinyvec",
"tracing",
"web-time",
@@ -8949,32 +8888,32 @@ dependencies = [
[[package]]
name = "quinn-udp"
-version = "0.5.12"
+version = "0.5.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842"
+checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
dependencies = [
"cfg_aliases",
"libc",
"once_cell",
- "socket2 0.5.10",
+ "socket2 0.6.5",
"tracing",
- "windows-sys 0.59.0",
+ "windows-sys 0.52.0",
]
[[package]]
name = "quote"
-version = "1.0.40"
+version = "1.0.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
+checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
dependencies = [
"proc-macro2",
]
[[package]]
name = "r-efi"
-version = "5.2.0"
+version = "5.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
[[package]]
name = "r-efi"
@@ -9000,9 +8939,9 @@ dependencies = [
[[package]]
name = "rand"
-version = "0.8.5"
+version = "0.8.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
dependencies = [
"libc",
"rand_chacha 0.3.1",
@@ -9012,15 +8951,26 @@ dependencies = [
[[package]]
name = "rand"
-version = "0.9.2"
+version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
+checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
dependencies = [
"rand_chacha 0.9.0",
- "rand_core 0.9.3",
+ "rand_core 0.9.5",
"serde",
]
+[[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"
@@ -9038,7 +8988,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
dependencies = [
"ppv-lite86",
- "rand_core 0.9.3",
+ "rand_core 0.9.5",
]
[[package]]
@@ -9047,19 +8997,34 @@ version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
- "getrandom 0.2.16",
+ "getrandom 0.2.17",
]
[[package]]
name = "rand_core"
-version = "0.9.3"
+version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
+checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
dependencies = [
- "getrandom 0.3.3",
+ "getrandom 0.3.4",
"serde",
]
+[[package]]
+name = "rand_core"
+version = "0.10.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
+
+[[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_xorshift"
version = "0.3.0"
@@ -9075,7 +9040,7 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
dependencies = [
- "rand_core 0.9.3",
+ "rand_core 0.9.5",
]
[[package]]
@@ -9084,26 +9049,26 @@ version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f703f4665700daf5512dcca5f43afa6af89f09db47fb56be587f80636bda2d41"
dependencies = [
- "rand_core 0.9.3",
+ "rand_core 0.9.5",
]
[[package]]
name = "rapidhash"
-version = "4.2.1"
+version = "4.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d8b5b858a440a0bc02625b62dd95131b9201aa9f69f411195dd4a7cfb1de3d7"
+checksum = "5da7e78a036ce858e8d55b7e7dc8ba3a88b78350fd2155d3591bbd966b58589e"
dependencies = [
- "rand 0.9.2",
+ "getrandom 0.3.4",
"rustversion",
]
[[package]]
name = "raw-cpuid"
-version = "11.5.0"
+version = "11.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
+checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
]
[[package]]
@@ -9114,9 +9079,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
[[package]]
name = "rayon"
-version = "1.11.0"
+version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
+checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
dependencies = [
"either",
"rayon-core",
@@ -9140,11 +9105,11 @@ checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175"
[[package]]
name = "redox_syscall"
-version = "0.5.12"
+version = "0.5.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
+checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
]
[[package]]
@@ -9153,36 +9118,36 @@ version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
dependencies = [
- "getrandom 0.2.16",
+ "getrandom 0.2.17",
"libredox",
"thiserror 1.0.69",
]
[[package]]
name = "ref-cast"
-version = "1.0.24"
+version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf"
+checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
dependencies = [
"ref-cast-impl",
]
[[package]]
name = "ref-cast-impl"
-version = "1.0.24"
+version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7"
+checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "regex"
-version = "1.12.2"
+version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
+checksum = "2a0e75113e14dc5acb068cd0786884f214f1312650a3d36d269f5c4f3cdee8a2"
dependencies = [
"aho-corasick",
"memchr",
@@ -9192,9 +9157,9 @@ dependencies = [
[[package]]
name = "regex-automata"
-version = "0.4.13"
+version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
+checksum = "1f388202e4b80542a0921078cc23b6333bcf1409c1e3f86404cae4766a6131db"
dependencies = [
"aho-corasick",
"memchr",
@@ -9203,30 +9168,21 @@ dependencies = [
[[package]]
name = "regex-lite"
-version = "0.1.8"
+version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
+checksum = "cab834c73d247e67f4fae452806d17d3c7501756d98c8808d7c9c7aa7d18f973"
[[package]]
name = "regex-syntax"
-version = "0.8.5"
+version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
+checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
[[package]]
-name = "repr_offset"
-version = "0.2.2"
+name = "reqwest"
+version = "0.12.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fb1070755bd29dffc19d0971cab794e607839ba2ef4b69a9e6fbc8733c1b72ea"
-dependencies = [
- "tstr",
-]
-
-[[package]]
-name = "reqwest"
-version = "0.12.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eabf4c97d9130e2bf606614eb937e86edac8292eaa6f422f995d7e8de1eb1813"
+checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
dependencies = [
"base64 0.22.1",
"bytes",
@@ -9234,8 +9190,8 @@ dependencies = [
"futures-channel",
"futures-core",
"futures-util",
- "h2 0.4.12",
- "http 1.3.1",
+ "h2 0.4.15",
+ "http 1.4.2",
"http-body",
"http-body-util",
"hyper",
@@ -9270,15 +9226,15 @@ dependencies = [
[[package]]
name = "reqwest"
-version = "0.13.3"
+version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
+checksum = "219c5811de6525e5416c7d5d53bb656d3afdbc6c5af816e0802bcfa42dbdc1c3"
dependencies = [
"base64 0.22.1",
"bytes",
"futures-core",
"futures-util",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"http-body-util",
"hyper",
@@ -9325,7 +9281,7 @@ dependencies = [
"alloy-primitives",
"futures-core",
"futures-util",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"reth-chain-state",
"reth-execution-cache",
"reth-metrics",
@@ -9350,11 +9306,11 @@ dependencies = [
"alloy-consensus",
"alloy-eips 2.0.0",
"alloy-primitives",
- "derive_more 2.0.1",
- "metrics 0.24.3",
+ "derive_more 2.1.1",
+ "metrics 0.24.6",
"parking_lot",
"pin-project",
- "rand 0.9.2",
+ "rand 0.9.5",
"rayon",
"reth-chainspec",
"reth-errors",
@@ -9385,7 +9341,7 @@ dependencies = [
"alloy-primitives",
"alloy-trie 0.9.4",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"reth-ethereum-forks",
"reth-network-peers",
"reth-primitives-traits",
@@ -9399,21 +9355,21 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
- "cfg-if 1.0.1",
+ "cfg-if",
"eyre",
"libc",
- "rand 0.8.5",
+ "rand 0.8.7",
"reth-fs-util",
"secp256k1 0.30.0",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
name = "reth-codecs"
-version = "0.3.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fce542a96bf888f31854803e80b3340bc233927743aa580838014e8a88fe0d66"
+checksum = "4ee9f6a4b8f4992c030c82fb8c2dcc872349452009b4127055f678f7d5a3dea3"
dependencies = [
"alloy-consensus",
"alloy-eips 2.0.0",
@@ -9430,13 +9386,13 @@ dependencies = [
[[package]]
name = "reth-codecs-derive"
-version = "0.3.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "634c90f1cc0f9887680ca785b0b21aa961070b9465917bf65afaec56a6d005bb"
+checksum = "07feedb2c0ec9ec76dd1210b7486904f139243dc9b264586994a6246955c1c73"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -9451,7 +9407,7 @@ dependencies = [
"reth-stages-types",
"reth-static-file-types",
"serde",
- "toml 0.9.5",
+ "toml 0.9.12+spec-1.1.0",
"url",
]
@@ -9465,7 +9421,7 @@ dependencies = [
"auto_impl",
"reth-execution-types",
"reth-primitives-traits",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -9494,10 +9450,10 @@ dependencies = [
"alloy-rpc-types-engine",
"alloy-transport",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"eyre",
"futures",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"reth-node-api",
"reth-primitives-traits",
"reth-tracing",
@@ -9513,9 +9469,9 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"alloy-primitives",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"eyre",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"page_size",
"quanta",
"reth-db-api",
@@ -9526,10 +9482,10 @@ dependencies = [
"reth-static-file-types",
"reth-storage-errors",
"reth-tracing",
- "rustc-hash 2.1.1",
- "strum 0.27.1",
+ "rustc-hash 2.1.3",
+ "strum 0.27.2",
"sysinfo",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -9542,8 +9498,8 @@ dependencies = [
"alloy-primitives",
"arrayvec",
"bytes",
- "derive_more 2.0.1",
- "metrics 0.24.3",
+ "derive_more 2.1.1",
+ "metrics 0.24.6",
"modular-bitfield",
"reth-codecs",
"reth-db-models",
@@ -9583,7 +9539,7 @@ dependencies = [
"reth-trie-db",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -9612,7 +9568,7 @@ dependencies = [
"enr",
"itertools 0.14.0",
"parking_lot",
- "rand 0.8.5",
+ "rand 0.8.7",
"reth-ethereum-forks",
"reth-net-banlist",
"reth-net-nat",
@@ -9620,7 +9576,7 @@ dependencies = [
"schnellru",
"secp256k1 0.30.0",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tracing",
@@ -9633,19 +9589,19 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"alloy-primitives",
"alloy-rlp",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"discv5",
"enr",
"futures",
"itertools 0.14.0",
- "metrics 0.24.3",
- "rand 0.9.2",
+ "metrics 0.24.6",
+ "rand 0.9.5",
"reth-chainspec",
"reth-ethereum-forks",
"reth-metrics",
"reth-network-peers",
"secp256k1 0.30.0",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -9668,7 +9624,7 @@ dependencies = [
"secp256k1 0.30.0",
"serde",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tracing",
@@ -9684,7 +9640,7 @@ dependencies = [
"alloy-primitives",
"futures",
"futures-util",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"pin-project",
"rayon",
"reth-config",
@@ -9695,7 +9651,7 @@ dependencies = [
"reth-primitives-traits",
"reth-storage-api",
"reth-tasks",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -9719,11 +9675,11 @@ dependencies = [
"futures",
"hmac",
"pin-project",
- "rand 0.8.5",
+ "rand 0.8.7",
"reth-network-peers",
"secp256k1 0.30.0",
"sha2 0.10.9",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -9774,7 +9730,7 @@ dependencies = [
"reth-primitives-traits",
"reth-trie-common",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
]
@@ -9791,10 +9747,10 @@ dependencies = [
"alloy-rlp",
"alloy-rpc-types-engine",
"crossbeam-channel",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
- "indexmap 2.12.1",
- "metrics 0.24.3",
+ "indexmap 2.14.0",
+ "metrics 0.24.6",
"moka",
"parking_lot",
"rayon",
@@ -9825,7 +9781,7 @@ dependencies = [
"revm 38.0.0",
"revm-primitives 23.0.0",
"schnellru",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -9870,7 +9826,7 @@ dependencies = [
"ethereum_ssz",
"ethereum_ssz_derive",
"snap",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -9882,7 +9838,7 @@ dependencies = [
"bytes",
"eyre",
"futures-util",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"reth-era",
"reth-fs-util",
"sha2 0.10.9",
@@ -9919,7 +9875,7 @@ dependencies = [
"reth-consensus",
"reth-execution-errors",
"reth-storage-errors",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -9931,7 +9887,7 @@ dependencies = [
"alloy-primitives",
"alloy-rlp",
"bytes",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
"pin-project",
"reth-codecs",
@@ -9943,7 +9899,7 @@ dependencies = [
"reth-primitives-traits",
"serde",
"snap",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -9963,13 +9919,13 @@ dependencies = [
"alloy-primitives",
"alloy-rlp",
"bytes",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"reth-chainspec",
"reth-codecs-derive",
"reth-ethereum-primitives",
"reth-primitives-traits",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -10040,7 +9996,7 @@ dependencies = [
"reth-payload-primitives",
"reth-primitives-traits",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -10053,7 +10009,7 @@ dependencies = [
"alloy-primitives",
"auto_impl",
"once_cell",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
]
[[package]]
@@ -10120,9 +10076,9 @@ dependencies = [
"alloy-evm",
"alloy-primitives",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures-util",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"rayon",
"reth-execution-errors",
"reth-execution-types",
@@ -10161,7 +10117,7 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"alloy-primitives",
"fixed-cache",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"reth-errors",
"reth-metrics",
@@ -10182,7 +10138,7 @@ dependencies = [
"alloy-rlp",
"nybbles 0.4.8",
"reth-storage-errors",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -10195,7 +10151,7 @@ dependencies = [
"alloy-evm",
"alloy-primitives",
"alloy-rlp",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"reth-ethereum-primitives",
"reth-primitives-traits",
"reth-trie-common",
@@ -10215,7 +10171,7 @@ dependencies = [
"eyre",
"futures",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"reth-chain-state",
"reth-chainspec",
@@ -10236,7 +10192,7 @@ dependencies = [
"reth-tasks",
"reth-tracing",
"rmp-serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-util",
"tracing",
@@ -10263,7 +10219,7 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -10306,7 +10262,7 @@ dependencies = [
"jsonrpsee",
"pin-project",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -10319,15 +10275,15 @@ name = "reth-libmdbx"
version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"byteorder",
"crossbeam-queue",
"dashmap",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"parking_lot",
"reth-mdbx-sys",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -10336,7 +10292,7 @@ name = "reth-mdbx-sys"
version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
- "bindgen 0.72.1",
+ "bindgen",
"cc",
]
@@ -10346,7 +10302,7 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"futures",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"metrics-derive",
"tokio",
"tokio-util",
@@ -10368,9 +10324,9 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"futures-util",
"if-addrs",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -10386,16 +10342,16 @@ dependencies = [
"alloy-rlp",
"aquamarine",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"discv5",
"enr",
"futures",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"pin-project",
- "rand 0.8.5",
- "rand 0.9.2",
+ "rand 0.8.7",
+ "rand 0.9.5",
"rayon",
"reth-chainspec",
"reth-consensus",
@@ -10419,12 +10375,12 @@ dependencies = [
"reth-tasks",
"reth-tokio-util",
"reth-transaction-pool",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"schnellru",
"secp256k1 0.30.0",
"serde",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-util",
@@ -10441,7 +10397,7 @@ dependencies = [
"alloy-rpc-types-admin",
"alloy-rpc-types-eth",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"enr",
"futures",
"reth-eth-wire-types",
@@ -10451,7 +10407,7 @@ dependencies = [
"reth-network-types",
"reth-tokio-util",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
]
@@ -10465,7 +10421,7 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"auto_impl",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
"reth-consensus",
"reth-eth-wire-types",
@@ -10488,7 +10444,7 @@ dependencies = [
"enr",
"secp256k1 0.30.0",
"serde_with",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"url",
]
@@ -10514,12 +10470,12 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"anyhow",
"bincode 1.3.3",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"lz4_flex",
"memmap2",
"reth-fs-util",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
"zstd",
]
@@ -10626,13 +10582,13 @@ dependencies = [
"alloy-primitives",
"alloy-rpc-types-engine",
"clap",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"dirs-next",
"eyre",
"futures",
- "humantime 2.3.0",
+ "humantime",
"ipnet",
- "rand 0.9.2",
+ "rand 0.9.5",
"reth-chainspec",
"reth-cli-util",
"reth-config",
@@ -10662,9 +10618,9 @@ dependencies = [
"reth-transaction-pool",
"secp256k1 0.30.0",
"serde",
- "strum 0.27.1",
- "thiserror 2.0.12",
- "toml 0.9.5",
+ "strum 0.27.2",
+ "thiserror 2.0.18",
+ "toml 0.9.12+spec-1.1.0",
"tracing",
"url",
"vergen",
@@ -10725,7 +10681,7 @@ dependencies = [
"reth-transaction-pool",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tokio-tungstenite",
@@ -10742,9 +10698,9 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rpc-types-engine",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
- "humantime 2.3.0",
+ "humantime",
"pin-project",
"reth-engine-primitives",
"reth-network-api",
@@ -10764,15 +10720,15 @@ source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655
dependencies = [
"bytes",
"eyre",
- "http 1.3.1",
+ "http 1.4.2",
"http-body-util",
"jsonrpsee-server",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"metrics-exporter-prometheus",
"metrics-process",
- "metrics-util 0.20.1",
+ "metrics-util 0.20.4",
"procfs",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"reth-metrics",
"reth-tasks",
"tokio",
@@ -10800,9 +10756,9 @@ dependencies = [
"alloy-consensus",
"alloy-primitives",
"alloy-rpc-types",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures-util",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"reth-chain-state",
"reth-ethereum-engine-primitives",
"reth-execution-cache",
@@ -10848,7 +10804,7 @@ dependencies = [
"reth-trie-common",
"serde",
"sha2 0.10.9",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
]
@@ -10878,7 +10834,7 @@ dependencies = [
"byteorder",
"bytes",
"dashmap",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"modular-bitfield",
"once_cell",
"quanta",
@@ -10889,7 +10845,7 @@ dependencies = [
"revm-state 11.0.1",
"secp256k1 0.30.0",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -10904,7 +10860,7 @@ dependencies = [
"alloy-rpc-types-engine",
"eyre",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"notify",
"parking_lot",
"rayon",
@@ -10931,7 +10887,7 @@ dependencies = [
"reth-trie-db",
"revm-database 13.0.1",
"rocksdb",
- "strum 0.27.1",
+ "strum 0.27.2",
"tracing",
]
@@ -10944,7 +10900,7 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"rayon",
"reth-config",
"reth-db-api",
@@ -10958,8 +10914,8 @@ dependencies = [
"reth-static-file-types",
"reth-storage-api",
"reth-tokio-util",
- "rustc-hash 2.1.1",
- "thiserror 2.0.12",
+ "rustc-hash 2.1.3",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -10970,12 +10926,12 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"alloy-primitives",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"modular-bitfield",
"reth-codecs",
"serde",
- "strum 0.27.1",
- "thiserror 2.0.12",
+ "strum 0.27.2",
+ "thiserror 2.0.18",
"tracing",
]
@@ -11017,11 +10973,11 @@ dependencies = [
"alloy-rpc-types-mev",
"alloy-rpc-types-trace",
"alloy-rpc-types-txpool",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-signer",
"alloy-signer-local",
"async-trait",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"dyn-clone",
"futures",
"itertools 0.14.0",
@@ -11064,7 +11020,7 @@ dependencies = [
"serde",
"serde_json",
"sha2 0.10.9",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tracing",
@@ -11090,7 +11046,7 @@ dependencies = [
"alloy-rpc-types-mev",
"alloy-rpc-types-trace",
"alloy-rpc-types-txpool",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"jsonrpsee",
"reth-chain-state",
"reth-engine-primitives",
@@ -11109,9 +11065,9 @@ dependencies = [
"alloy-network",
"alloy-provider",
"dyn-clone",
- "http 1.3.1",
+ "http 1.4.2",
"jsonrpsee",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"pin-project",
"reth-chain-state",
"reth-chainspec",
@@ -11136,7 +11092,7 @@ dependencies = [
"reth-tokio-util",
"reth-transaction-pool",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-util",
"tower",
@@ -11161,7 +11117,7 @@ dependencies = [
"reth-evm",
"reth-primitives-traits",
"reth-rpc-traits",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -11176,7 +11132,7 @@ dependencies = [
"async-trait",
"jsonrpsee-core",
"jsonrpsee-types",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"reth-chainspec",
"reth-engine-primitives",
"reth-metrics",
@@ -11190,7 +11146,7 @@ dependencies = [
"reth-tasks",
"reth-transaction-pool",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -11211,7 +11167,7 @@ dependencies = [
"alloy-rlp",
"alloy-rpc-types-eth",
"alloy-rpc-types-mev",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"async-trait",
"auto_impl",
"dyn-clone",
@@ -11255,14 +11211,14 @@ dependencies = [
"alloy-rpc-types-eth",
"alloy-sol-types",
"alloy-transport",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"futures",
"itertools 0.14.0",
"jsonrpsee-core",
"jsonrpsee-types",
- "metrics 0.24.3",
- "rand 0.9.2",
- "reqwest 0.13.3",
+ "metrics 0.24.6",
+ "rand 0.9.5",
+ "reqwest 0.13.4",
"reth-chain-state",
"reth-chainspec",
"reth-errors",
@@ -11282,7 +11238,7 @@ dependencies = [
"revm-inspectors",
"schnellru",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tracing",
@@ -11295,7 +11251,7 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"alloy-rpc-types-engine",
- "http 1.3.1",
+ "http 1.4.2",
"jsonrpsee-http-client",
"pin-project",
"tower",
@@ -11316,7 +11272,7 @@ dependencies = [
"reth-errors",
"reth-network-api",
"serde",
- "strum 0.27.1",
+ "strum 0.27.2",
]
[[package]]
@@ -11331,7 +11287,7 @@ dependencies = [
"alloy-rpc-types-eth",
"alloy-signer",
"reth-primitives-traits",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -11349,7 +11305,7 @@ dependencies = [
"num-traits",
"page_size",
"rayon",
- "reqwest 0.13.3",
+ "reqwest 0.13.4",
"reth-chainspec",
"reth-codecs",
"reth-config",
@@ -11378,7 +11334,7 @@ dependencies = [
"reth-tasks",
"reth-trie",
"reth-trie-db",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -11393,7 +11349,7 @@ dependencies = [
"aquamarine",
"auto_impl",
"futures-util",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"reth-codecs",
"reth-consensus",
"reth-errors",
@@ -11406,7 +11362,7 @@ dependencies = [
"reth-static-file",
"reth-static-file-types",
"reth-tokio-util",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tracing",
]
@@ -11450,11 +11406,11 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"alloy-primitives",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"fixed-map",
"reth-stages-types",
"serde",
- "strum 0.27.1",
+ "strum 0.27.2",
"tracing",
]
@@ -11490,14 +11446,14 @@ dependencies = [
"alloy-eips 2.0.0",
"alloy-primitives",
"alloy-rlp",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"reth-codecs",
"reth-primitives-traits",
"reth-prune-types",
"reth-static-file-types",
"revm-database-interface 11.0.1",
"revm-state 11.0.1",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -11509,12 +11465,12 @@ dependencies = [
"dashmap",
"futures-util",
"libc",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"pin-project",
"rayon",
"reth-metrics",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"thread-priority",
"tokio",
"tracing",
@@ -11544,7 +11500,7 @@ dependencies = [
"tracing-journald",
"tracing-logfmt",
"tracing-samply",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -11560,7 +11516,7 @@ dependencies = [
"opentelemetry_sdk",
"tracing",
"tracing-opentelemetry",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
"url",
]
@@ -11575,13 +11531,13 @@ dependencies = [
"alloy-rlp",
"aquamarine",
"auto_impl",
- "bitflags 2.10.0",
+ "bitflags",
"futures-util",
"imbl",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"pin-project",
- "rand 0.9.2",
+ "rand 0.9.5",
"reth-chain-state",
"reth-chainspec",
"reth-eth-wire-types",
@@ -11597,12 +11553,12 @@ dependencies = [
"revm 38.0.0",
"revm-interpreter 35.0.1",
"revm-primitives 23.0.0",
- "rustc-hash 2.1.1",
+ "rustc-hash 2.1.3",
"schnellru",
"serde",
"serde_json",
"smallvec",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tokio",
"tokio-stream",
"tracing",
@@ -11620,7 +11576,7 @@ dependencies = [
"alloy-trie 0.9.4",
"auto_impl",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"reth-execution-errors",
"reth-metrics",
@@ -11642,11 +11598,11 @@ dependencies = [
"alloy-primitives",
"alloy-rlp",
"alloy-rpc-types-eth",
- "alloy-serde 2.0.1",
+ "alloy-serde 2.0.4",
"alloy-trie 0.9.4",
"arrayvec",
"bytes",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"itertools 0.14.0",
"nybbles 0.4.8",
"rayon",
@@ -11663,7 +11619,7 @@ version = "2.1.0"
source = "git+https://github.com/paradigmxyz/reth?tag=v2.1.0#d58c6e3d0723a28f655e89da83c3738e47dcc364"
dependencies = [
"alloy-primitives",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"parking_lot",
"reth-db-api",
"reth-execution-errors",
@@ -11688,9 +11644,9 @@ dependencies = [
"alloy-rlp",
"crossbeam-channel",
"crossbeam-utils",
- "derive_more 2.0.1",
+ "derive_more 2.1.1",
"itertools 0.14.0",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"rayon",
"reth-execution-errors",
"reth-metrics",
@@ -11701,7 +11657,7 @@ dependencies = [
"reth-trie",
"reth-trie-sparse",
"revm-state 11.0.1",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"tracing",
]
@@ -11714,7 +11670,7 @@ dependencies = [
"alloy-rlp",
"alloy-trie 0.9.4",
"auto_impl",
- "metrics 0.24.3",
+ "metrics 0.24.6",
"rayon",
"reth-execution-errors",
"reth-metrics",
@@ -11729,9 +11685,9 @@ dependencies = [
[[package]]
name = "reth-zstd-compressors"
-version = "0.3.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c12fafa33d2f420a9d39249a3e0357b1928d09429f30758b85280409092873b2"
+checksum = "35a1f121117f149412446e92c5442d4a9722e04e7760ac3f62d518f4213634d9"
dependencies = [
"zstd",
]
@@ -11804,7 +11760,7 @@ version = "8.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cd508416a35a4d8a9feaf5ccd06ac6d6661cd31ee2dc0252f9f7316455d71f9"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-where",
"revm-bytecode 6.2.2",
"revm-context-interface 9.0.0",
@@ -11821,7 +11777,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f68d928d8b228e0faeb1c6ed75c4fde7d124f1ddf9119b67e7a0ad4041237d"
dependencies = [
"bitvec",
- "cfg-if 1.0.1",
+ "cfg-if",
"derive-where",
"revm-bytecode 10.0.0",
"revm-context-interface 17.0.1",
@@ -11869,7 +11825,7 @@ version = "7.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39a276ed142b4718dcf64bc9624f474373ed82ef20611025045c3fb23edbef9c"
dependencies = [
- "alloy-eips 1.5.2",
+ "alloy-eips 1.8.3",
"revm-bytecode 6.2.2",
"revm-database-interface 7.0.5",
"revm-primitives 20.2.1",
@@ -11883,7 +11839,7 @@ version = "13.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c281a1f11d3bcb8c0bba1199ed6bcb001d1aeb3d4fb366819e14f88723989a4e"
dependencies = [
- "alloy-eips 1.5.2",
+ "alloy-eips 1.8.3",
"revm-bytecode 10.0.0",
"revm-database-interface 11.0.1",
"revm-primitives 23.0.0",
@@ -11915,7 +11871,7 @@ dependencies = [
"revm-primitives 23.0.0",
"revm-state 11.0.1",
"serde",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -11994,9 +11950,9 @@ dependencies = [
[[package]]
name = "revm-inspectors"
-version = "0.39.0"
+version = "0.39.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "731b682530a732ef9c189ef831589128e2ce34d4a306c956322ae2dffe009715"
+checksum = "5dea6997563b46432f9c1822275cab4c462aed8f4a189dc518478c31317afb99"
dependencies = [
"alloy-primitives",
"alloy-rpc-types-eth",
@@ -12007,7 +11963,7 @@ dependencies = [
"revm 38.0.0",
"serde",
"serde_json",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
@@ -12050,7 +12006,7 @@ dependencies = [
"aurora-engine-modexp",
"blst",
"c-kzg",
- "cfg-if 1.0.1",
+ "cfg-if",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"libsecp256k1",
"once_cell",
@@ -12077,7 +12033,7 @@ dependencies = [
"aurora-engine-modexp",
"blst",
"c-kzg",
- "cfg-if 1.0.1",
+ "cfg-if",
"k256 0.13.4 (registry+https://github.com/rust-lang/crates.io-index)",
"p256 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)",
"revm-context-interface 17.0.1",
@@ -12117,7 +12073,7 @@ version = "7.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f64fbacb86008394aaebd3454f9643b7d5a782bd251135e17c5b33da592d84d"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"revm-bytecode 6.2.2",
"revm-primitives 20.2.1",
"serde",
@@ -12130,7 +12086,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c32490ed687dba31c3c882beb8c20408bdd30ef96690d8f145b0ee9a87040bfe"
dependencies = [
"alloy-eip7928",
- "bitflags 2.10.0",
+ "bitflags",
"revm-bytecode 10.0.0",
"revm-primitives 23.0.0",
"serde",
@@ -12153,8 +12109,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
dependencies = [
"cc",
- "cfg-if 1.0.1",
- "getrandom 0.2.16",
+ "cfg-if",
+ "getrandom 0.2.17",
"libc",
"untrusted 0.9.0",
"windows-sys 0.52.0",
@@ -12185,14 +12141,14 @@ dependencies = [
"alloy-trie 0.8.1",
"arrayvec",
"itertools 0.14.0",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
]
[[package]]
name = "rlimit"
-version = "0.10.2"
+version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7043b63bd0cd1aaa628e476b80e6d4023a3b50eb32789f2728908107bd0c793a"
+checksum = "f35ee2729c56bb610f6dba436bf78135f728b7373bdffae2ec815b2d3eb98cc3"
dependencies = [
"libc",
]
@@ -12273,9 +12229,9 @@ dependencies = [
[[package]]
name = "rug"
-version = "1.29.0"
+version = "1.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "25f6c8f906c90b48e0c1745c9f814c3a31c5eba847043b05c3e9a934dec7c4b3"
+checksum = "07a8857882aec59d27254b02481c709327c13de6fad1da60bfc4f9783eaaa61e"
dependencies = [
"az",
"gmp-mpfr-sys",
@@ -12285,14 +12241,15 @@ dependencies = [
[[package]]
name = "ruint"
-version = "1.17.0"
+version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278"
+checksum = "45caf26f647c19115bf9c453c70ffe4a4a3a6390dceebd942610584f99b8ddce"
dependencies = [
"alloy-rlp",
"ark-ff 0.3.0",
"ark-ff 0.4.2",
"ark-ff 0.5.0",
+ "ark-ff 0.6.0",
"bytes",
"fastrlp 0.3.1",
"fastrlp 0.4.0",
@@ -12302,8 +12259,8 @@ dependencies = [
"parity-scale-codec",
"primitive-types",
"proptest",
- "rand 0.8.5",
- "rand 0.9.2",
+ "rand 0.8.7",
+ "rand 0.9.5",
"rlp",
"ruint-macro",
"serde_core",
@@ -12317,40 +12274,11 @@ version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18"
-[[package]]
-name = "rustacuda"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "47208516ab5338b592d63560e90eaef405d0ec880347eaf7742d893b0a31e228"
-dependencies = [
- "bitflags 1.3.2",
- "cuda-driver-sys",
- "rustacuda_core",
- "rustacuda_derive",
-]
-
-[[package]]
-name = "rustacuda_core"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3858b08976dc2f860c5efbbb48cdcb0d4fafca92a6ac0898465af16c0dbe848"
-
-[[package]]
-name = "rustacuda_derive"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43ce8670a1a1d0fc2514a3b846dacdb65646f9bd494b6674cfacbb4ce430bd7e"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
[[package]]
name = "rustc-demangle"
-version = "0.1.25"
+version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "989e6739f80c4ad5b13e0fd7fe89531180375b18520cc8c82080e4dc4035b84f"
+checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb"
[[package]]
name = "rustc-hash"
@@ -12360,11 +12288,11 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc-hash"
-version = "2.1.1"
+version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
+checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
dependencies = [
- "rand 0.8.5",
+ "rand 0.9.5",
]
[[package]]
@@ -12388,27 +12316,27 @@ version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
- "semver 1.0.26",
+ "semver 1.0.28",
]
[[package]]
name = "rustix"
-version = "1.0.7"
+version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
+checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"errno",
"libc",
"linux-raw-sys",
- "windows-sys 0.59.0",
+ "windows-sys 0.52.0",
]
[[package]]
name = "rustls"
-version = "0.23.27"
+version = "0.23.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
+checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138"
dependencies = [
"aws-lc-rs",
"log",
@@ -12422,21 +12350,21 @@ dependencies = [
[[package]]
name = "rustls-native-certs"
-version = "0.8.2"
+version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
+checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d"
dependencies = [
"openssl-probe",
"rustls-pki-types",
"schannel",
- "security-framework 3.5.1",
+ "security-framework",
]
[[package]]
name = "rustls-pki-types"
-version = "1.12.0"
+version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
+checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
dependencies = [
"web-time",
"zeroize",
@@ -12457,7 +12385,7 @@ dependencies = [
"rustls-native-certs",
"rustls-platform-verifier-android",
"rustls-webpki",
- "security-framework 3.5.1",
+ "security-framework",
"security-framework-sys",
"webpki-root-certs 0.26.11",
"windows-sys 0.59.0",
@@ -12478,10 +12406,10 @@ dependencies = [
"rustls-native-certs",
"rustls-platform-verifier-android",
"rustls-webpki",
- "security-framework 3.5.1",
+ "security-framework",
"security-framework-sys",
- "webpki-root-certs 1.0.5",
- "windows-sys 0.61.1",
+ "webpki-root-certs 1.0.8",
+ "windows-sys 0.52.0",
]
[[package]]
@@ -12492,9 +12420,9 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
[[package]]
name = "rustls-webpki"
-version = "0.103.3"
+version = "0.103.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
+checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
dependencies = [
"aws-lc-rs",
"ring",
@@ -12504,15 +12432,15 @@ dependencies = [
[[package]]
name = "rustversion"
-version = "1.0.22"
+version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
+checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
[[package]]
name = "rusty-fork"
-version = "0.3.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
+checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
dependencies = [
"fnv",
"quick-error",
@@ -12523,8 +12451,9 @@ dependencies = [
[[package]]
name = "rvr-openvm"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
+ "openvm-instructions",
"openvm-platform",
"openvm-riscv-guest",
"openvm-stark-backend",
@@ -12538,19 +12467,19 @@ dependencies = [
[[package]]
name = "rvr-openvm-build"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
[[package]]
name = "rvr-openvm-ext-algebra"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"num-bigint",
"openvm-algebra-transpiler",
"openvm-algebra-utils",
"openvm-instructions",
"openvm-stark-backend",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-build",
"rvr-openvm-ir",
"rvr-openvm-lift",
@@ -12560,7 +12489,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-bigint"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-bigint-transpiler",
"openvm-instructions",
@@ -12575,9 +12504,9 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-deferral"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "libloading 0.8.9",
+ "libloading",
"openvm-circuit",
"openvm-deferral-transpiler",
"openvm-instructions",
@@ -12590,7 +12519,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-ecc"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-ecc-transpiler",
"openvm-instructions",
@@ -12604,7 +12533,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-ffi-common"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-instructions",
"openvm-platform",
@@ -12613,7 +12542,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-keccak"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-instructions",
"openvm-keccak256-transpiler",
@@ -12626,7 +12555,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-pairing"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-instructions",
"openvm-pairing-transpiler",
@@ -12639,14 +12568,14 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-riscv"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "libloading 0.8.9",
+ "libloading",
"openvm-circuit",
"openvm-instructions",
"openvm-riscv-transpiler",
"openvm-stark-backend",
- "rand 0.9.2",
+ "rand 0.9.5",
"rvr-openvm-ext-ffi-common",
"rvr-openvm-ir",
"rvr-openvm-lift",
@@ -12655,7 +12584,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ext-sha2"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"openvm-instructions",
"openvm-sha2-transpiler",
@@ -12668,7 +12597,7 @@ dependencies = [
[[package]]
name = "rvr-openvm-ir"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"serde",
]
@@ -12676,9 +12605,9 @@ dependencies = [
[[package]]
name = "rvr-openvm-lift"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
- "libloading 0.8.9",
+ "libloading",
"openvm-instructions",
"openvm-riscv-transpiler",
"openvm-stark-backend",
@@ -12690,7 +12619,7 @@ dependencies = [
[[package]]
name = "rvr-state"
version = "2.0.0-beta.2"
-source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#46277f7a30633b801f9007194284e5cc16763c8a"
+source = "git+https://github.com/openvm-org/openvm.git?branch=develop-v2.1.0-rv64#35ea358b9d8ddbaef5b413634e6c03059cec2701"
dependencies = [
"nix",
"thiserror 1.0.69",
@@ -12698,9 +12627,9 @@ dependencies = [
[[package]]
name = "ryu"
-version = "1.0.20"
+version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
+checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
[[package]]
name = "safe_arch"
@@ -12722,11 +12651,11 @@ dependencies = [
[[package]]
name = "schannel"
-version = "0.1.28"
+version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
+checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
dependencies = [
- "windows-sys 0.61.1",
+ "windows-sys 0.61.2",
]
[[package]]
@@ -12743,9 +12672,9 @@ dependencies = [
[[package]]
name = "schemars"
-version = "1.0.4"
+version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0"
+checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
dependencies = [
"dyn-clone",
"ref-cast",
@@ -12760,10 +12689,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649"
dependencies = [
"ahash",
- "cfg-if 1.0.1",
+ "cfg-if",
"hashbrown 0.13.2",
]
+[[package]]
+name = "scoped-tls"
+version = "1.0.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
+
[[package]]
name = "scopeguard"
version = "1.2.0"
@@ -12792,7 +12727,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252"
dependencies = [
"bitcoin_hashes",
- "rand 0.8.5",
+ "rand 0.8.7",
"secp256k1-sys 0.10.1",
"serde",
]
@@ -12804,7 +12739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c3c81b43dc2d8877c216a3fccf76677ee1ebccd429566d3e67447290d0c42b2"
dependencies = [
"bitcoin_hashes",
- "rand 0.9.2",
+ "rand 0.9.5",
"secp256k1-sys 0.11.0",
]
@@ -12828,24 +12763,11 @@ dependencies = [
[[package]]
name = "security-framework"
-version = "2.11.1"
+version = "3.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
+checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
dependencies = [
- "bitflags 2.10.0",
- "core-foundation 0.9.4",
- "core-foundation-sys",
- "libc",
- "security-framework-sys",
-]
-
-[[package]]
-name = "security-framework"
-version = "3.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
-dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"core-foundation 0.10.1",
"core-foundation-sys",
"libc",
@@ -12854,9 +12776,9 @@ dependencies = [
[[package]]
name = "security-framework-sys"
-version = "2.15.0"
+version = "2.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
+checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
dependencies = [
"core-foundation-sys",
"libc",
@@ -12873,11 +12795,12 @@ dependencies = [
[[package]]
name = "semver"
-version = "1.0.26"
+version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
+checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
dependencies = [
"serde",
+ "serde_core",
]
[[package]]
@@ -12889,12 +12812,6 @@ dependencies = [
"pest",
]
-[[package]]
-name = "send_wrapper"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f638d531eccd6e23b980caf34876660d38e265409d8e99b397ab71eb3612fad0"
-
[[package]]
name = "send_wrapper"
version = "0.6.0"
@@ -12946,16 +12863,16 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "serde_json"
-version = "1.0.149"
+version = "1.0.150"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
+checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
dependencies = [
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"itoa",
"memchr",
"serde",
@@ -12974,9 +12891,9 @@ dependencies = [
[[package]]
name = "serde_spanned"
-version = "1.0.3"
+version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
+checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
dependencies = [
"serde_core",
]
@@ -12995,19 +12912,19 @@ dependencies = [
[[package]]
name = "serde_with"
-version = "3.14.0"
+version = "3.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5"
+checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c"
dependencies = [
"base64 0.22.1",
+ "bs58",
"chrono",
"hex",
"indexmap 1.9.3",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"schemars 0.9.0",
- "schemars 1.0.4",
- "serde",
- "serde_derive",
+ "schemars 1.2.1",
+ "serde_core",
"serde_json",
"serde_with_macros",
"time",
@@ -13015,14 +12932,14 @@ dependencies = [
[[package]]
name = "serde_with_macros"
-version = "3.14.0"
+version = "3.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f"
+checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660"
dependencies = [
- "darling 0.20.11",
+ "darling 0.23.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13031,7 +12948,7 @@ version = "0.9.34+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
dependencies = [
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"itoa",
"ryu",
"serde",
@@ -13050,15 +12967,26 @@ dependencies = [
[[package]]
name = "sha1"
-version = "0.10.6"
+version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
+checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8"
dependencies = [
- "cfg-if 1.0.1",
- "cpufeatures",
+ "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.9.9"
@@ -13066,8 +12994,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
- "cfg-if 1.0.1",
- "cpufeatures",
+ "cfg-if",
+ "cpufeatures 0.2.17",
"digest 0.9.0",
"opaque-debug",
]
@@ -13078,16 +13006,16 @@ version = "0.10.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
dependencies = [
- "cfg-if 1.0.1",
- "cpufeatures",
+ "cfg-if",
+ "cpufeatures 0.2.17",
"digest 0.10.7",
]
[[package]]
name = "sha3"
-version = "0.10.8"
+version = "0.10.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60"
+checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
dependencies = [
"digest 0.10.7",
"keccak",
@@ -13095,12 +13023,12 @@ dependencies = [
[[package]]
name = "sha3-asm"
-version = "0.1.6"
+version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59cbb88c189d6352cc8ae96a39d19c7ecad8f7330b29461187f2587fdc2988d5"
+checksum = "a6287fd675f713484342a89cbf0a386abef5f15919cfad607e5e1f19e1e15331"
dependencies = [
"cc",
- "cfg-if 1.0.1",
+ "cfg-if",
]
[[package]]
@@ -13118,12 +13046,19 @@ 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.5"
+version = "1.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
+checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
dependencies = [
+ "errno",
"libc",
]
@@ -13137,6 +13072,12 @@ dependencies = [
"rand_core 0.6.4",
]
+[[package]]
+name = "simd-adler32"
+version = "0.3.9"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
+
[[package]]
name = "simd_cesu8"
version = "1.1.1"
@@ -13155,21 +13096,21 @@ checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
[[package]]
name = "simple_asn1"
-version = "0.6.3"
+version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
+checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
dependencies = [
"num-bigint",
"num-traits",
- "thiserror 2.0.12",
+ "thiserror 2.0.18",
"time",
]
[[package]]
name = "siphasher"
-version = "1.0.1"
+version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
+checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
[[package]]
name = "sketches-ddsketch"
@@ -13179,18 +13120,15 @@ checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
[[package]]
name = "sketches-ddsketch"
-version = "0.3.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
+checksum = "0c6f73aeb92d671e0cc4dca167e59b2deb6387c375391bc99ee743f326994a2b"
[[package]]
name = "slab"
-version = "0.4.9"
+version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
-dependencies = [
- "autocfg",
-]
+checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
[[package]]
name = "slotmap"
@@ -13203,9 +13141,9 @@ dependencies = [
[[package]]
name = "smallvec"
-version = "1.15.1"
+version = "1.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
+checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
dependencies = [
"serde",
]
@@ -13230,7 +13168,7 @@ dependencies = [
"num-integer",
"num-traits",
"pairing 0.23.0",
- "rand 0.8.5",
+ "rand 0.8.7",
"revm 27.1.0",
"ruint",
"serde",
@@ -13252,7 +13190,7 @@ dependencies = [
"num-bigint",
"num-integer",
"num-traits",
- "rand 0.8.5",
+ "rand 0.8.7",
"rand_chacha 0.3.1",
"serde",
"serde_json",
@@ -13271,12 +13209,12 @@ dependencies = [
[[package]]
name = "socket2"
-version = "0.6.3"
+version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
+checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4"
dependencies = [
"libc",
- "windows-sys 0.61.1",
+ "windows-sys 0.60.2",
]
[[package]]
@@ -13288,27 +13226,24 @@ dependencies = [
"base64 0.22.1",
"bytes",
"futures",
- "http 1.3.1",
+ "http 1.4.2",
"httparse",
"log",
- "rand 0.8.5",
- "sha1",
+ "rand 0.8.7",
+ "sha1 0.10.7",
]
[[package]]
name = "spin"
-version = "0.9.8"
+version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
-dependencies = [
- "lock_api",
-]
+checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e"
[[package]]
name = "spin"
-version = "0.10.0"
+version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
+checksum = "023a211cb3138dbc438680b32560ad89f699977624c9f8dbb95a47d5b4c07dd3"
dependencies = [
"lock_api",
]
@@ -13325,9 +13260,9 @@ dependencies = [
[[package]]
name = "stable_deref_trait"
-version = "1.2.0"
+version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
+checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
[[package]]
name = "static_assertions"
@@ -13364,7 +13299,7 @@ checksum = "59ab74230a0592602e361bd63c645413fa8cbe4500d10274e849179e5c72548f"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13378,11 +13313,11 @@ dependencies = [
[[package]]
name = "strum"
-version = "0.27.1"
+version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f64def088c51c9510a8579e3c5d67c65349dcf755e5479ad3d010aa6454e2c32"
+checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
dependencies = [
- "strum_macros 0.27.1",
+ "strum_macros 0.27.2",
]
[[package]]
@@ -13395,20 +13330,19 @@ dependencies = [
"proc-macro2",
"quote",
"rustversion",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "strum_macros"
-version = "0.27.1"
+version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c77a8c5abcaf0f9ce05d62342b7d298c346515365c36b673df4ebe3ced01fde8"
+checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
dependencies = [
"heck",
"proc-macro2",
"quote",
- "rustversion",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13417,6 +13351,12 @@ version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
+[[package]]
+name = "symlink"
+version = "0.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a"
+
[[package]]
name = "syn"
version = "1.0.109"
@@ -13430,9 +13370,9 @@ dependencies = [
[[package]]
name = "syn"
-version = "2.0.102"
+version = "2.0.118"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6397daf94fa90f058bd0fd88429dd9e5738999cca8d701813c80723add80462"
+checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
dependencies = [
"proc-macro2",
"quote",
@@ -13441,14 +13381,14 @@ dependencies = [
[[package]]
name = "syn-solidity"
-version = "1.5.7"
+version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "53f425ae0b12e2f5ae65542e00898d500d4d318b4baf09f40fd0d410454e9947"
+checksum = "ec005042c7d952febc1a3ef5b0f6674e9054aa836877a31c90b20e25b3d31744"
dependencies = [
"paste",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13468,7 +13408,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13482,16 +13422,16 @@ dependencies = [
"ntapi",
"objc2-core-foundation",
"objc2-io-kit",
- "windows 0.62.1",
+ "windows",
]
[[package]]
name = "system-configuration"
-version = "0.6.1"
+version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
+checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
dependencies = [
- "bitflags 2.10.0",
+ "bitflags",
"core-foundation 0.9.4",
"system-configuration-sys",
]
@@ -13520,24 +13460,15 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
name = "tempfile"
-version = "3.20.0"
+version = "3.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
+checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
dependencies = [
"fastrand",
- "getrandom 0.3.3",
+ "getrandom 0.4.3",
"once_cell",
"rustix",
- "windows-sys 0.59.0",
-]
-
-[[package]]
-name = "termcolor"
-version = "1.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
-dependencies = [
- "winapi-util",
+ "windows-sys 0.52.0",
]
[[package]]
@@ -13555,10 +13486,10 @@ version = "3.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adcb7fd841cd518e279be3d5a3eb0636409487998a4aff22f3de87b81e88384f"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13569,7 +13500,7 @@ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
"test-case-core",
]
@@ -13584,11 +13515,11 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "2.0.12"
+version = "2.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
+checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
dependencies = [
- "thiserror-impl 2.0.12",
+ "thiserror-impl 2.0.18",
]
[[package]]
@@ -13599,18 +13530,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "thiserror-impl"
-version = "2.0.12"
+version = "2.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
+checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13621,26 +13552,25 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
[[package]]
name = "thread-priority"
-version = "3.0.0"
+version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2210811179577da3d54eb69ab0b50490ee40491a25d95b8c6011ba40771cb721"
+checksum = "8d2e834949be5111506bb252643498af1514f600d9e1dceedaa42afae155b67f"
dependencies = [
- "bitflags 2.10.0",
- "cfg-if 1.0.1",
+ "bitflags",
+ "cfg-if",
"libc",
"log",
"rustversion",
- "windows 0.61.3",
+ "windows",
]
[[package]]
name = "thread_local"
-version = "1.1.8"
+version = "1.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
+checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070"
dependencies = [
- "cfg-if 1.0.1",
- "once_cell",
+ "cfg-if",
]
[[package]]
@@ -13654,9 +13584,9 @@ dependencies = [
[[package]]
name = "tikv-jemalloc-sys"
-version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
+version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d"
+checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
dependencies = [
"cc",
"libc",
@@ -13664,9 +13594,9 @@ dependencies = [
[[package]]
name = "tikv-jemallocator"
-version = "0.6.0"
+version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865"
+checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
dependencies = [
"libc",
"tikv-jemalloc-sys",
@@ -13674,12 +13604,11 @@ dependencies = [
[[package]]
name = "time"
-version = "0.3.46"
+version = "0.3.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5"
+checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50"
dependencies = [
"deranged",
- "itoa",
"libc",
"num-conv",
"num_threads",
@@ -13691,15 +13620,15 @@ dependencies = [
[[package]]
name = "time-core"
-version = "0.1.8"
+version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
+checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
[[package]]
name = "time-macros"
-version = "0.2.26"
+version = "0.2.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4"
+checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f"
dependencies = [
"num-conv",
"time-core",
@@ -13716,9 +13645,9 @@ dependencies = [
[[package]]
name = "tinystr"
-version = "0.8.1"
+version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
+checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
dependencies = [
"displaydoc",
"zerovec",
@@ -13736,9 +13665,9 @@ dependencies = [
[[package]]
name = "tinyvec"
-version = "1.9.0"
+version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
+checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
dependencies = [
"tinyvec_macros",
]
@@ -13751,9 +13680,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
-version = "1.52.1"
+version = "1.52.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6"
+checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
dependencies = [
"bytes",
"libc",
@@ -13761,9 +13690,9 @@ dependencies = [
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
- "socket2 0.6.3",
+ "socket2 0.6.5",
"tokio-macros",
- "windows-sys 0.61.1",
+ "windows-sys 0.61.2",
]
[[package]]
@@ -13774,7 +13703,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -13789,9 +13718,9 @@ dependencies = [
[[package]]
name = "tokio-rustls"
-version = "0.26.2"
+version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
+checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
dependencies = [
"rustls",
"tokio",
@@ -13799,9 +13728,9 @@ dependencies = [
[[package]]
name = "tokio-stream"
-version = "0.1.17"
+version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
+checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
dependencies = [
"futures-core",
"pin-project-lite",
@@ -13828,9 +13757,9 @@ dependencies = [
[[package]]
name = "tokio-util"
-version = "0.7.15"
+version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
+checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
dependencies = [
"bytes",
"futures-core",
@@ -13855,17 +13784,17 @@ dependencies = [
[[package]]
name = "toml"
-version = "0.9.5"
+version = "0.9.12+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
+checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
dependencies = [
- "indexmap 2.12.1",
- "serde",
- "serde_spanned 1.0.3",
- "toml_datetime 0.7.3",
+ "indexmap 2.14.0",
+ "serde_core",
+ "serde_spanned 1.1.1",
+ "toml_datetime 0.7.5+spec-1.1.0",
"toml_parser",
"toml_writer",
- "winnow 0.7.14",
+ "winnow 0.7.15",
]
[[package]]
@@ -13879,9 +13808,18 @@ dependencies = [
[[package]]
name = "toml_datetime"
-version = "0.7.3"
+version = "0.7.5+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
+dependencies = [
+ "serde_core",
+]
+
+[[package]]
+name = "toml_datetime"
+version = "1.1.1+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
+checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
dependencies = [
"serde_core",
]
@@ -13892,7 +13830,7 @@ version = "0.19.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
dependencies = [
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"toml_datetime 0.6.11",
"winnow 0.5.40",
]
@@ -13903,21 +13841,33 @@ version = "0.22.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
dependencies = [
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"serde",
"serde_spanned 0.6.9",
"toml_datetime 0.6.11",
"toml_write",
- "winnow 0.7.14",
+ "winnow 0.7.15",
+]
+
+[[package]]
+name = "toml_edit"
+version = "0.25.12+spec-1.1.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "d2153edc6955a6c354fad8f5efd38b6a8769bdccf9fe50f8e1329f81b0baa5d7"
+dependencies = [
+ "indexmap 2.14.0",
+ "toml_datetime 1.1.1+spec-1.1.0",
+ "toml_parser",
+ "winnow 1.0.4",
]
[[package]]
name = "toml_parser"
-version = "1.0.4"
+version = "1.1.2+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
+checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
dependencies = [
- "winnow 0.7.14",
+ "winnow 1.0.4",
]
[[package]]
@@ -13928,20 +13878,20 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
[[package]]
name = "toml_writer"
-version = "1.0.4"
+version = "1.1.1+spec-1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
+checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
[[package]]
name = "tonic"
-version = "0.14.3"
+version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a286e33f82f8a1ee2df63f4fa35c0becf4a85a0cb03091a15fd7bf0b402dc94a"
+checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
dependencies = [
"async-trait",
"base64 0.22.1",
"bytes",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"http-body-util",
"hyper",
@@ -13960,9 +13910,9 @@ dependencies = [
[[package]]
name = "tonic-prost"
-version = "0.14.3"
+version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d6c55a2d6a14174563de34409c9f92ff981d006f56da9c6ecd40d9d4a31500b0"
+checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
dependencies = [
"bytes",
"prost",
@@ -13971,14 +13921,14 @@ dependencies = [
[[package]]
name = "tower"
-version = "0.5.2"
+version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
+checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
dependencies = [
"futures-core",
"futures-util",
"hdrhistogram",
- "indexmap 2.12.1",
+ "indexmap 2.14.0",
"pin-project-lite",
"slab",
"sync_wrapper",
@@ -13991,22 +13941,21 @@ dependencies = [
[[package]]
name = "tower-http"
-version = "0.6.8"
+version = "0.6.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
+checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
dependencies = [
"async-compression",
"base64 0.22.1",
- "bitflags 2.10.0",
+ "bitflags",
"bytes",
"futures-core",
"futures-util",
- "http 1.3.1",
+ "http 1.4.2",
"http-body",
"http-body-util",
"http-range-header",
"httpdate",
- "iri-string",
"mime",
"mime_guess",
"percent-encoding",
@@ -14017,6 +13966,7 @@ dependencies = [
"tower-layer",
"tower-service",
"tracing",
+ "url",
"uuid",
]
@@ -14046,9 +13996,9 @@ dependencies = [
[[package]]
name = "tracing-actix-web"
-version = "0.7.20"
+version = "0.7.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2f28f45dd524790b44a7b372f7c3aec04a3af6b42d494e861b67de654cb25a5e"
+checksum = "36bb7a33ce7f0807d44124b5119ea3581fd59028db56477a7aa01741c869ca6a"
dependencies = [
"actix-web",
"mutually_exclusive_features",
@@ -14059,14 +14009,15 @@ dependencies = [
[[package]]
name = "tracing-appender"
-version = "0.2.4"
+version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
+checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c"
dependencies = [
"crossbeam-channel",
- "thiserror 2.0.12",
+ "symlink",
+ "thiserror 2.0.18",
"time",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -14077,7 +14028,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -14100,7 +14051,7 @@ dependencies = [
"smallvec",
"thiserror 1.0.69",
"tracing",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -14121,7 +14072,7 @@ checksum = "2d3a81ed245bfb62592b1e2bc153e77656d94ee6a0497683a65a12ccaf2438d0"
dependencies = [
"libc",
"tracing-core",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -14144,7 +14095,7 @@ dependencies = [
"time",
"tracing",
"tracing-core",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -14159,7 +14110,7 @@ dependencies = [
"tracing",
"tracing-core",
"tracing-log",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
"web-time",
]
@@ -14169,14 +14120,14 @@ version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c175f7ecc002b6ef04776a39f440503e4e788790ddbdbfac8259b7a069526334"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"itoa",
"libc",
- "mach2",
+ "mach2 0.5.0",
"memmap2",
"smallvec",
"tracing-core",
- "tracing-subscriber 0.3.22",
+ "tracing-subscriber 0.3.23",
]
[[package]]
@@ -14200,9 +14151,9 @@ dependencies = [
[[package]]
name = "tracing-subscriber"
-version = "0.3.22"
+version = "0.3.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
+checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
dependencies = [
"matchers",
"nu-ansi-term",
@@ -14251,7 +14202,7 @@ dependencies = [
"darling 0.23.0",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -14260,21 +14211,6 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
-[[package]]
-name = "tstr"
-version = "0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f8e0294f14baae476d0dd0a2d780b2e24d66e349a9de876f5126777a37bdba7"
-dependencies = [
- "tstr_proc_macros",
-]
-
-[[package]]
-name = "tstr_proc_macros"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e78122066b0cb818b8afd08f7ed22f7fdbc3e90815035726f0840d0d26c0747a"
-
[[package]]
name = "tungstenite"
version = "0.28.0"
@@ -14283,23 +14219,17 @@ checksum = "8628dcc84e5a09eb3d8423d6cb682965dea9133204e8fb3efee74c2a0c259442"
dependencies = [
"bytes",
"data-encoding",
- "http 1.3.1",
+ "http 1.4.2",
"httparse",
"log",
- "rand 0.9.2",
+ "rand 0.9.5",
"rustls",
"rustls-pki-types",
- "sha1",
- "thiserror 2.0.12",
+ "sha1 0.10.7",
+ "thiserror 2.0.18",
"utf-8",
]
-[[package]]
-name = "typed-arena"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
-
[[package]]
name = "typeid"
version = "1.0.3"
@@ -14308,15 +14238,9 @@ checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
[[package]]
name = "typenum"
-version = "1.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
-
-[[package]]
-name = "typewit"
-version = "1.14.2"
+version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8c1ae7cc0fdb8b842d65d127cb981574b0d2b249b74d1c7a2986863dc134f71"
+checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
[[package]]
name = "ucd-trie"
@@ -14356,21 +14280,21 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
[[package]]
name = "unicase"
-version = "2.8.1"
+version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
+checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
[[package]]
name = "unicode-ident"
-version = "1.0.18"
+version = "1.0.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
+checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
[[package]]
name = "unicode-segmentation"
-version = "1.12.0"
+version = "1.13.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
+checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
[[package]]
name = "unicode-xid"
@@ -14384,7 +14308,7 @@ version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
dependencies = [
- "crypto-common",
+ "crypto-common 0.1.7",
"subtle",
]
@@ -14430,14 +14354,15 @@ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
[[package]]
name = "url"
-version = "2.5.4"
+version = "2.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
+checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
+ "serde_derive",
]
[[package]]
@@ -14460,11 +14385,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
[[package]]
name = "uuid"
-version = "1.19.0"
+version = "1.23.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
+checksum = "ea5fab0d6c3c01ae70085a09cb03d4c7a1d6314e2b3e075392783396d724ca0a"
dependencies = [
- "getrandom 0.3.3",
+ "getrandom 0.4.3",
"js-sys",
"wasm-bindgen",
]
@@ -14579,40 +14504,22 @@ version = "0.11.1+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
-[[package]]
-name = "wasi"
-version = "0.14.2+wasi-0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
-dependencies = [
- "wit-bindgen-rt",
-]
-
[[package]]
name = "wasip2"
-version = "1.0.3+wasi-0.2.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
-dependencies = [
- "wit-bindgen 0.57.1",
-]
-
-[[package]]
-name = "wasip3"
-version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
+version = "1.0.4+wasi-0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
+checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
dependencies = [
- "wit-bindgen 0.51.0",
+ "wit-bindgen",
]
[[package]]
name = "wasm-bindgen"
-version = "0.2.120"
+version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df52b6d9b87e0c74c9edfa1eb2d9bf85e5d63515474513aa50fa181b3c4f5db1"
+checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
dependencies = [
- "cfg-if 1.0.1",
+ "cfg-if",
"once_cell",
"rustversion",
"wasm-bindgen-macro",
@@ -14621,9 +14528,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
-version = "0.4.70"
+version = "0.4.76"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af934872acec734c2d80e6617bbb5ff4f12b052dd8e6332b0817bce889516084"
+checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
dependencies = [
"js-sys",
"wasm-bindgen",
@@ -14631,9 +14538,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro"
-version = "0.2.120"
+version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "78b1041f495fb322e64aca85f5756b2172e35cd459376e67f2a6c9dffcedb103"
+checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -14641,48 +14548,26 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
-version = "0.2.120"
+version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9dcd0ff20416988a18ac686d4d4d0f6aae9ebf08a389ff5d29012b05af2a1b41"
+checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
dependencies = [
"bumpalo",
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
-version = "0.2.120"
+version = "0.2.126"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49757b3c82ebf16c57d69365a142940b384176c24df52a087fb748e2085359ea"
+checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
dependencies = [
"unicode-ident",
]
-[[package]]
-name = "wasm-encoder"
-version = "0.244.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
-dependencies = [
- "leb128fmt",
- "wasmparser",
-]
-
-[[package]]
-name = "wasm-metadata"
-version = "0.244.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
-dependencies = [
- "anyhow",
- "indexmap 2.12.1",
- "wasm-encoder",
- "wasmparser",
-]
-
[[package]]
name = "wasm-streams"
version = "0.5.0"
@@ -14696,18 +14581,6 @@ dependencies = [
"web-sys",
]
-[[package]]
-name = "wasmparser"
-version = "0.244.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
-dependencies = [
- "bitflags 2.10.0",
- "hashbrown 0.15.4",
- "indexmap 2.12.1",
- "semver 1.0.26",
-]
-
[[package]]
name = "wasmtimer"
version = "0.4.3"
@@ -14724,9 +14597,9 @@ dependencies = [
[[package]]
name = "web-sys"
-version = "0.3.97"
+version = "0.3.103"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2eadbac71025cd7b0834f20d1fe8472e8495821b4e9801eb0a60bd1f19827602"
+checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
dependencies = [
"js-sys",
"wasm-bindgen",
@@ -14748,14 +14621,14 @@ version = "0.26.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e"
dependencies = [
- "webpki-root-certs 1.0.5",
+ "webpki-root-certs 1.0.8",
]
[[package]]
name = "webpki-root-certs"
-version = "1.0.5"
+version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
+checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267"
dependencies = [
"rustls-pki-types",
]
@@ -14766,14 +14639,14 @@ version = "0.26.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
dependencies = [
- "webpki-roots 1.0.0",
+ "webpki-roots 1.0.8",
]
[[package]]
name = "webpki-roots"
-version = "1.0.0"
+version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2853738d1cc4f2da3a225c18ec6c3721abb31961096e9dbf5ab35fa88b19cfdb"
+checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
dependencies = [
"rustls-pki-types",
]
@@ -14816,7 +14689,7 @@ version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
dependencies = [
- "windows-sys 0.48.0",
+ "windows-sys 0.52.0",
]
[[package]]
@@ -14827,93 +14700,47 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows"
-version = "0.61.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
-dependencies = [
- "windows-collections 0.2.0",
- "windows-core 0.61.2",
- "windows-future 0.2.1",
- "windows-link 0.1.3",
- "windows-numerics 0.2.0",
-]
-
-[[package]]
-name = "windows"
-version = "0.62.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49e6c4a1f363c8210c6f77ba24f645c61c6fb941eccf013da691f7e09515b8ac"
-dependencies = [
- "windows-collections 0.3.1",
- "windows-core 0.62.1",
- "windows-future 0.3.1",
- "windows-numerics 0.3.0",
-]
-
-[[package]]
-name = "windows-collections"
-version = "0.2.0"
+version = "0.62.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
+checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
dependencies = [
- "windows-core 0.61.2",
+ "windows-collections",
+ "windows-core",
+ "windows-future",
+ "windows-numerics",
]
[[package]]
name = "windows-collections"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "123e712f464a8a60ce1a13f4c446d2d43ab06464cb5842ff68f5c71b6fb7852e"
-dependencies = [
- "windows-core 0.62.1",
-]
-
-[[package]]
-name = "windows-core"
-version = "0.61.2"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
+checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
dependencies = [
- "windows-implement",
- "windows-interface",
- "windows-link 0.1.3",
- "windows-result 0.3.4",
- "windows-strings 0.4.2",
+ "windows-core",
]
[[package]]
name = "windows-core"
-version = "0.62.1"
+version = "0.62.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9"
+checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
dependencies = [
"windows-implement",
"windows-interface",
- "windows-link 0.2.0",
- "windows-result 0.4.0",
- "windows-strings 0.5.0",
-]
-
-[[package]]
-name = "windows-future"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
-dependencies = [
- "windows-core 0.61.2",
- "windows-link 0.1.3",
- "windows-threading 0.1.0",
+ "windows-link",
+ "windows-result",
+ "windows-strings",
]
[[package]]
name = "windows-future"
-version = "0.3.1"
+version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68f3db6b24b120200d649cd4811b4947188ed3a8d2626f7075146c5d178a9a4a"
+checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
dependencies = [
- "windows-core 0.62.1",
- "windows-link 0.2.0",
- "windows-threading 0.2.0",
+ "windows-core",
+ "windows-link",
+ "windows-threading",
]
[[package]]
@@ -14924,7 +14751,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -14935,86 +14762,52 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "windows-link"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
-
-[[package]]
-name = "windows-link"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
-
-[[package]]
-name = "windows-numerics"
-version = "0.2.0"
+version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
-dependencies = [
- "windows-core 0.61.2",
- "windows-link 0.1.3",
-]
+checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
[[package]]
name = "windows-numerics"
-version = "0.3.0"
+version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ce3498fe0aba81e62e477408383196b4b0363db5e0c27646f932676283b43d8"
+checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
dependencies = [
- "windows-core 0.62.1",
- "windows-link 0.2.0",
+ "windows-core",
+ "windows-link",
]
[[package]]
name = "windows-registry"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
-dependencies = [
- "windows-link 0.1.3",
- "windows-result 0.3.4",
- "windows-strings 0.4.2",
-]
-
-[[package]]
-name = "windows-result"
-version = "0.3.4"
+version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
+checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
dependencies = [
- "windows-link 0.1.3",
+ "windows-link",
+ "windows-result",
+ "windows-strings",
]
[[package]]
name = "windows-result"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
-dependencies = [
- "windows-link 0.2.0",
-]
-
-[[package]]
-name = "windows-strings"
-version = "0.4.2"
+version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
+checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
dependencies = [
- "windows-link 0.1.3",
+ "windows-link",
]
[[package]]
name = "windows-strings"
-version = "0.5.0"
+version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
+checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
dependencies = [
- "windows-link 0.2.0",
+ "windows-link",
]
[[package]]
@@ -15026,15 +14819,6 @@ dependencies = [
"windows-targets 0.42.2",
]
-[[package]]
-name = "windows-sys"
-version = "0.48.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
-dependencies = [
- "windows-targets 0.48.5",
-]
-
[[package]]
name = "windows-sys"
version = "0.52.0"
@@ -15059,16 +14843,16 @@ version = "0.60.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
dependencies = [
- "windows-targets 0.53.4",
+ "windows-targets 0.53.5",
]
[[package]]
name = "windows-sys"
-version = "0.61.1"
+version = "0.61.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f"
+checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
dependencies = [
- "windows-link 0.2.0",
+ "windows-link",
]
[[package]]
@@ -15086,21 +14870,6 @@ dependencies = [
"windows_x86_64_msvc 0.42.2",
]
-[[package]]
-name = "windows-targets"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
-dependencies = [
- "windows_aarch64_gnullvm 0.48.5",
- "windows_aarch64_msvc 0.48.5",
- "windows_i686_gnu 0.48.5",
- "windows_i686_msvc 0.48.5",
- "windows_x86_64_gnu 0.48.5",
- "windows_x86_64_gnullvm 0.48.5",
- "windows_x86_64_msvc 0.48.5",
-]
-
[[package]]
name = "windows-targets"
version = "0.52.6"
@@ -15119,37 +14888,28 @@ dependencies = [
[[package]]
name = "windows-targets"
-version = "0.53.4"
+version = "0.53.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b"
+checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
dependencies = [
- "windows-link 0.2.0",
- "windows_aarch64_gnullvm 0.53.0",
- "windows_aarch64_msvc 0.53.0",
- "windows_i686_gnu 0.53.0",
- "windows_i686_gnullvm 0.53.0",
- "windows_i686_msvc 0.53.0",
- "windows_x86_64_gnu 0.53.0",
- "windows_x86_64_gnullvm 0.53.0",
- "windows_x86_64_msvc 0.53.0",
+ "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-threading"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
-dependencies = [
- "windows-link 0.1.3",
-]
-
-[[package]]
-name = "windows-threading"
-version = "0.2.0"
+version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab47f085ad6932defa48855254c758cdd0e2f2d48e62a34118a268d8f345e118"
+checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
dependencies = [
- "windows-link 0.2.0",
+ "windows-link",
]
[[package]]
@@ -15158,12 +14918,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
-
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
@@ -15172,9 +14926,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
[[package]]
name = "windows_aarch64_gnullvm"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
+checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
[[package]]
name = "windows_aarch64_msvc"
@@ -15182,12 +14936,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
-
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
@@ -15196,9 +14944,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
[[package]]
name = "windows_aarch64_msvc"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
+checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
[[package]]
name = "windows_i686_gnu"
@@ -15206,12 +14954,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
-[[package]]
-name = "windows_i686_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
-
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
@@ -15220,9 +14962,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
[[package]]
name = "windows_i686_gnu"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
+checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
[[package]]
name = "windows_i686_gnullvm"
@@ -15232,9 +14974,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
[[package]]
name = "windows_i686_gnullvm"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
+checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
[[package]]
name = "windows_i686_msvc"
@@ -15242,12 +14984,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
-[[package]]
-name = "windows_i686_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
-
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
@@ -15256,9 +14992,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
[[package]]
name = "windows_i686_msvc"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
+checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
[[package]]
name = "windows_x86_64_gnu"
@@ -15266,12 +15002,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
-
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
@@ -15280,9 +15010,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
[[package]]
name = "windows_x86_64_gnu"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
+checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
[[package]]
name = "windows_x86_64_gnullvm"
@@ -15290,12 +15020,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
-
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
@@ -15304,9 +15028,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
[[package]]
name = "windows_x86_64_gnullvm"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
+checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
[[package]]
name = "windows_x86_64_msvc"
@@ -15314,12 +15038,6 @@ version = "0.42.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
-
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
@@ -15328,9 +15046,9 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
[[package]]
name = "windows_x86_64_msvc"
-version = "0.53.0"
+version = "0.53.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
+checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
[[package]]
name = "winnow"
@@ -15343,30 +15061,20 @@ dependencies = [
[[package]]
name = "winnow"
-version = "0.7.14"
+version = "0.7.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
+checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
dependencies = [
"memchr",
]
[[package]]
-name = "winreg"
-version = "0.50.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
-dependencies = [
- "cfg-if 1.0.1",
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "wit-bindgen"
-version = "0.51.0"
+name = "winnow"
+version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
+checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
dependencies = [
- "wit-bindgen-rust-macro",
+ "memchr",
]
[[package]]
@@ -15375,99 +15083,11 @@ version = "0.57.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
-[[package]]
-name = "wit-bindgen-core"
-version = "0.51.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
-dependencies = [
- "anyhow",
- "heck",
- "wit-parser",
-]
-
-[[package]]
-name = "wit-bindgen-rt"
-version = "0.39.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
-dependencies = [
- "bitflags 2.10.0",
-]
-
-[[package]]
-name = "wit-bindgen-rust"
-version = "0.51.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
-dependencies = [
- "anyhow",
- "heck",
- "indexmap 2.12.1",
- "prettyplease",
- "syn 2.0.102",
- "wasm-metadata",
- "wit-bindgen-core",
- "wit-component",
-]
-
-[[package]]
-name = "wit-bindgen-rust-macro"
-version = "0.51.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
-dependencies = [
- "anyhow",
- "prettyplease",
- "proc-macro2",
- "quote",
- "syn 2.0.102",
- "wit-bindgen-core",
- "wit-bindgen-rust",
-]
-
-[[package]]
-name = "wit-component"
-version = "0.244.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
-dependencies = [
- "anyhow",
- "bitflags 2.10.0",
- "indexmap 2.12.1",
- "log",
- "serde",
- "serde_derive",
- "serde_json",
- "wasm-encoder",
- "wasm-metadata",
- "wasmparser",
- "wit-parser",
-]
-
-[[package]]
-name = "wit-parser"
-version = "0.244.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
-dependencies = [
- "anyhow",
- "id-arena",
- "indexmap 2.12.1",
- "log",
- "semver 1.0.26",
- "serde",
- "serde_derive",
- "serde_json",
- "unicode-xid",
- "wasmparser",
-]
-
[[package]]
name = "writeable"
-version = "0.6.1"
+version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
+checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
[[package]]
name = "ws_stream_wasm"
@@ -15481,8 +15101,8 @@ dependencies = [
"log",
"pharos",
"rustc_version 0.4.1",
- "send_wrapper 0.6.0",
- "thiserror 2.0.12",
+ "send_wrapper",
+ "thiserror 2.0.18",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
@@ -15503,23 +15123,12 @@ version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
-[[package]]
-name = "yastl"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ca6c5a4d66c1a9ea261811cf4773c27343de7e5033e1b75ea3f297dc7db3c1a"
-dependencies = [
- "flume",
- "scopeguard",
-]
-
[[package]]
name = "yoke"
-version = "0.8.0"
+version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
+checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
dependencies = [
- "serde",
"stable_deref_trait",
"yoke-derive",
"zerofrom",
@@ -15527,82 +15136,82 @@ dependencies = [
[[package]]
name = "yoke-derive"
-version = "0.8.0"
+version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
+checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
"synstructure",
]
[[package]]
name = "zerocopy"
-version = "0.8.25"
+version = "0.8.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
+checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
-version = "0.8.25"
+version = "0.8.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
+checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "zerofrom"
-version = "0.1.6"
+version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
+checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
-version = "0.1.6"
+version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
+checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
"synstructure",
]
[[package]]
name = "zeroize"
-version = "1.8.1"
+version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
+checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
-version = "1.4.2"
+version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
+checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
name = "zerotrie"
-version = "0.2.2"
+version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
+checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
dependencies = [
"displaydoc",
"yoke",
@@ -15611,9 +15220,9 @@ dependencies = [
[[package]]
name = "zerovec"
-version = "0.11.2"
+version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
+checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
dependencies = [
"yoke",
"zerofrom",
@@ -15622,13 +15231,13 @@ dependencies = [
[[package]]
name = "zerovec-derive"
-version = "0.11.1"
+version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
+checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
dependencies = [
"proc-macro2",
"quote",
- "syn 2.0.102",
+ "syn 2.0.118",
]
[[package]]
@@ -15642,7 +15251,34 @@ dependencies = [
"blake2",
"bls12_381 0.7.1",
"byteorder",
- "cfg-if 1.0.1",
+ "cfg-if",
+ "group 0.12.1",
+ "group 0.13.0",
+ "halo2",
+ "hex",
+ "jubjub",
+ "lazy_static",
+ "pasta_curves 0.5.1",
+ "rand 0.8.7",
+ "serde",
+ "sha2 0.10.9",
+ "sha3",
+ "subtle",
+]
+
+[[package]]
+name = "zkhash-axiom"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "7d038a7895d0e3ab0a352f53e7eb4f1f829f88fce2fb3cff93d665a8a0e01af6"
+dependencies = [
+ "ark-ff 0.4.2",
+ "ark-std 0.4.0",
+ "bitvec",
+ "blake2",
+ "bls12_381 0.7.1",
+ "byteorder",
+ "cfg-if",
"group 0.12.1",
"group 0.13.0",
"halo2",
@@ -15650,7 +15286,7 @@ dependencies = [
"jubjub",
"lazy_static",
"pasta_curves 0.5.1",
- "rand 0.8.5",
+ "rand 0.8.7",
"serde",
"sha2 0.10.9",
"sha3",
@@ -15659,9 +15295,9 @@ dependencies = [
[[package]]
name = "zmij"
-version = "1.0.19"
+version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"
+checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
[[package]]
name = "zstd"
@@ -15683,9 +15319,9 @@ dependencies = [
[[package]]
name = "zstd-sys"
-version = "2.0.15+zstd.1.5.7"
+version = "2.0.16+zstd.1.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
+checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
dependencies = [
"cc",
"pkg-config",
diff --git a/Cargo.toml b/Cargo.toml
index 99d257335..2e3e13a37 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -126,6 +126,7 @@ openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", branc
# openvm (host only)
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", branch = "develop-v2.1.0-rv64", default-features = false }
+openvm-sdk-config = { git = "https://github.com/openvm-org/openvm.git", branch = "develop-v2.1.0-rv64", default-features = false }
openvm-build = { git = "https://github.com/openvm-org/openvm.git", branch = "develop-v2.1.0-rv64", default-features = false }
openvm-stark-sdk = { git = "https://github.com/openvm-org/stark-backend.git", branch = "develop-v2", default-features = false }
diff --git a/crates/kzg/Cargo.toml b/crates/kzg/Cargo.toml
index 98ecfd1fd..c02c97514 100644
--- a/crates/kzg/Cargo.toml
+++ b/crates/kzg/Cargo.toml
@@ -30,6 +30,7 @@ openvm-stark-sdk.workspace = true
openvm.workspace = true
openvm-sdk.workspace = true
+openvm-sdk-config.workspace = true
openvm-build.workspace = true
openvm-circuit = { workspace = true, features = ["parallel", "test-utils"] }
openvm-pairing = { workspace = true, features = ["halo2curves"] }
diff --git a/crates/kzg/src/kzg_proof.rs b/crates/kzg/src/kzg_proof.rs
index ef6e71be6..7ec6b47fd 100644
--- a/crates/kzg/src/kzg_proof.rs
+++ b/crates/kzg/src/kzg_proof.rs
@@ -293,7 +293,7 @@ pub mod tests {
let kzg_settings = KzgSettings::load_trusted_setup_file().unwrap();
for (test_file, data) in &VERIFY_KZG_PROOF_TESTS {
- let test: Test = serde_yaml::from_str(data).unwrap();
+ let test: Test> = serde_yaml::from_str(data).unwrap();
let (Ok(commitment), Ok(z), Ok(y), Ok(proof)) = (
test.input.get_commitment(),
test.input.get_z(),
diff --git a/crates/kzg/tests/integration_tests.rs b/crates/kzg/tests/integration_tests.rs
index 233ab75e2..f46f93fcf 100644
--- a/crates/kzg/tests/integration_tests.rs
+++ b/crates/kzg/tests/integration_tests.rs
@@ -1,7 +1,6 @@
use std::path::PathBuf;
use openvm_build::{GuestOptions, TargetFilter};
-use openvm_circuit::openvm_stark_sdk::config::setup_tracing;
use openvm_kzg::{
test_files::{
ONLY_INVALID_KZG_PROOF_TESTS, ONLY_VALID_KZG_PROOF_TESTS, SINGLE_VALID_KZG_PROOF_TEST,
@@ -10,9 +9,11 @@ use openvm_kzg::{
KzgInputs,
};
use openvm_sdk::{
- config::{AppConfig, SdkVmConfig},
+ config::{AggregationSystemParams, AppConfig},
Sdk, StdIn,
};
+use openvm_sdk_config::SdkVmConfig;
+use openvm_stark_sdk::utils::setup_tracing;
use serde_yaml::from_str;
#[test]
@@ -47,7 +48,7 @@ fn test_multiple_invalid_verify_kzg() {
}
pub fn run_test_from_yaml_str(data: &str) {
- let test: Test = from_str(data).unwrap();
+ let test: Test> = from_str(data).unwrap();
let (Ok(commitment), Ok(z), Ok(y), Ok(proof)) = (
test.input.get_commitment(),
test.input.get_z(),
@@ -67,7 +68,7 @@ pub fn run_guest_program(input: KzgInputs) {
setup_tracing();
let app_config: AppConfig =
toml::from_str(include_str!("programs/verify_kzg/openvm.toml")).unwrap();
- let sdk = Sdk::new(app_config).unwrap();
+ let sdk = Sdk::new(app_config, AggregationSystemParams::default()).unwrap();
let guest_opts = GuestOptions::default();
let target_filter =