diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..d00bad4 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[build] +# aptos-core requirements to access tokio’s experimental APIs. +rustflags = ["--cfg", "tokio_unstable"] diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index bee7590..c08fe51 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -1,8 +1,8 @@ name: Integration Test on: - pull_request: - branches: [master, main] + # pull_request: + # branches: [master, main] jobs: test: diff --git a/Cargo.lock b/Cargo.lock index 218f84b..0fdc89d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7,9 +7,15 @@ name = "Inflector" version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" + +[[package]] +name = "abstract-domain-derive" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "lazy_static", - "regex", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] @@ -73,21 +79,6 @@ dependencies = [ "subtle", ] -[[package]] -name = "aes-gcm-siv" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae0784134ba9375416d469ec31e7c5f9fa94405049cf08c5ce5b4698be673e0d" -dependencies = [ - "aead", - "aes", - "cipher", - "ctr", - "polyval", - "subtle", - "zeroize", -] - [[package]] name = "ahash" version = "0.7.8" @@ -106,7 +97,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", + "getrandom 0.3.3", "once_cell", + "serde", "version_check", "zerocopy", ] @@ -142,35 +135,23 @@ dependencies = [ ] [[package]] -name = "allocative" -version = "0.3.4" +name = "allocator-api2" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fac2ce611db8b8cee9b2aa886ca03c924e9da5e5295d0dbd0526e5d0b0710f7" -dependencies = [ - "allocative_derive", - "bumpalo", - "ctor", - "hashbrown 0.14.5", - "num-bigint 0.4.6", -] +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] -name = "allocative_derive" -version = "0.3.3" +name = "ambassador" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe233a377643e0fc1a56421d7c90acdec45c291b30345eb9f08e8d0ddce5a4ab" +checksum = "e68de4cdc6006162265d0957edb4a860fe4e711b1dc17a5746fd95f952f08285" dependencies = [ + "itertools 0.10.5", "proc-macro2", "quote", - "syn 2.0.106", + "syn 1.0.109", ] -[[package]] -name = "allocator-api2" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" - [[package]] name = "android_system_properties" version = "0.1.5" @@ -181,76 +162,18 @@ dependencies = [ ] [[package]] -name = "anemo" -version = "0.0.0" -source = "git+https://github.com/mystenlabs/anemo.git?rev=9c52c3c7946532163a79129db15180cdb984bab4#9c52c3c7946532163a79129db15180cdb984bab4" -dependencies = [ - "anyhow", - "async-trait", - "bincode", - "bytes", - "ed25519", - "futures", - "hex", - "http 1.3.1", - "matchit 0.5.0", - "pin-project-lite", - "pkcs8 0.10.2", - "quinn", - "quinn-proto", - "rand 0.8.5", - "rcgen", - "ring", - "rustls", - "rustls-webpki", - "serde", - "serde_json", - "socket2 0.5.10", - "tap", - "thiserror 1.0.69", - "tokio", - "tokio-util 0.7.16", - "tower 0.4.13", - "tracing", - "x509-parser", -] - -[[package]] -name = "anemo-build" -version = "0.0.0" -source = "git+https://github.com/mystenlabs/anemo.git?rev=9c52c3c7946532163a79129db15180cdb984bab4#9c52c3c7946532163a79129db15180cdb984bab4" -dependencies = [ - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "anemo-tower" -version = "0.0.0" -source = "git+https://github.com/mystenlabs/anemo.git?rev=9c52c3c7946532163a79129db15180cdb984bab4#9c52c3c7946532163a79129db15180cdb984bab4" -dependencies = [ - "anemo", - "bytes", - "dashmap", - "futures", - "governor", - "nonzero_ext", - "pin-project-lite", - "tokio", - "tower 0.4.13", - "tracing", - "uuid", -] +name = "ansi-escapes" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3c0daaaae24df5995734b689627f8fa02101bc5bbc768be3055b66a010d7af" [[package]] -name = "annotate-snippets" -version = "0.9.2" +name = "ansi_term" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccaf7e9dfbb6ab22c82e473cd1a8a7bd313c19a5b7e40970f3d89ef5a5c9e81e" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "unicode-width 0.1.14", + "winapi 0.3.9", ] [[package]] @@ -304,6224 +227,6699 @@ dependencies = [ ] [[package]] -name = "antithesis_sdk" -version = "0.2.6" +name = "anyhow" +version = "1.0.99" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dafc0460f582169b1414074fd82bedbda60456fb4df0a78dc7fef1306e732ea3" +checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" + +[[package]] +name = "aptos-accumulator" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "libc", - "libloading", - "linkme", - "once_cell", - "rand 0.8.5", - "rustc_version_runtime", - "serde", - "serde_json", + "anyhow", + "aptos-crypto", + "aptos-types", ] [[package]] -name = "anyhow" -version = "1.0.99" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" +name = "aptos-aggregator" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "backtrace", + "aptos-types", + "bcs 0.1.4", + "claims", + "move-binary-format", + "move-core-types", + "move-vm-types", ] [[package]] -name = "arc-swap" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" +name = "aptos-api" +version = "0.2.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "anyhow", + "aptos-api-types", + "aptos-bcs-utils", + "aptos-build-info", + "aptos-config", + "aptos-crypto", + "aptos-gas-schedule", + "aptos-global-constants", + "aptos-logger", + "aptos-mempool", + "aptos-metrics-core", + "aptos-runtimes", + "aptos-sdk", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "bcs 0.1.4", + "bytes", + "fail", + "futures", + "hex", + "itertools 0.13.0", + "mime", + "mini-moka", + "move-core-types", + "num_cpus", + "once_cell", + "paste", + "poem", + "poem-openapi", + "regex", + "rstest", "serde", + "serde_json", + "tokio", ] [[package]] -name = "ark-bn254" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a22f4561524cd949590d78d7d4c5df8f592430d221f7f3c9497bbafd8972120f" +name = "aptos-api-types" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ec", - "ark-ff", - "ark-std", + "anyhow", + "aptos-config", + "aptos-crypto", + "aptos-logger", + "aptos-openapi", + "aptos-resource-viewer", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "async-trait", + "bcs 0.1.4", + "bytes", + "hex", + "indoc", + "move-binary-format", + "move-core-types", + "once_cell", + "poem", + "poem-openapi", + "poem-openapi-derive", + "serde", + "serde_json", ] [[package]] -name = "ark-crypto-primitives" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3a13b34da09176a8baba701233fdffbaa7c1b1192ce031a3da4e55ce1f1a56" +name = "aptos-bcs-utils" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ec", - "ark-ff", - "ark-relations", - "ark-serialize", - "ark-snark", - "ark-std", - "blake2", - "derivative", - "digest 0.10.7", - "sha2 0.10.9", + "anyhow", + "hex", ] [[package]] -name = "ark-ec" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" +name = "aptos-bitvec" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ff", - "ark-poly", - "ark-serialize", - "ark-std", - "derivative", - "hashbrown 0.13.2", - "itertools 0.10.5", - "num-traits", - "zeroize", + "serde", + "serde_bytes", ] [[package]] -name = "ark-ff" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" +name = "aptos-block-executor" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ff-asm", - "ark-ff-macros", - "ark-serialize", - "ark-std", + "ambassador", + "anyhow", + "aptos-aggregator", + "aptos-crypto", + "aptos-drop-helper", + "aptos-gas-schedule", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "aptos-mvhashmap", + "aptos-types", + "aptos-vm-environment", + "aptos-vm-logging", + "aptos-vm-types", + "arc-swap", + "bcs 0.1.4", + "bytes", + "cfg-if", + "claims", + "concurrent-queue", + "crossbeam", "derivative", - "digest 0.10.7", - "itertools 0.10.5", - "num-bigint 0.4.6", - "num-traits", - "paste", - "rustc_version", - "zeroize", + "fail", + "hashbrown 0.14.5", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "num_cpus", + "once_cell", + "parking_lot", + "rand 0.7.3", + "rayon", ] [[package]] -name = "ark-ff-asm" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" -dependencies = [ - "quote", - "syn 1.0.109", +name = "aptos-block-partitioner" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-crypto", + "aptos-logger", + "aptos-metrics-core", + "aptos-types", + "bcs 0.1.4", + "clap 4.5.47", + "dashmap 7.0.0-rc2", + "itertools 0.13.0", + "move-core-types", + "once_cell", + "rand 0.7.3", + "rayon", + "serde", + "tikv-jemallocator", ] [[package]] -name = "ark-ff-macros" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" +name = "aptos-bounded-executor" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "num-bigint 0.4.6", - "num-traits", - "proc-macro2", - "quote", - "syn 1.0.109", + "futures", + "rustversion", + "tokio", ] [[package]] -name = "ark-groth16" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20ceafa83848c3e390f1cbf124bc3193b3e639b3f02009e0e290809a501b95fc" +name = "aptos-build-info" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-crypto-primitives", - "ark-ec", - "ark-ff", - "ark-poly", - "ark-relations", - "ark-serialize", - "ark-std", + "shadow-rs", ] [[package]] -name = "ark-poly" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" +name = "aptos-cached-packages" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ff", - "ark-serialize", - "ark-std", - "derivative", - "hashbrown 0.13.2", + "anyhow", + "aptos-framework", + "aptos-package-builder", + "aptos-types", + "bcs 0.1.4", + "move-core-types", + "once_cell", ] [[package]] -name = "ark-relations" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00796b6efc05a3f48225e59cb6a2cda78881e7c390872d5786aaf112f31fb4f0" +name = "aptos-channels" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ff", - "ark-std", - "tracing", + "anyhow", + "aptos-infallible", + "aptos-metrics-core", + "futures", ] [[package]] -name = "ark-secp256r1" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3975a01b0a6e3eae0f72ec7ca8598a6620fc72fa5981f6f5cca33b7cd788f633" +name = "aptos-compression" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-ec", - "ark-ff", - "ark-std", + "aptos-logger", + "aptos-metrics-core", + "lz4", + "once_cell", + "thiserror 1.0.69", ] [[package]] -name = "ark-serialize" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" +name = "aptos-config" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ark-serialize-derive", - "ark-std", - "digest 0.10.7", - "num-bigint 0.4.6", + "anyhow", + "aptos-crypto", + "aptos-global-constants", + "aptos-logger", + "aptos-secure-storage", + "aptos-short-hex-str", + "aptos-temppath", + "aptos-transaction-filters", + "aptos-types", + "arr_macro", + "bcs 0.1.4", + "byteorder", + "cfg-if", + "get_if_addrs", + "maplit", + "num_cpus", + "poem-openapi", + "rand 0.7.3", + "serde", + "serde_json", + "serde_merge", + "serde_yaml 0.8.26", + "strum 0.27.2", + "strum_macros 0.27.2", + "thiserror 1.0.69", + "url", ] [[package]] -name = "ark-serialize-derive" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea" +name = "aptos-consensus-types" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "anyhow", + "aptos-bitvec", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-executor-types", + "aptos-infallible", + "aptos-logger", + "aptos-short-hex-str", + "aptos-types", + "bcs 0.1.4", + "derivative", + "fail", + "futures", + "itertools 0.13.0", + "mini-moka", + "mirai-annotations", + "once_cell", + "rand 0.7.3", + "rayon", + "serde", + "tokio", ] [[package]] -name = "ark-snark" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84d3cc6833a335bb8a600241889ead68ee89a3cf8448081fb7694c0fe503da63" +name = "aptos-crypto" +version = "0.0.3" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "aes-gcm", + "anyhow", + "aptos-crypto-derive", + "arbitrary", + "ark-bn254", + "ark-ec", "ark-ff", - "ark-relations", - "ark-serialize", + "ark-groth16", "ark-std", + "base64 0.13.1", + "bcs 0.1.4", + "blst", + "bulletproofs", + "bytes", + "curve25519-dalek", + "curve25519-dalek-ng", + "digest 0.9.0", + "ed25519-dalek", + "ff", + "hex", + "hkdf 0.10.0", + "libsecp256k1", + "merlin", + "more-asserts", + "neptune", + "num-bigint 0.3.3", + "num-integer", + "once_cell", + "p256", + "poseidon-ark", + "proptest", + "proptest-derive", + "rand 0.7.3", + "rand_core 0.5.1", + "ring 0.16.20", + "serde", + "serde-name", + "serde_bytes", + "sha2 0.10.9", + "sha2 0.9.9", + "sha3", + "signature 2.2.0", + "static_assertions", + "thiserror 1.0.69", + "tiny-keccak", + "typenum", + "x25519-dalek", ] [[package]] -name = "ark-std" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" +name = "aptos-crypto-derive" +version = "0.0.3" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "num-traits", - "rand 0.8.5", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "arrayref" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" - -[[package]] -name = "arrayvec" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +name = "aptos-db" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-accumulator", + "aptos-config", + "aptos-crypto", + "aptos-db-indexer", + "aptos-db-indexer-schemas", + "aptos-executor-types", + "aptos-experimental-runtimes", + "aptos-infallible", + "aptos-jellyfish-merkle", + "aptos-logger", + "aptos-metrics-core", + "aptos-resource-viewer", + "aptos-rocksdb-options", + "aptos-schemadb", + "aptos-scratchpad", + "aptos-storage-interface", + "aptos-types", + "arc-swap", + "arr_macro", + "bcs 0.1.4", + "byteorder", + "claims", + "dashmap 7.0.0-rc2", + "either", + "hex", + "itertools 0.13.0", + "lru", + "move-core-types", + "once_cell", + "rayon", + "serde", + "static_assertions", + "status-line", + "tokio", +] [[package]] -name = "ascii-canvas" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" +name = "aptos-db-indexer" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "term", + "anyhow", + "aptos-config", + "aptos-db-indexer-schemas", + "aptos-logger", + "aptos-metrics-core", + "aptos-resource-viewer", + "aptos-rocksdb-options", + "aptos-schemadb", + "aptos-storage-interface", + "aptos-types", + "bcs 0.1.4", + "bytes", + "dashmap 7.0.0-rc2", + "move-core-types", + "once_cell", ] [[package]] -name = "asn1-rs" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" +name = "aptos-db-indexer-schemas" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "asn1-rs-derive", - "asn1-rs-impl", - "displaydoc", - "nom", - "num-traits", - "rusticata-macros", - "thiserror 2.0.16", - "time", + "anyhow", + "aptos-crypto", + "aptos-schemadb", + "aptos-storage-interface", + "aptos-types", + "bcs 0.1.4", + "byteorder", + "proptest", + "proptest-derive", + "serde", ] [[package]] -name = "asn1-rs-derive" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" +name = "aptos-dkg" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", - "synstructure 0.13.2", + "anyhow", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-runtimes", + "bcs 0.1.4", + "blst", + "blstrs", + "criterion", + "ff", + "group", + "hex", + "merlin", + "more-asserts", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "once_cell", + "pairing", + "rand 0.7.3", + "rand_core 0.5.1", + "rayon", + "serde", + "serde_bytes", + "sha3", + "static_assertions", ] [[package]] -name = "asn1-rs-impl" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" +name = "aptos-drop-helper" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "aptos-infallible", + "aptos-metrics-core", + "once_cell", + "threadpool", ] [[package]] -name = "async-compression" -version = "0.4.30" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23" +name = "aptos-event-notifications" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "compression-codecs", - "compression-core", - "futures-core", - "pin-project-lite", - "tokio", + "anyhow", + "aptos-channels", + "aptos-id-generator", + "aptos-infallible", + "aptos-storage-interface", + "aptos-types", + "futures", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "async-stream" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +name = "aptos-executor" +version = "0.1.0" dependencies = [ - "async-stream-impl", - "futures-core", - "pin-project-lite", + "anyhow", + "aptos-aggregator", + "aptos-config", + "aptos-db", + "aptos-executor 0.1.0 (git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4)", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "aptos-vm-environment", + "aptos-vm-genesis", + "aptos-vm-logging", + "aptos-vm-types", + "bcs 0.1.6", + "bytes", + "executor", + "move-binary-format", + "move-core-types", + "move-table-extension", + "move-vm-runtime", + "move-vm-types", + "serde", + "serde_yaml 0.9.34+deprecated", ] [[package]] -name = "async-stream-impl" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +name = "aptos-executor" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "anyhow", + "aptos-block-executor", + "aptos-consensus-types", + "aptos-crypto", + "aptos-drop-helper", + "aptos-executor-service", + "aptos-executor-types", + "aptos-experimental-runtimes", + "aptos-indexer-grpc-table-info", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "aptos-sdk", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "bcs 0.1.4", + "bytes", + "fail", + "itertools 0.13.0", + "move-core-types", + "once_cell", + "rayon", + "serde", ] [[package]] -name = "async-task" -version = "4.3.0" -source = "git+https://github.com/mystenmark/async-task?rev=4e45b26e11126b191701b9b2ce5e2346b8d7682f#4e45b26e11126b191701b9b2ce5e2346b8d7682f" +name = "aptos-executor-service" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-block-executor", + "aptos-block-partitioner", + "aptos-config", + "aptos-infallible", + "aptos-keygen", + "aptos-logger", + "aptos-metrics-core", + "aptos-node-resource-metrics", + "aptos-push-metrics", + "aptos-secure-net", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "bcs 0.1.4", + "clap 4.5.47", + "crossbeam-channel", + "ctrlc", + "dashmap 7.0.0-rc2", + "itertools 0.13.0", + "num_cpus", + "once_cell", + "rayon", + "serde", + "thiserror 1.0.69", +] [[package]] -name = "async-trait" -version = "0.1.89" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" +name = "aptos-executor-types" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "anyhow", + "aptos-crypto", + "aptos-drop-helper", + "aptos-infallible", + "aptos-metrics-core", + "aptos-scratchpad", + "aptos-secure-net", + "aptos-storage-interface", + "aptos-types", + "bcs 0.1.4", + "criterion", + "derive_more 0.99.20", + "itertools 0.13.0", + "once_cell", + "ouroboros", + "rayon", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "async_once" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82" - -[[package]] -name = "atomic-waker" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - -[[package]] -name = "atomic_float" +name = "aptos-experimental-layered-map" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62af46d040ba9df09edc6528dae9d8e49f5f3e82f55b7d2ec31a733c38dbc49d" - -[[package]] -name = "auto_ops" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7460f7dd8e100147b82a63afca1a20eb6c231ee36b90ba7272e14951cb58af59" - -[[package]] -name = "autocfg" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" - -[[package]] -name = "axum" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" -dependencies = [ - "async-trait", - "axum-core 0.4.5", - "bytes", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "itoa", - "matchit 0.7.3", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "rustversion", - "serde", - "sync_wrapper", - "tower 0.5.2", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5" -dependencies = [ - "axum-core 0.5.2", - "axum-macros", - "base64 0.22.1", - "bytes", - "form_urlencoded", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "itoa", - "matchit 0.8.4", - "memchr", - "mime", - "percent-encoding", - "pin-project-lite", - "rustversion", - "serde", - "serde_json", - "serde_path_to_error", - "serde_urlencoded", - "sha1", - "sync_wrapper", - "tokio", - "tokio-tungstenite", - "tower 0.5.2", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-core" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" -dependencies = [ - "async-trait", - "bytes", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "rustversion", - "sync_wrapper", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-core" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6" -dependencies = [ - "bytes", - "futures-core", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "mime", - "pin-project-lite", - "rustversion", - "sync_wrapper", - "tower-layer", - "tower-service", -] - -[[package]] -name = "axum-macros" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", -] - -[[package]] -name = "axum-server" -version = "0.6.1" -source = "git+https://github.com/bmwill/axum-server.git?rev=f44323e271afdd1365fd0c8b0a4c0bbdf4956cb7#f44323e271afdd1365fd0c8b0a4c0bbdf4956cb7" -dependencies = [ - "arc-swap", - "bytes", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "pin-project-lite", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower 0.4.13", - "tower-service", -] - -[[package]] -name = "backoff" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "futures-core", - "getrandom 0.2.16", - "instant", - "pin-project-lite", - "rand 0.8.5", - "tokio", + "ahash 0.8.12", + "aptos-crypto", + "aptos-drop-helper", + "aptos-infallible", + "aptos-metrics-core", + "bitvec 1.0.1", + "itertools 0.13.0", + "once_cell", + "tikv-jemallocator", ] [[package]] -name = "backtrace" -version = "0.3.75" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" +name = "aptos-experimental-runtimes" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "addr2line", - "cfg-if", + "aptos-runtimes", + "core_affinity", "libc", - "miniz_oxide", - "object", - "rustc-demangle", - "windows-targets 0.52.6", -] - -[[package]] -name = "base-x" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" - -[[package]] -name = "base16ct" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" - -[[package]] -name = "base16ct" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" - -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "base64-url" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb9fb9fb058cc3063b5fc88d9a21eefa2735871498a04e1650da76ed511c8569" -dependencies = [ - "base64 0.21.7", -] - -[[package]] -name = "base64ct" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" - -[[package]] -name = "bcs" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85b6598a2f5d564fb7855dc6b06fd1c38cff5a72bd8b863a4d021938497b440a" -dependencies = [ - "serde", - "thiserror 1.0.69", -] - -[[package]] -name = "bech32" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" - -[[package]] -name = "beef" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1" - -[[package]] -name = "bellpepper" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ae286c2cb403324ab644c7cc68dceb25fe52ca9429908a726d7ed272c1edf7b" -dependencies = [ - "bellpepper-core", - "byteorder", - "ff 0.13.1", + "num_cpus", + "once_cell", + "rayon", ] [[package]] -name = "bellpepper-core" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d8abb418570756396d722841b19edfec21d4e89e1cf8990610663040ecb1aea" +name = "aptos-framework" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "blake2s_simd", + "anyhow", + "aptos-aggregator", + "aptos-crypto", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-move-stdlib", + "aptos-native-interface", + "aptos-sdk-builder", + "aptos-types", + "aptos-vm-types", + "ark-bls12-381", + "ark-bn254", + "ark-ec", + "ark-ff", + "ark-serialize", + "ark-std", + "bcs 0.1.4", + "better_any", + "blake2-rfc", + "bulletproofs", "byteorder", - "ff 0.13.1", - "serde", - "thiserror 1.0.69", -] - -[[package]] -name = "better_any" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b359aebd937c17c725e19efcb661200883f04c49c53e7132224dac26da39d4a0" -dependencies = [ - "better_typeid_derive", -] - -[[package]] -name = "better_typeid_derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3deeecb812ca5300b7d3f66f730cc2ebd3511c3d36c691dd79c165d5b19a26e3" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "bin-version" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "const-str", - "git-version", -] - -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - -[[package]] -name = "bindgen" -version = "0.69.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088" -dependencies = [ - "bitflags 2.9.4", - "cexpr", - "clang-sys", - "itertools 0.10.5", - "lazy_static", - "lazycell", - "proc-macro2", - "quote", - "regex", - "rustc-hash 1.1.0", - "shlex", - "syn 2.0.106", -] - -[[package]] -name = "bindgen" -version = "0.72.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" -dependencies = [ - "bitflags 2.9.4", - "cexpr", - "clang-sys", + "clap 4.5.47", + "codespan-reporting", + "curve25519-dalek-ng", + "either", + "flate2", + "hex", "itertools 0.13.0", - "proc-macro2", - "quote", - "regex", - "rustc-hash 2.1.1", - "shlex", - "syn 2.0.106", -] - -[[package]] -name = "bip32" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30ed1d6f8437a487a266c8293aeb95b61a23261273e3e02912cdb8b68bf798b" -dependencies = [ - "bs58 0.4.0", - "hmac", - "k256 0.11.6", + "legacy-move-compiler", + "libsecp256k1", + "log", + "merlin", + "move-binary-format", + "move-cli", + "move-command-line-common", + "move-compiler-v2", + "move-core-types", + "move-docgen", + "move-model", + "move-package", + "move-prover", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "move-prover-lab", + "move-stackless-bytecode", + "move-vm-runtime", + "move-vm-types", + "num-traits", "once_cell", - "pbkdf2", - "rand_core 0.6.4", + "rand 0.7.3", + "rand_core 0.5.1", "ripemd", + "serde", + "serde_bytes", "sha2 0.10.9", - "subtle", - "zeroize", + "sha2 0.9.9", + "sha3", + "siphasher 0.3.11", + "smallvec", + "tempfile", + "tiny-keccak", + "toml 0.7.8", ] [[package]] -name = "bit-set" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" +name = "aptos-gas-algebra" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bit-vec 0.6.3", + "either", + "move-core-types", ] [[package]] -name = "bit-set" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" +name = "aptos-gas-meter" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bit-vec 0.8.0", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-logger", + "aptos-types", + "aptos-vm-types", + "move-binary-format", + "move-core-types", + "move-vm-types", ] [[package]] -name = "bit-vec" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" - -[[package]] -name = "bit-vec" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" - -[[package]] -name = "bitcoin-private" +name = "aptos-gas-schedule" version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73290177011694f38ec25e165d0387ab7ea749a4b81cd4c80dae5988229f7a57" - -[[package]] -name = "bitcoin_hashes" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d7066118b13d4b20b23645932dfb3a81ce7e29f95726c2036fa33cd7b092501" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bitcoin-private", + "aptos-gas-algebra", + "aptos-global-constants", + "move-core-types", + "move-vm-types", + "paste", + "rand 0.7.3", ] [[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" - -[[package]] -name = "bitmaps" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" -dependencies = [ - "typenum", -] +name = "aptos-global-constants" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" [[package]] -name = "bitvec" -version = "0.20.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848" -dependencies = [ - "funty 1.1.0", - "radium 0.6.2", - "tap", - "wyz 0.2.0", -] +name = "aptos-id-generator" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" [[package]] -name = "bitvec" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +name = "aptos-indexer-grpc-fullnode" +version = "1.0.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "funty 2.0.0", - "radium 0.7.0", - "tap", - "wyz 0.5.1", + "anyhow", + "aptos-api", + "aptos-api-types", + "aptos-bitvec", + "aptos-config", + "aptos-indexer-grpc-utils", + "aptos-logger", + "aptos-mempool", + "aptos-metrics-core", + "aptos-moving-average", + "aptos-protos", + "aptos-runtimes", + "aptos-storage-interface", + "aptos-types", + "bcs 0.1.4", + "bytes", + "chrono", + "futures", + "hex", + "hyper 0.14.32", + "itertools 0.13.0", + "move-core-types", + "once_cell", + "serde", + "serde_json", + "tokio", + "tokio-stream", + "tonic", + "tonic-reflection", ] [[package]] -name = "blake2" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" +name = "aptos-indexer-grpc-table-info" +version = "1.0.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "digest 0.10.7", + "anyhow", + "aptos-api", + "aptos-api-types", + "aptos-config", + "aptos-db-indexer", + "aptos-indexer-grpc-fullnode", + "aptos-indexer-grpc-utils", + "aptos-logger", + "aptos-mempool", + "aptos-metrics-core", + "aptos-runtimes", + "aptos-storage-interface", + "aptos-types", + "flate2", + "futures", + "google-cloud-storage", + "hyper 0.14.32", + "itertools 0.13.0", + "once_cell", + "serde", + "serde_json", + "tar", + "tokio", + "tokio-stream", + "tokio-util", ] [[package]] -name = "blake2b_simd" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" +name = "aptos-indexer-grpc-utils" +version = "1.0.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "arrayref", - "arrayvec", - "constant_time_eq", + "anyhow", + "aptos-metrics-core", + "aptos-protos", + "aptos-transaction-filter", + "async-trait", + "backoff", + "base64 0.13.1", + "build_html", + "bytesize", + "chrono", + "cloud-storage", + "dashmap 7.0.0-rc2", + "futures", + "itertools 0.13.0", + "lz4", + "once_cell", + "prometheus", + "prost", + "redis", + "redis-test", + "ripemd", + "serde", + "serde_json", + "tokio", + "tokio-util", + "tonic", + "tracing", + "url", + "warp", ] [[package]] -name = "blake2s_simd" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" -dependencies = [ - "arrayref", - "arrayvec", - "constant_time_eq", -] +name = "aptos-infallible" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" [[package]] -name = "block-buffer" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +name = "aptos-jellyfish-merkle" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "block-padding 0.2.1", - "generic-array", + "anyhow", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-experimental-runtimes", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "aptos-storage-interface", + "aptos-types", + "arr_macro", + "bcs 0.1.4", + "byteorder", + "itertools 0.13.0", + "num-derive", + "num-traits", + "once_cell", + "rayon", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "block-buffer" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +name = "aptos-keygen" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "generic-array", + "aptos-crypto", + "aptos-types", + "rand 0.7.3", ] [[package]] -name = "block-padding" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" - -[[package]] -name = "block-padding" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93" +name = "aptos-ledger" +version = "0.2.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "generic-array", + "aptos-crypto", + "aptos-types", + "hex", + "ledger-apdu", + "ledger-transport-hid", + "thiserror 1.0.69", ] [[package]] -name = "blst" -version = "0.3.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fd49896f12ac9b6dcd7a5998466b9b58263a695a3dd1ecc1aaca2e12a90b080" +name = "aptos-log-derive" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cc", - "glob", - "threadpool", - "zeroize", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "blstrs" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a8a8ed6fefbeef4a8c7b460e4110e12c5e22a5b7cf32621aae6ad650c4dcf29" +name = "aptos-logger" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "blst", - "byte-slice-cast", - "ff 0.13.1", - "group 0.13.0", - "pairing", - "rand_core 0.6.4", + "aptos-infallible", + "aptos-log-derive", + "backtrace", + "chrono", + "erased-serde", + "futures", + "hostname", + "once_cell", + "prometheus", "serde", - "subtle", + "serde_json", + "strum 0.27.2", + "strum_macros 0.27.2", + "tokio", + "tracing", + "tracing-subscriber 0.3.20", ] [[package]] -name = "bnum" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f781dba93de3a5ef6dc5b17c9958b208f6f3f021623b360fb605ea51ce443f10" - -[[package]] -name = "brotli" -version = "8.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +name = "aptos-memory-usage-tracker" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor", + "aptos-gas-algebra", + "aptos-gas-meter", + "aptos-types", + "move-binary-format", + "move-core-types", + "move-vm-types", ] [[package]] -name = "brotli-decompressor" -version = "5.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +name = "aptos-mempool" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", + "anyhow", + "aptos-bounded-executor", + "aptos-channels", + "aptos-config", + "aptos-consensus-types", + "aptos-crypto", + "aptos-event-notifications", + "aptos-infallible", + "aptos-logger", + "aptos-mempool-notifications", + "aptos-metrics-core", + "aptos-netcore", + "aptos-network", + "aptos-peer-monitoring-service-types", + "aptos-runtimes", + "aptos-short-hex-str", + "aptos-storage-interface", + "aptos-time-service", + "aptos-transaction-filters", + "aptos-types", + "aptos-vm-validator", + "bcs 0.1.4", + "fail", + "futures", + "itertools 0.13.0", + "maplit", + "num_cpus", + "once_cell", + "rand 0.7.3", + "rayon", + "serde", + "thiserror 1.0.69", + "tokio", + "tokio-stream", ] [[package]] -name = "bs58" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" +name = "aptos-mempool-notifications" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "sha2 0.9.9", + "aptos-types", + "async-trait", + "futures", + "serde", + "thiserror 1.0.69", + "tokio", ] [[package]] -name = "bs58" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4" +name = "aptos-memsocket" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "tinyvec", + "aptos-infallible", + "bytes", + "futures", + "once_cell", ] [[package]] -name = "bumpalo" -version = "3.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" - -[[package]] -name = "byte-slice-cast" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" - -[[package]] -name = "bytecount" -version = "0.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e" +name = "aptos-metrics-core" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "once_cell", + "paste", + "prometheus", +] [[package]] -name = "bytemuck" -version = "1.23.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" +name = "aptos-move-stdlib" +version = "0.1.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-gas-schedule", + "aptos-native-interface", + "aptos-types", + "bcs 0.1.4", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "sha2 0.9.9", + "sha3", + "smallvec", +] [[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" +name = "aptos-moving-average" +version = "0.1.0" +source = "git+https://github.com/aptos-labs/aptos-indexer-processors.git?rev=62beedc881d1b76632318ceb186ee9065236468e#62beedc881d1b76632318ceb186ee9065236468e" +dependencies = [ + "chrono", +] [[package]] -name = "bytes" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +name = "aptos-mvhashmap" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "anyhow", + "aptos-aggregator", + "aptos-infallible", + "aptos-types", + "aptos-vm-types", + "bytes", + "claims", + "crossbeam", + "dashmap 7.0.0-rc2", + "equivalent", + "fail", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", "serde", ] [[package]] -name = "bytes-varint" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e95ba58c659da9789048773ebecf5bd17fe7d3858b10f693bb579912f0d55ed" +name = "aptos-native-interface" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bytes", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-types", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "smallvec", ] [[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" +name = "aptos-netcore" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cc", - "pkg-config", + "aptos-memsocket", + "aptos-proxy", + "aptos-types", + "bytes", + "futures", + "pin-project", + "serde", + "tokio", + "tokio-util", + "url", ] [[package]] -name = "cached" -version = "0.43.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc2fafddf188d13788e7099295a59b99e99b2148ab2195cae454e754cc099925" +name = "aptos-network" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "anyhow", + "aptos-bitvec", + "aptos-channels", + "aptos-compression", + "aptos-config", + "aptos-crypto", + "aptos-id-generator", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "aptos-netcore", + "aptos-num-variants", + "aptos-peer-monitoring-service-types", + "aptos-short-hex-str", + "aptos-time-service", + "aptos-types", + "arc-swap", "async-trait", - "async_once", - "cached_proc_macro", - "cached_proc_macro_types", + "bcs 0.1.4", + "bytes", "futures", - "hashbrown 0.13.2", - "instant", - "lazy_static", + "futures-util", + "hex", + "itertools 0.13.0", + "maplit", "once_cell", + "ordered-float", + "pin-project", + "rand 0.7.3", + "rand 0.8.5", + "serde", + "serde_bytes", + "serde_json", "thiserror 1.0.69", "tokio", + "tokio-retry", + "tokio-stream", + "tokio-util", ] [[package]] -name = "cached_proc_macro" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e10ca87c81aaa3a949dbbe2b5e6c2c45dbc94ba4897e45ea31ff9ec5087be3dc" +name = "aptos-node-resource-metrics" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-build-info", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "cfg-if", + "once_cell", + "procfs", + "prometheus", + "rlimit", + "sysinfo", +] + +[[package]] +name = "aptos-num-variants" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cached_proc_macro_types", - "darling 0.14.4", "proc-macro2", "quote", "syn 1.0.109", ] [[package]] -name = "cached_proc_macro_types" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ade8366b8bd5ba243f0a58f036cc0ca8a2f069cff1a2351ef1cac6b083e16fc0" +name = "aptos-openapi" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "percent-encoding", + "poem", + "poem-openapi", + "serde", + "serde_json", +] [[package]] -name = "camino" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1de8bc0aa9e9385ceb3bf0c152e3a9b9544f6c4a912c8ae504e80c1f0368603" +name = "aptos-package-builder" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-framework", + "itertools 0.13.0", + "move-command-line-common", + "move-package", + "tempfile", +] [[package]] -name = "cbc" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6" +name = "aptos-peer-monitoring-service-types" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cipher", + "aptos-config", + "aptos-types", + "bcs 0.1.4", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "cc" -version = "1.2.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5252b3d2648e5eedbc1a6f501e3c795e07025c1e93bbf8bbdd6eef7f447a6d54" +name = "aptos-protos" +version = "1.3.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "find-msvc-tools", - "jobserver", - "libc", - "shlex", + "pbjson", + "prost", + "serde", + "tonic", ] [[package]] -name = "cesu8" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" +name = "aptos-proxy" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "ipnet", +] [[package]] -name = "cexpr" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +name = "aptos-push-metrics" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "nom", + "aptos-logger", + "aptos-metrics-core", + "rand 0.7.3", + "ureq", + "url", ] [[package]] -name = "cfg-if" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" +name = "aptos-resource-viewer" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-types", + "aptos-vm", + "aptos-vm-environment", + "move-binary-format", + "move-bytecode-utils", + "move-core-types", + "move-resource-viewer", +] [[package]] -name = "cfg_aliases" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" +name = "aptos-rest-client" +version = "0.0.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-api-types", + "aptos-crypto", + "aptos-infallible", + "aptos-logger", + "aptos-types", + "bcs 0.1.4", + "bytes", + "hex", + "move-core-types", + "reqwest", + "serde", + "serde_json", + "thiserror 1.0.69", + "tokio", + "url", +] [[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" +name = "aptos-rocksdb-options" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-config", + "rocksdb", +] [[package]] -name = "chrono" -version = "0.4.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +name = "aptos-runtimes" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "iana-time-zone", - "js-sys", - "num-traits", + "rayon", + "tokio", +] + +[[package]] +name = "aptos-schemadb" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-drop-helper", + "aptos-logger", + "aptos-metrics-core", + "aptos-storage-interface", + "dunce", + "proptest", + "rand 0.7.3", + "rocksdb", +] + +[[package]] +name = "aptos-scratchpad" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-crypto", + "aptos-drop-helper", + "aptos-infallible", + "aptos-metrics-core", + "aptos-types", + "aptos-vm", + "bitvec 1.0.1", + "dashmap 7.0.0-rc2", + "itertools 0.13.0", + "once_cell", + "rayon", + "thiserror 1.0.69", +] + +[[package]] +name = "aptos-sdk" +version = "0.0.3" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-cached-packages", + "aptos-crypto", + "aptos-global-constants", + "aptos-ledger", + "aptos-rest-client", + "aptos-types", + "base64 0.13.1", + "bcs 0.1.4", + "ed25519-dalek-bip32", + "hex", + "lazy_static", + "move-core-types", + "rand 0.7.3", + "rand_core 0.5.1", + "reqwest", "serde", - "wasm-bindgen", - "windows-link 0.2.0", + "serde_json", + "tiny-bip39", ] [[package]] -name = "ciborium" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" +name = "aptos-sdk-builder" +version = "0.2.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-types", + "bcs 0.1.4", + "clap 4.5.47", + "heck 0.4.1", + "move-core-types", + "once_cell", + "serde-generate", + "serde-reflection", + "serde_yaml 0.8.26", + "textwrap 0.15.2", +] + +[[package]] +name = "aptos-secure-net" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ciborium-io", - "ciborium-ll", + "aptos-logger", + "aptos-metrics-core", + "aptos-protos", + "bcs 0.1.4", + "crossbeam-channel", + "once_cell", "serde", + "thiserror 1.0.69", + "tokio", + "tonic", + "tonic-reflection", ] [[package]] -name = "ciborium-io" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" +name = "aptos-secure-storage" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-crypto", + "aptos-infallible", + "aptos-logger", + "aptos-temppath", + "aptos-time-service", + "aptos-vault-client", + "base64 0.13.1", + "bcs 0.1.4", + "chrono", + "enum_dispatch", + "rand 0.7.3", + "serde", + "serde_json", + "thiserror 1.0.69", +] [[package]] -name = "ciborium-ll" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" +name = "aptos-short-hex-str" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ciborium-io", - "half", + "mirai-annotations", + "serde", + "static_assertions", + "thiserror 1.0.69", ] [[package]] -name = "cipher" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +name = "aptos-speculative-state-helper" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "crypto-common", - "inout", + "anyhow", + "aptos-infallible", + "crossbeam", + "rayon", ] [[package]] -name = "clang-sys" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" +name = "aptos-storage-interface" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "glob", - "libc", - "libloading", + "anyhow", + "aptos-crypto", + "aptos-experimental-layered-map", + "aptos-logger", + "aptos-metrics-core", + "aptos-scratchpad", + "aptos-secure-net", + "aptos-types", + "arr_macro", + "bcs 0.1.4", + "dashmap 7.0.0-rc2", + "derive_more 0.99.20", + "itertools 0.13.0", + "once_cell", + "parking_lot", + "proptest", + "proptest-derive", + "rand 0.7.3", + "rayon", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "clap" -version = "4.5.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931" +name = "aptos-table-natives" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "clap_builder", - "clap_derive", + "aptos-gas-schedule", + "aptos-native-interface", + "better_any", + "bytes", + "move-binary-format", + "move-core-types", + "move-table-extension", + "move-vm-runtime", + "move-vm-types", + "sha3", + "smallvec", ] [[package]] -name = "clap_builder" -version = "4.5.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6" +name = "aptos-temppath" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim 0.11.1", - "terminal_size", + "hex", + "rand 0.7.3", ] [[package]] -name = "clap_derive" -version = "4.5.47" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" +name = "aptos-time-service" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "syn 2.0.106", + "aptos-infallible", + "enum_dispatch", + "futures", + "pin-project", + "thiserror 1.0.69", + "tokio", ] [[package]] -name = "clap_lex" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +name = "aptos-transaction-filter" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-protos", + "derivative", + "derive_builder", + "memchr", + "once_cell", + "prost", + "serde", + "serde_json", + "serde_yaml 0.8.26", + "thiserror 1.0.69", +] [[package]] -name = "clipboard-win" -version = "5.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4" +name = "aptos-transaction-filters" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "error-code", + "aptos-crypto", + "aptos-types", + "move-core-types", + "rand 0.7.3", + "serde", + "serde_yaml 0.8.26", ] [[package]] -name = "cmp_any" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9b18233253483ce2f65329a24072ec414db782531bdbb7d0bbc4bd2ce6b7e21" +name = "aptos-types" +version = "0.0.3" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-bitvec", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-dkg", + "aptos-infallible", + "arbitrary", + "ark-bn254", + "ark-ec", + "ark-ff", + "ark-groth16", + "ark-relations", + "ark-serialize", + "ark-std", + "base64 0.13.1", + "bcs 0.1.4", + "bytes", + "chrono", + "chrono-tz 0.10.4", + "dashmap 7.0.0-rc2", + "derivative", + "fixed", + "fxhash", + "hashbrown 0.14.5", + "hex", + "itertools 0.13.0", + "jsonwebtoken 8.3.0", + "lru", + "move-binary-format", + "move-core-types", + "move-model", + "move-table-extension", + "move-vm-types", + "num-bigint 0.3.3", + "num-derive", + "num-traits", + "once_cell", + "passkey-types", + "poem-openapi", + "poem-openapi-derive", + "proptest", + "proptest-derive", + "quick_cache", + "rand 0.7.3", + "rapidhash", + "rayon", + "ref-cast", + "ring 0.16.20", + "rsa 0.9.8", + "serde", + "serde-big-array", + "serde_bytes", + "serde_json", + "serde_with", + "serde_yaml 0.8.26", + "strum 0.27.2", + "strum_macros 0.27.2", + "thiserror 1.0.69", + "tracing", +] [[package]] -name = "codespan" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3362992a0d9f1dd7c3d0e89e0ab2bb540b7a95fea8cd798090e758fda2899b5e" +name = "aptos-vault-client" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "codespan-reporting", + "aptos-crypto", + "base64 0.13.1", + "chrono", + "native-tls", + "once_cell", "serde", + "serde_json", + "thiserror 1.0.69", + "ureq", ] [[package]] -name = "codespan-reporting" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +name = "aptos-vm" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "anyhow", + "aptos-aggregator", + "aptos-block-executor", + "aptos-block-partitioner", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-experimental-runtimes", + "aptos-framework", + "aptos-gas-algebra", + "aptos-gas-meter", + "aptos-gas-schedule", + "aptos-logger", + "aptos-memory-usage-tracker", + "aptos-metrics-core", + "aptos-mvhashmap", + "aptos-native-interface", + "aptos-table-natives", + "aptos-types", + "aptos-vm-environment", + "aptos-vm-logging", + "aptos-vm-types", + "ark-bn254", + "ark-groth16", + "bcs 0.1.4", + "bytes", + "claims", + "crossbeam-channel", + "derive_more 0.99.20", + "fail", + "futures", + "hex", + "itertools 0.13.0", + "move-binary-format", + "move-core-types", + "move-vm-metrics", + "move-vm-runtime", + "move-vm-types", + "num_cpus", + "once_cell", + "ouroboros", + "parking_lot", + "rand 0.7.3", + "rayon", "serde", - "termcolor", - "unicode-width 0.1.14", ] [[package]] -name = "collectable" -version = "0.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08abddbaad209601e53c7dd4308d8c04c06f17bb7df006434e586a22b83be45a" +name = "aptos-vm-environment" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-framework", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-move-stdlib", + "aptos-native-interface", + "aptos-table-natives", + "aptos-types", + "aptos-vm-types", + "bcs 0.1.4", + "move-binary-format", + "move-bytecode-verifier", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "once_cell", + "sha3", +] [[package]] -name = "colorchoice" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +name = "aptos-vm-genesis" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "aptos-cached-packages", + "aptos-crypto", + "aptos-framework", + "aptos-gas-schedule", + "aptos-types", + "aptos-vm", + "aptos-vm-types", + "bcs 0.1.4", + "bytes", + "claims", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "once_cell", + "rand 0.7.3", + "serde", +] [[package]] -name = "colored" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" +name = "aptos-vm-logging" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "lazy_static", - "windows-sys 0.59.0", + "aptos-crypto", + "aptos-logger", + "aptos-metrics-core", + "aptos-speculative-state-helper", + "aptos-types", + "arc-swap", + "once_cell", + "serde", ] [[package]] -name = "combine" -version = "4.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +name = "aptos-vm-types" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "ambassador", + "anyhow", + "aptos-aggregator", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-types", + "bcs 0.1.4", "bytes", - "memchr", + "claims", + "either", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "rand 0.7.3", + "serde", ] [[package]] -name = "compression-codecs" -version = "0.4.30" +name = "aptos-vm-validator" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "aptos-logger", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "aptos-vm-environment", + "aptos-vm-logging", + "fail", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "rand 0.7.3", +] + +[[package]] +name = "arbitrary" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" dependencies = [ - "brotli", - "compression-core", - "flate2", - "memchr", - "zstd 0.13.3", - "zstd-safe 7.2.4", + "derive_arbitrary", ] [[package]] -name = "compression-core" -version = "0.4.29" +name = "arc-swap" +version = "1.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" [[package]] -name = "consensus-config" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ark-bls12-381" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c775f0d12169cba7aae4caeb547bb6a50781c7449a8aa53793827c9ec4abf488" dependencies = [ - "fastcrypto", - "mysten-network", - "rand 0.8.5", - "serde", - "shared-crypto", + "ark-ec", + "ark-ff", + "ark-serialize", + "ark-std", ] [[package]] -name = "consensus-core" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ark-bn254" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a22f4561524cd949590d78d7d4c5df8f592430d221f7f3c9497bbafd8972120f" dependencies = [ - "anemo", - "anemo-build", - "anemo-tower", - "anyhow", - "arc-swap", - "async-trait", - "base64 0.21.7", - "bcs", - "bytes", - "cfg-if", - "consensus-config", - "consensus-types", - "dashmap", - "enum_dispatch", - "eyre", - "fastcrypto", - "futures", - "http 1.3.1", - "itertools 0.13.0", - "mockall", - "mysten-common", - "mysten-metrics", - "mysten-network", - "nom", - "parking_lot 0.12.4", - "prometheus", - "prost", - "quinn-proto", - "rand 0.8.5", - "rustls", - "serde", - "shared-crypto", - "strum_macros 0.27.2", - "sui-http", - "sui-macros", - "sui-protocol-config", - "sui-tls", - "tap", - "tempfile", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tokio-util 0.7.16", - "tonic 0.13.1", - "tonic-build", - "tonic-rustls", - "tower 0.5.2", - "tower-http 0.5.2", - "tracing", - "typed-store", + "ark-ec", + "ark-ff", + "ark-std", ] [[package]] -name = "consensus-types" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ark-crypto-primitives" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3a13b34da09176a8baba701233fdffbaa7c1b1192ce031a3da4e55ce1f1a56" dependencies = [ - "base64 0.21.7", - "consensus-config", - "fastcrypto", - "serde", + "ark-ec", + "ark-ff", + "ark-relations", + "ark-serialize", + "ark-snark", + "ark-std", + "blake2", + "derivative", + "digest 0.10.7", + "rayon", + "sha2 0.10.9", ] [[package]] -name = "console" -version = "0.15.11" +name = "ark-ec" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" +checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ - "encode_unicode", - "libc", - "once_cell", - "unicode-width 0.2.1", - "windows-sys 0.59.0", + "ark-ff", + "ark-poly", + "ark-serialize", + "ark-std", + "derivative", + "hashbrown 0.13.2", + "itertools 0.10.5", + "num-traits", + "rayon", + "zeroize", ] [[package]] -name = "console-api" -version = "0.8.1" +name = "ark-ff" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8030735ecb0d128428b64cd379809817e620a40e5001c54465b99ec5feec2857" +checksum = "ec847af850f44ad29048935519032c33da8aa03340876d351dfab5660d2966ba" dependencies = [ - "futures-core", - "prost", - "prost-types", - "tonic 0.12.3", - "tracing-core", + "ark-ff-asm", + "ark-ff-macros", + "ark-serialize", + "ark-std", + "derivative", + "digest 0.10.7", + "itertools 0.10.5", + "num-bigint 0.4.6", + "num-traits", + "paste", + "rayon", + "rustc_version", + "zeroize", ] [[package]] -name = "console-subscriber" -version = "0.4.1" +name = "ark-ff-asm" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6539aa9c6a4cd31f4b1c040f860a1eac9aa80e7df6b05d506a6e7179936d6a01" +checksum = "3ed4aa4fe255d0bc6d79373f7e31d2ea147bcf486cba1be5ba7ea85abdb92348" dependencies = [ - "console-api", - "crossbeam-channel", - "crossbeam-utils", - "futures-task", - "hdrhistogram", - "humantime", - "hyper-util", - "prost", - "prost-types", - "serde", - "serde_json", - "thread_local", - "tokio", - "tokio-stream", - "tonic 0.12.3", - "tracing", - "tracing-core", - "tracing-subscriber", + "quote", + "syn 1.0.109", ] [[package]] -name = "const-oid" -version = "0.9.6" +name = "ark-ff-macros" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +checksum = "7abe79b0e4288889c4574159ab790824d0033b9fdcb2a112a3182fac2e514565" +dependencies = [ + "num-bigint 0.4.6", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] [[package]] -name = "const-str" -version = "0.5.7" +name = "ark-groth16" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3618cccc083bb987a415d85c02ca6c9994ea5b44731ec28b9ecf09658655fba9" +checksum = "20ceafa83848c3e390f1cbf124bc3193b3e639b3f02009e0e290809a501b95fc" +dependencies = [ + "ark-crypto-primitives", + "ark-ec", + "ark-ff", + "ark-poly", + "ark-relations", + "ark-serialize", + "ark-std", + "rayon", +] [[package]] -name = "constant_time_eq" -version = "0.3.1" +name = "ark-poly" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" +checksum = "d320bfc44ee185d899ccbadfa8bc31aab923ce1558716e1997a1e74057fe86bf" +dependencies = [ + "ark-ff", + "ark-serialize", + "ark-std", + "derivative", + "hashbrown 0.13.2", + "rayon", +] [[package]] -name = "convert_case" +name = "ark-relations" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" +checksum = "00796b6efc05a3f48225e59cb6a2cda78881e7c390872d5786aaf112f31fb4f0" +dependencies = [ + "ark-ff", + "ark-std", + "tracing", + "tracing-subscriber 0.2.25", +] [[package]] -name = "convert_case" -version = "0.6.0" +name = "ark-serialize" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ - "unicode-segmentation", + "ark-serialize-derive", + "ark-std", + "digest 0.10.7", + "num-bigint 0.4.6", ] [[package]] -name = "core-foundation" -version = "0.10.1" +name = "ark-serialize-derive" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +checksum = "ae3281bc6d0fd7e549af32b52511e1302185bd688fd3359fa36423346ff682ea" dependencies = [ - "core-foundation-sys", - "libc", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "core-foundation-sys" -version = "0.8.7" +name = "ark-snark" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" +checksum = "84d3cc6833a335bb8a600241889ead68ee89a3cf8448081fb7694c0fe503da63" +dependencies = [ + "ark-ff", + "ark-relations", + "ark-serialize", + "ark-std", +] [[package]] -name = "core2" +name = "ark-std" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" +checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ - "memchr", + "num-traits", + "rand 0.8.5", + "rayon", ] [[package]] -name = "coset" -version = "0.3.8" +name = "arr_macro" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb" +checksum = "c49336e062fa2ae8aca17a2f99c34d9c1a5d30827e8aff1cb4c294f253afe992" dependencies = [ - "ciborium", - "ciborium-io", + "arr_macro_impl", + "proc-macro-hack", + "proc-macro-nested", ] [[package]] -name = "count-min-sketch" -version = "0.1.8" +name = "arr_macro_impl" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fef0a447ef2e9e6bd57e379f88702c58c4a4253ba82fb175bd7db012192311a" +checksum = "9c6368f9ae5c6ec403ca910327ae0c9437b0a85255b6950c90d497e6177f6e5e" dependencies = [ - "rand 0.8.5", - "siphasher", + "proc-macro-hack", + "quote", + "syn 1.0.109", ] [[package]] -name = "cpufeatures" -version = "0.2.17" +name = "arrayref" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" -dependencies = [ - "libc", -] +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" [[package]] -name = "crc32fast" -version = "1.5.0" +name = "arrayvec" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" dependencies = [ - "cfg-if", + "nodrop", ] [[package]] -name = "crossbeam-channel" -version = "0.5.15" +name = "arrayvec" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" -dependencies = [ - "crossbeam-utils", -] +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] -name = "crossbeam-deque" -version = "0.8.6" +name = "arrayvec" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" -dependencies = [ - "crossbeam-epoch", - "crossbeam-utils", -] +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] -name = "crossbeam-epoch" -version = "0.9.18" +name = "async-compression" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "977eb15ea9efd848bb8a4a1a2500347ed7f0bf794edf0dc3ddcf439f43d36b23" dependencies = [ - "crossbeam-utils", + "compression-codecs", + "compression-core", + "futures-core", + "pin-project-lite", + "tokio", ] [[package]] -name = "crossbeam-utils" -version = "0.8.21" +name = "async-stream" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] [[package]] -name = "crossterm" -version = "0.25.0" +name = "async-stream-impl" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" dependencies = [ - "bitflags 1.3.2", - "crossterm_winapi", - "libc", - "mio 0.8.11", - "parking_lot 0.12.4", - "signal-hook", - "signal-hook-mio", - "winapi", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "crossterm_winapi" -version = "0.9.1" +name = "async-trait" +version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ - "winapi", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "crunchy" -version = "0.2.4" +name = "atomic-waker" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] -name = "crypto-bigint" -version = "0.4.9" +name = "atty" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "generic-array", - "rand_core 0.6.4", - "subtle", - "zeroize", + "hermit-abi 0.1.19", + "libc", + "winapi 0.3.9", ] [[package]] -name = "crypto-bigint" -version = "0.5.5" +name = "autocfg" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "aws-lc-rs" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94b8ff6c09cd57b16da53641caa860168b88c172a5ee163b0288d3d6eea12786" dependencies = [ - "generic-array", - "rand_core 0.6.4", - "subtle", + "aws-lc-sys", "zeroize", ] [[package]] -name = "crypto-common" -version = "0.1.6" +name = "aws-lc-sys" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +checksum = "0e44d16778acaf6a9ec9899b92cebd65580b83f685446bf2e1f5d3d732f99dcd" dependencies = [ - "generic-array", - "rand_core 0.6.4", - "typenum", + "bindgen", + "cc", + "cmake", + "dunce", + "fs_extra", ] [[package]] -name = "csv" -version = "1.3.1" +name = "axum" +version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" dependencies = [ - "csv-core", + "async-trait", + "axum-core", + "bytes", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", "itoa", - "ryu", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", "serde", + "sync_wrapper 1.0.2", + "tower 0.5.2", + "tower-layer", + "tower-service", ] [[package]] -name = "csv-core" -version = "0.1.12" +name = "axum-core" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" dependencies = [ - "memchr", + "async-trait", + "bytes", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper 1.0.2", + "tower-layer", + "tower-service", ] [[package]] -name = "ctor" -version = "0.1.26" +name = "az" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" -dependencies = [ - "quote", - "syn 1.0.109", -] +checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" [[package]] -name = "ctr" -version = "0.9.2" +name = "backoff" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1" dependencies = [ - "cipher", + "futures-core", + "getrandom 0.2.16", + "instant", + "pin-project-lite", + "rand 0.8.5", + "tokio", ] [[package]] -name = "curve25519-dalek" -version = "4.1.3" +name = "backtrace" +version = "0.3.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" dependencies = [ + "addr2line", "cfg-if", - "cpufeatures", - "curve25519-dalek-derive", - "digest 0.10.7", - "fiat-crypto", - "rustc_version", - "subtle", - "zeroize", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", + "windows-targets 0.52.6", ] [[package]] -name = "curve25519-dalek-derive" -version = "0.1.1" +name = "base16ct" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", -] +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] -name = "curve25519-dalek-ng" -version = "4.1.1" +name = "base64" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8" -dependencies = [ - "byteorder", - "digest 0.9.0", - "rand_core 0.6.4", - "subtle-ng", - "zeroize", -] +checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" [[package]] -name = "darling" -version = "0.14.4" +name = "base64" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" -dependencies = [ - "darling_core 0.14.4", - "darling_macro 0.14.4", -] +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] -name = "darling" -version = "0.20.11" +name = "base64" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" -dependencies = [ - "darling_core 0.20.11", - "darling_macro 0.20.11", -] +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] -name = "darling_core" -version = "0.14.4" +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" +checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" + +[[package]] +name = "bcs" +version = "0.1.4" +source = "git+https://github.com/aptos-labs/bcs.git?rev=d31fab9d81748e2594be5cd5cdf845786a30562d#d31fab9d81748e2594be5cd5cdf845786a30562d" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.10.0", - "syn 1.0.109", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "darling_core" -version = "0.20.11" +name = "bcs" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" +checksum = "85b6598a2f5d564fb7855dc6b06fd1c38cff5a72bd8b863a4d021938497b440a" dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim 0.11.1", - "syn 2.0.106", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "darling_macro" -version = "0.14.4" +name = "bellpepper" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" +checksum = "9ae286c2cb403324ab644c7cc68dceb25fe52ca9429908a726d7ed272c1edf7b" dependencies = [ - "darling_core 0.14.4", - "quote", - "syn 1.0.109", + "bellpepper-core", + "byteorder", + "ff", ] [[package]] -name = "darling_macro" -version = "0.20.11" +name = "bellpepper-core" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" +checksum = "1d8abb418570756396d722841b19edfec21d4e89e1cf8990610663040ecb1aea" dependencies = [ - "darling_core 0.20.11", - "quote", - "syn 2.0.106", + "blake2s_simd", + "byteorder", + "ff", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "dashmap" -version = "5.5.3" +name = "better_any" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" +checksum = "b359aebd937c17c725e19efcb661200883f04c49c53e7132224dac26da39d4a0" dependencies = [ - "cfg-if", - "hashbrown 0.14.5", - "lock_api", - "once_cell", - "parking_lot_core 0.9.11", + "better_typeid_derive", ] [[package]] -name = "data-encoding" -version = "2.9.0" +name = "better_typeid_derive" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "3deeecb812ca5300b7d3f66f730cc2ebd3511c3d36c691dd79c165d5b19a26e3" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] [[package]] -name = "data-encoding-macro" -version = "0.1.18" +name = "bincode" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" dependencies = [ - "data-encoding", - "data-encoding-macro-internal", + "serde", ] [[package]] -name = "data-encoding-macro-internal" -version = "0.1.16" +name = "bindgen" +version = "0.72.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" dependencies = [ - "data-encoding", + "bitflags 2.9.4", + "cexpr", + "clang-sys", + "itertools 0.13.0", + "log", + "prettyplease", + "proc-macro2", + "quote", + "regex", + "rustc-hash 2.1.1", + "shlex", "syn 2.0.106", ] [[package]] -name = "debugserver-types" -version = "0.5.0" +name = "bit-set" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bf6834a70ed14e8e4e41882df27190bea150f1f6ecf461f1033f8739cd8af4a" +checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3" dependencies = [ - "schemafy", - "serde", - "serde_json", + "bit-vec", ] [[package]] -name = "der" -version = "0.6.1" +name = "bit-vec" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" -dependencies = [ - "const-oid", - "pem-rfc7468 0.6.0", - "zeroize", -] +checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" [[package]] -name = "der" -version = "0.7.10" +name = "bitflags" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" -dependencies = [ - "const-oid", - "pem-rfc7468 0.7.0", - "zeroize", -] +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] -name = "der-parser" -version = "10.0.0" +name = "bitflags" +version = "2.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" -dependencies = [ - "asn1-rs", - "displaydoc", - "nom", - "num-bigint 0.4.6", - "num-traits", - "rusticata-macros", -] +checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" [[package]] -name = "deranged" -version = "0.5.3" +name = "bitmaps" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc" +checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2" dependencies = [ - "powerfmt", - "serde", + "typenum", ] [[package]] -name = "derivative" -version = "2.2.0" +name = "bitvec" +version = "0.20.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" +checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "funty 1.1.0", + "radium 0.6.2", + "tap", + "wyz 0.2.0", ] [[package]] -name = "derive-syn-parse" -version = "0.1.5" +name = "bitvec" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e79116f119dd1dba1abf1f3405f03b9b0e79a27a3883864bfebded8a3dc768cd" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "funty 2.0.0", + "radium 0.7.0", + "tap", + "wyz 0.5.1", ] [[package]] -name = "derive_more" -version = "0.99.20" +name = "blake2" +version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" dependencies = [ - "convert_case 0.4.0", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.106", + "digest 0.10.7", ] [[package]] -name = "derive_more" -version = "1.0.0" +name = "blake2-rfc" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" dependencies = [ - "derive_more-impl", + "arrayvec 0.4.12", + "constant_time_eq 0.1.5", ] [[package]] -name = "derive_more-impl" -version = "1.0.0" +name = "blake2b_simd" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" dependencies = [ - "convert_case 0.6.0", - "proc-macro2", - "quote", - "syn 2.0.106", - "unicode-xid", + "arrayref", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", ] [[package]] -name = "diff" -version = "0.1.13" +name = "blake2s_simd" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" +checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" +dependencies = [ + "arrayref", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", +] [[package]] -name = "difflib" -version = "0.4.0" +name = "block-buffer" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" +checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +dependencies = [ + "block-padding", + "generic-array", +] [[package]] -name = "diffy" -version = "0.3.0" +name = "block-buffer" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e616e59155c92257e84970156f506287853355f58cd4a6eb167385722c32b790" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "nu-ansi-term 0.46.0", + "generic-array", ] [[package]] -name = "digest" -version = "0.9.0" +name = "block-padding" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" + +[[package]] +name = "blst" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fd49896f12ac9b6dcd7a5998466b9b58263a695a3dd1ecc1aaca2e12a90b080" dependencies = [ - "generic-array", + "cc", + "glob", + "threadpool", + "zeroize", ] [[package]] -name = "digest" -version = "0.10.7" +name = "blstrs" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +checksum = "7a8a8ed6fefbeef4a8c7b460e4110e12c5e22a5b7cf32621aae6ad650c4dcf29" dependencies = [ - "block-buffer 0.10.4", - "const-oid", - "crypto-common", + "blst", + "byte-slice-cast", + "ff", + "group", + "pairing", + "rand_core 0.6.4", + "serde", "subtle", ] [[package]] -name = "dirs" -version = "4.0.0" +name = "brotli" +version = "8.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" dependencies = [ - "dirs-sys", + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", ] [[package]] -name = "dirs-next" -version = "2.0.0" +name = "brotli-decompressor" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" dependencies = [ - "cfg-if", - "dirs-sys-next", + "alloc-no-stdlib", + "alloc-stdlib", ] [[package]] -name = "dirs-sys" -version = "0.3.7" +name = "bstr" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" +checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" dependencies = [ - "libc", - "redox_users", - "winapi", + "memchr", + "serde", ] [[package]] -name = "dirs-sys-next" -version = "0.1.2" +name = "build_html" +version = "2.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" -dependencies = [ - "libc", - "redox_users", - "winapi", -] +checksum = "10b322c8c13b6b775e5befd834d2a27c683506f1100b56a7b39d33c28024ba54" [[package]] -name = "display_container" -version = "0.9.0" +name = "bulletproofs" +version = "4.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a110a75c96bedec8e65823dea00a1d710288b7a369d95fd8a0f5127639466fa" +checksum = "40e698f1df446cc6246afd823afbe2d121134d089c9102c1dd26d1264991ba32" dependencies = [ - "either", - "indenter", + "byteorder", + "clear_on_drop", + "curve25519-dalek-ng", + "digest 0.9.0", + "merlin", + "rand 0.8.5", + "rand_core 0.6.4", + "serde", + "serde_derive", + "sha3", + "subtle-ng", + "thiserror 1.0.69", ] [[package]] -name = "displaydoc" -version = "0.2.5" +name = "bumpalo" +version = "3.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", -] +checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" [[package]] -name = "downcast" -version = "0.11.0" +name = "byte-slice-cast" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" +checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" [[package]] -name = "downcast-rs" -version = "1.2.1" +name = "bytecount" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" +checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e" [[package]] -name = "dunce" -version = "1.0.5" +name = "bytemuck" +version = "1.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" +checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677" [[package]] -name = "dupe" -version = "0.9.1" +name = "byteorder" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed2bc011db9c93fbc2b6cdb341a53737a55bafb46dbb74cf6764fc33a2fbf9c" -dependencies = [ - "dupe_derive", -] +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] -name = "dupe_derive" -version = "0.9.1" +name = "bytes" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83e195b4945e88836d826124af44fdcb262ec01ef94d44f14f4fb5103f19892a" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "serde", ] [[package]] -name = "dyn-clone" -version = "1.0.20" +name = "bytesize" +version = "1.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" +checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659" [[package]] -name = "ecdsa" -version = "0.14.8" +name = "bzip2-sys" +version = "0.1.13+1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" dependencies = [ - "der 0.6.1", - "elliptic-curve 0.12.3", - "rfc6979 0.3.1", - "signature 1.6.4", + "cc", + "pkg-config", ] [[package]] -name = "ecdsa" -version = "0.16.9" +name = "c_linked_list" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" -dependencies = [ - "der 0.7.10", - "digest 0.10.7", - "elliptic-curve 0.13.8", - "rfc6979 0.4.0", - "signature 2.2.0", - "spki 0.7.3", -] +checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" [[package]] -name = "ed25519" -version = "2.2.3" +name = "camino" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" +checksum = "e1de8bc0aa9e9385ceb3bf0c152e3a9b9544f6c4a912c8ae504e80c1f0368603" dependencies = [ - "pkcs8 0.10.2", - "signature 2.2.0", - "zeroize", + "serde_core", ] [[package]] -name = "ed25519-consensus" -version = "2.1.0" +name = "cargo-platform" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c8465edc8ee7436ffea81d21a019b16676ee3db267aa8d5a8d729581ecf998b" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" dependencies = [ - "curve25519-dalek-ng", - "hex", - "rand_core 0.6.4", "serde", - "sha2 0.9.9", - "thiserror 1.0.69", - "zeroize", ] [[package]] -name = "ed25519-dalek" -version = "2.2.0" +name = "cargo_metadata" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9" +checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" dependencies = [ - "curve25519-dalek", - "ed25519", + "camino", + "cargo-platform", + "semver", "serde", - "sha2 0.10.9", - "subtle", - "zeroize", + "serde_json", ] [[package]] -name = "either" -version = "1.15.0" +name = "cassowary" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" [[package]] -name = "elliptic-curve" -version = "0.12.3" +name = "cast" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" -dependencies = [ - "base16ct 0.1.1", - "crypto-bigint 0.4.9", - "der 0.6.1", - "digest 0.10.7", - "ff 0.12.1", - "generic-array", - "group 0.12.1", - "rand_core 0.6.4", - "sec1 0.3.0", - "subtle", - "zeroize", -] +checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] -name = "elliptic-curve" -version = "0.13.8" +name = "cc" +version = "1.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44" dependencies = [ - "base16ct 0.2.0", - "crypto-bigint 0.5.5", - "digest 0.10.7", - "ff 0.13.1", - "generic-array", - "group 0.13.0", - "pem-rfc7468 0.7.0", - "pkcs8 0.10.2", - "rand_core 0.6.4", - "sec1 0.7.3", - "subtle", - "zeroize", + "find-msvc-tools", + "jobserver", + "libc", + "shlex", ] [[package]] -name = "ena" -version = "0.14.3" +name = "cexpr" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "log", + "nom", ] [[package]] -name = "encode_unicode" -version = "1.0.0" +name = "cfg-if" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" +checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" [[package]] -name = "endian-type" -version = "0.1.2" +name = "cfg_aliases" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" [[package]] -name = "enum-compat-util" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "chrono" +version = "0.4.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" dependencies = [ - "serde_yaml", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-link 0.2.0", ] [[package]] -name = "enum_dispatch" -version = "0.3.13" +name = "chrono-tz" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" +checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" dependencies = [ - "once_cell", - "proc-macro2", - "quote", - "syn 2.0.106", + "chrono", + "chrono-tz-build", + "phf 0.11.3", ] [[package]] -name = "equivalent" -version = "1.0.2" +name = "chrono-tz" +version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" +checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" +dependencies = [ + "chrono", + "phf 0.12.1", +] [[package]] -name = "erasable" -version = "1.3.0" +name = "chrono-tz-build" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "437cfb75878119ed8265685c41a115724eae43fb7cc5a0bf0e4ecc3b803af1c4" +checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" dependencies = [ - "autocfg", - "scopeguard", + "parse-zoneinfo", + "phf 0.11.3", + "phf_codegen", ] [[package]] -name = "erased-discriminant" -version = "1.0.1" +name = "chunked_transfer" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1a6df962265a53221f29081896c412ef325c17fa7d638cd9578febe53d3c82c" -dependencies = [ - "typeid", -] +checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" [[package]] -name = "erased-serde" -version = "0.3.31" +name = "ciborium" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" +checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e" dependencies = [ + "ciborium-io", + "ciborium-ll", "serde", ] [[package]] -name = "errno" -version = "0.3.14" +name = "ciborium-io" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757" + +[[package]] +name = "ciborium-ll" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ - "libc", - "windows-sys 0.61.0", + "ciborium-io", + "half 2.6.0", ] [[package]] -name = "error-code" -version = "3.3.2" +name = "cipher" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59" +checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" +dependencies = [ + "crypto-common", + "inout", +] [[package]] -name = "ethnum" -version = "1.5.2" +name = "claims" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b" +checksum = "b6995bbe186456c36307f8ea36be3eefe42f49d106896414e18efc4fb2f846b5" +dependencies = [ + "autocfg", +] [[package]] -name = "eyre" -version = "0.6.12" +name = "clang-sys" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" +checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ - "indenter", - "once_cell", + "glob", + "libc", + "libloading", ] [[package]] -name = "fail" -version = "0.4.0" +name = "clap" +version = "2.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be3c61c59fdc91f5dbc3ea31ee8623122ce80057058be560654c5d410d181a6" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" dependencies = [ - "lazy_static", - "log", - "rand 0.7.3", + "ansi_term", + "atty", + "bitflags 1.3.2", + "strsim 0.8.0", + "textwrap 0.11.0", + "unicode-width", + "vec_map", ] [[package]] -name = "fastbloom" -version = "0.14.0" +name = "clap" +version = "4.5.47" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18c1ddb9231d8554c2d6bdf4cfaabf0c59251658c68b6c95cd52dd0c513a912a" +checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931" dependencies = [ - "getrandom 0.3.3", - "libm", - "rand 0.9.2", - "siphasher", + "clap_builder", + "clap_derive", ] [[package]] -name = "fastcrypto" -version = "0.1.9" -source = "git+https://github.com/MystenLabs/fastcrypto?rev=16fa86d0dd943024a9088d46850a72ecd55b7f46#16fa86d0dd943024a9088d46850a72ecd55b7f46" +name = "clap_builder" +version = "4.5.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6" dependencies = [ - "aes", - "aes-gcm", - "aes-gcm-siv", - "ark-ec", - "ark-ff", - "ark-secp256r1", - "ark-serialize", - "auto_ops", - "base64ct", - "bech32", - "bincode", - "blake2", - "blst", - "bs58 0.4.0", - "cbc", - "ctr", - "curve25519-dalek-ng", - "derive_more 0.99.20", - "digest 0.10.7", - "ecdsa 0.16.9", - "ed25519-consensus", - "elliptic-curve 0.13.8", - "fastcrypto-derive", - "generic-array", - "hex", - "hex-literal", - "hkdf", - "lazy_static", - "num-bigint 0.4.6", - "once_cell", - "p256", - "rand 0.8.5", - "readonly", - "rfc6979 0.4.0", - "rsa", - "schemars 0.8.22", - "secp256k1", - "serde", - "serde_json", - "serde_with", - "sha2 0.10.9", - "sha3 0.10.8", - "signature 2.2.0", - "static_assertions", - "thiserror 1.0.69", - "tokio", - "typenum", - "zeroize", + "anstream", + "anstyle", + "clap_lex", + "strsim 0.11.1", + "terminal_size", ] [[package]] -name = "fastcrypto-derive" -version = "0.1.3" -source = "git+https://github.com/MystenLabs/fastcrypto?rev=16fa86d0dd943024a9088d46850a72ecd55b7f46#16fa86d0dd943024a9088d46850a72ecd55b7f46" +name = "clap_derive" +version = "4.5.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" dependencies = [ + "heck 0.5.0", + "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.106", ] [[package]] -name = "fastcrypto-tbls" -version = "0.1.0" -source = "git+https://github.com/MystenLabs/fastcrypto?rev=16fa86d0dd943024a9088d46850a72ecd55b7f46#16fa86d0dd943024a9088d46850a72ecd55b7f46" +name = "clap_lex" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" + +[[package]] +name = "clear_on_drop" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38508a63f4979f0048febc9966fadbd48e5dab31fd0ec6a3f151bbf4a74f7423" dependencies = [ - "bcs", - "digest 0.10.7", - "fastcrypto", + "cc", +] + +[[package]] +name = "cloud-storage" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7602ac4363f68ac757d6b87dd5d850549a14d37489902ae639c06ecec06ad275" +dependencies = [ + "async-trait", + "base64 0.13.1", + "bytes", + "chrono", + "dotenv", + "futures-util", "hex", - "itertools 0.10.5", - "rand 0.8.5", + "jsonwebtoken 7.2.0", + "lazy_static", + "pem 0.8.3", + "percent-encoding", + "reqwest", + "ring 0.16.20", "serde", - "sha3 0.10.8", - "tap", - "tracing", - "typenum", - "zeroize", + "serde_json", + "tokio", ] [[package]] -name = "fastcrypto-vdf" -version = "0.1.0" -source = "git+https://github.com/MystenLabs/fastcrypto?rev=16fa86d0dd943024a9088d46850a72ecd55b7f46#16fa86d0dd943024a9088d46850a72ecd55b7f46" +name = "cmake" +version = "0.1.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7caa3f9de89ddbe2c607f4101924c5abec803763ae9534e4f4d7d8f84aa81f0" dependencies = [ - "bcs", - "fastcrypto", - "lazy_static", - "num-bigint 0.4.6", - "num-integer", - "num-prime", - "num-traits", - "rand 0.8.5", - "rand_chacha 0.3.1", + "cc", +] + +[[package]] +name = "codespan" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3362992a0d9f1dd7c3d0e89e0ab2bb540b7a95fea8cd798090e758fda2899b5e" +dependencies = [ + "codespan-reporting", "serde", ] [[package]] -name = "fastcrypto-zkp" -version = "0.1.3" -source = "git+https://github.com/MystenLabs/fastcrypto?rev=16fa86d0dd943024a9088d46850a72ecd55b7f46#16fa86d0dd943024a9088d46850a72ecd55b7f46" +name = "codespan-reporting" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" dependencies = [ - "ark-bn254", - "ark-ec", - "ark-ff", - "ark-groth16", - "ark-relations", - "ark-serialize", - "ark-snark", - "bcs", - "byte-slice-cast", - "derive_more 0.99.20", - "fastcrypto", - "ff 0.13.1", - "im", - "itertools 0.12.1", - "lazy_static", - "neptune", - "num-bigint 0.4.6", - "once_cell", - "regex", - "reqwest", - "schemars 0.8.22", "serde", - "serde_json", - "typenum", + "termcolor", + "unicode-width", ] [[package]] -name = "fastrand" -version = "2.3.0" +name = "colorchoice" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" +checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] -name = "fd-lock" -version = "4.0.4" +name = "colored" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" +checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ - "cfg-if", - "rustix", + "lazy_static", "windows-sys 0.59.0", ] [[package]] -name = "fdlimit" -version = "0.2.1" +name = "combine" +version = "4.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c4c9e43643f5a3be4ca5b67d26b98031ff9db6806c3440ae32e02e3ceac3f1b" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" dependencies = [ - "libc", + "bytes", + "futures-core", + "memchr", + "pin-project-lite", + "tokio", + "tokio-util", ] [[package]] -name = "ff" -version = "0.12.1" +name = "compression-codecs" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" +checksum = "485abf41ac0c8047c07c87c72c8fb3eb5197f6e9d7ded615dfd1a00ae00a0f64" dependencies = [ - "rand_core 0.6.4", - "subtle", + "brotli", + "compression-core", + "flate2", + "memchr", + "zstd", + "zstd-safe", ] [[package]] -name = "ff" -version = "0.13.1" +name = "compression-core" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" -dependencies = [ - "bitvec 1.0.1", - "byteorder", - "ff_derive", - "rand_core 0.6.4", - "subtle", -] +checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb" [[package]] -name = "ff_derive" -version = "0.13.1" +name = "concurrent-queue" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" dependencies = [ - "addchain", - "num-bigint 0.3.3", - "num-integer", - "num-traits", - "proc-macro2", - "quote", - "syn 1.0.109", + "crossbeam-utils", ] [[package]] -name = "fiat-crypto" -version = "0.2.9" +name = "const-oid" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" +checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" [[package]] -name = "filetime" -version = "0.2.26" +name = "const-oid" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" -dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.60.2", -] +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" [[package]] -name = "find-msvc-tools" -version = "0.1.1" +name = "const_fn" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" +checksum = "2f8a2ca5ac02d09563609681103aada9e1777d54fc57a5acd7a41404f9c93b6e" [[package]] -name = "fixed-hash" -version = "0.7.0" +name = "const_format" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" +checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd" dependencies = [ - "byteorder", - "rand 0.8.5", - "rustc-hex", - "static_assertions", + "const_format_proc_macros", ] [[package]] -name = "fixedbitset" -version = "0.4.2" +name = "const_format_proc_macros" +version = "0.2.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] [[package]] -name = "fixedbitset" -version = "0.5.7" +name = "constant_time_eq" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] -name = "flate2" -version = "1.1.2" +name = "constant_time_eq" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" -dependencies = [ - "crc32fast", - "miniz_oxide", -] +checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] -name = "float-cmp" -version = "0.9.0" +name = "convert_case" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4" -dependencies = [ - "num-traits", -] +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" [[package]] -name = "fnv" -version = "1.0.7" +name = "cookie" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" +checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24" +dependencies = [ + "percent-encoding", + "time", + "version_check", +] [[package]] -name = "foldhash" -version = "0.1.5" +name = "cookie" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "aes-gcm", + "base64 0.22.1", + "hkdf 0.12.4", + "hmac 0.12.1", + "percent-encoding", + "rand 0.8.5", + "sha2 0.10.9", + "subtle", + "time", + "version_check", +] [[package]] -name = "form_urlencoded" -version = "1.2.2" +name = "cookie_store" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6" dependencies = [ - "percent-encoding", + "cookie 0.17.0", + "idna 0.3.0", + "log", + "publicsuffix", + "serde", + "serde_derive", + "serde_json", + "time", + "url", ] [[package]] -name = "fragile" -version = "2.0.1" +name = "core-foundation" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] [[package]] -name = "fsevent-sys" -version = "4.1.0" +name = "core-foundation" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" dependencies = [ + "core-foundation-sys", "libc", ] [[package]] -name = "funty" -version = "1.1.0" +name = "core-foundation-sys" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] -name = "funty" -version = "2.0.0" +name = "core_affinity" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" +checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342" +dependencies = [ + "libc", + "num_cpus", + "winapi 0.3.9", +] [[package]] -name = "futures" -version = "0.3.31" +name = "coset" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +checksum = "f4c8cc80f631f8307b887faca24dcc3abc427cd0367f6eb6188f6e8f5b7ad8fb" dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", + "ciborium", + "ciborium-io", ] [[package]] -name = "futures-channel" -version = "0.3.31" +name = "cpufeatures" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "futures-core", - "futures-sink", + "libc", ] [[package]] -name = "futures-core" -version = "0.3.31" +name = "crc32fast" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] [[package]] -name = "futures-executor" -version = "0.3.31" +name = "criterion" +version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" dependencies = [ - "futures-core", - "futures-task", - "futures-util", + "atty", + "cast", + "clap 2.34.0", + "criterion-plot", + "csv", + "itertools 0.10.5", + "lazy_static", + "num-traits", + "oorandom", + "plotters", + "rayon", + "regex", + "serde", + "serde_cbor", + "serde_derive", + "serde_json", + "tinytemplate", + "walkdir", ] [[package]] -name = "futures-io" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - -[[package]] -name = "futures-macro" -version = "0.3.31" +name = "criterion-plot" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "cast", + "itertools 0.10.5", ] [[package]] -name = "futures-sink" -version = "0.3.31" +name = "crossbeam" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] [[package]] -name = "futures-task" -version = "0.3.31" +name = "crossbeam-channel" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] [[package]] -name = "futures-timer" -version = "3.0.3" +name = "crossbeam-deque" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] [[package]] -name = "futures-util" -version = "0.3.31" +name = "crossbeam-epoch" +version = "0.9.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", + "crossbeam-utils", ] [[package]] -name = "fuzzer" -version = "0.1.0" +name = "crossbeam-queue" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" dependencies = [ - "anyhow", - "clap", - "fuzzer-core", - "sui-fuzzer", - "tokio", - "tracing", - "tracing-subscriber", + "crossbeam-utils", ] [[package]] -name = "fuzzer-core" -version = "0.1.0" -dependencies = [ - "anyhow", - "async-trait", - "hex", - "lru 0.16.1", - "rand 0.9.2", - "serde", - "serde_json", - "tokio", - "tracing", -] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" [[package]] -name = "fxhash" -version = "0.2.1" +name = "crossterm" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67" dependencies = [ - "byteorder", + "bitflags 1.3.2", + "crossterm_winapi", + "libc", + "mio 0.8.11", + "parking_lot", + "signal-hook", + "signal-hook-mio", + "winapi 0.3.9", ] [[package]] -name = "generator" -version = "0.8.7" +name = "crossterm" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2" +checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13" dependencies = [ - "cc", - "cfg-if", + "bitflags 1.3.2", + "crossterm_winapi", "libc", - "log", - "rustversion", - "windows", + "mio 0.8.11", + "parking_lot", + "signal-hook", + "signal-hook-mio", + "winapi 0.3.9", ] [[package]] -name = "generic-array" -version = "0.14.7" +name = "crossterm_winapi" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b" dependencies = [ - "serde", - "typenum", - "version_check", - "zeroize", + "winapi 0.3.9", ] [[package]] -name = "getrandom" -version = "0.1.16" +name = "crunchy" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.9.0+wasi-snapshot-preview1", -] +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" [[package]] -name = "getrandom" -version = "0.2.16" +name = "crypto-bigint" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "wasm-bindgen", + "generic-array", + "subtle", ] [[package]] -name = "getrandom" -version = "0.3.3" +name = "crypto-bigint" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasi 0.14.5+wasi-0.2.4", - "wasm-bindgen", + "generic-array", + "rand_core 0.6.4", + "subtle", + "zeroize", ] [[package]] -name = "ghash" -version = "0.5.1" +name = "crypto-common" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ - "opaque-debug", - "polyval", + "generic-array", + "rand_core 0.6.4", + "typenum", ] [[package]] -name = "gimli" -version = "0.31.1" +name = "crypto-mac" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" +checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" +dependencies = [ + "generic-array", + "subtle", +] [[package]] -name = "git-version" -version = "0.3.9" +name = "crypto-mac" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ad568aa3db0fcbc81f2f116137f263d7304f512a1209b35b85150d3ef88ad19" +checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6" dependencies = [ - "git-version-macro", + "generic-array", + "subtle", ] [[package]] -name = "git-version-macro" -version = "0.3.9" +name = "csv" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53010ccb100b96a67bc32c0175f0ed1426b31b655d562898e57325f81c023ac0" +checksum = "acdc4883a9c96732e4733212c01447ebd805833b7275a73ca3ee080fd77afdaf" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "csv-core", + "itoa", + "ryu", + "serde", ] [[package]] -name = "glob" -version = "0.3.3" +name = "csv-core" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" +checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d" +dependencies = [ + "memchr", +] [[package]] -name = "governor" -version = "0.6.3" +name = "ctr" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" dependencies = [ - "cfg-if", - "dashmap", - "futures", - "futures-timer", - "no-std-compat", - "nonzero_ext", - "parking_lot 0.12.4", - "portable-atomic", - "quanta", - "rand 0.8.5", - "smallvec", - "spinning_top", + "cipher", ] [[package]] -name = "group" -version = "0.12.1" +name = "ctrlc" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" +checksum = "881c5d0a13b2f1498e2306e82cbada78390e152d4b1378fb28a84f4dcd0dc4f3" dependencies = [ - "ff 0.12.1", - "rand_core 0.6.4", - "subtle", + "dispatch", + "nix", + "windows-sys 0.61.0", ] [[package]] -name = "group" -version = "0.13.0" +name = "curve25519-dalek" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" dependencies = [ - "ff 0.13.1", - "rand 0.8.5", - "rand_core 0.6.4", - "rand_xorshift 0.3.0", + "byteorder", + "digest 0.9.0", + "rand_core 0.5.1", "subtle", + "zeroize", ] [[package]] -name = "h2" -version = "0.4.12" +name = "curve25519-dalek-ng" +version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" +checksum = "1c359b7249347e46fb28804470d071c921156ad62b3eef5d34e2ba867533dec8" dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.3.1", - "indexmap 2.11.1", - "slab", - "tokio", - "tokio-util 0.7.16", - "tracing", + "byteorder", + "digest 0.9.0", + "rand_core 0.6.4", + "serde", + "subtle-ng", + "zeroize", ] [[package]] -name = "half" -version = "2.6.0" +name = "darling" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" dependencies = [ - "cfg-if", - "crunchy", + "darling_core", + "darling_macro", ] [[package]] -name = "hashbrown" -version = "0.12.3" +name = "darling_core" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim 0.11.1", + "syn 2.0.106", +] [[package]] -name = "hashbrown" -version = "0.13.2" +name = "darling_macro" +version = "0.20.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" dependencies = [ - "ahash 0.8.12", + "darling_core", + "quote", + "syn 2.0.106", ] [[package]] -name = "hashbrown" -version = "0.14.5" +name = "dashmap" +version = "5.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" dependencies = [ - "ahash 0.8.12", - "allocator-api2", + "cfg-if", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core", ] [[package]] -name = "hashbrown" -version = "0.15.5" +name = "dashmap" +version = "7.0.0-rc2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +checksum = "e4a1e35a65fe0538a60167f0ada6e195ad5d477f6ddae273943596d4a1a5730b" dependencies = [ - "allocator-api2", + "cfg-if", + "crossbeam-utils", "equivalent", - "foldhash", + "hashbrown 0.15.5", + "lock_api", + "parking_lot_core", ] [[package]] -name = "hdrhistogram" -version = "7.5.4" +name = "data-encoding" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" -dependencies = [ - "base64 0.21.7", - "byteorder", - "crossbeam-channel", - "flate2", - "nom", - "num-traits", -] +checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" [[package]] -name = "heck" -version = "0.4.1" +name = "dearbitrary" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" +checksum = "708ee6091d6965eb85c69f7a707303dcc48cc55fd937fb30e531909a10b314d4" +dependencies = [ + "derive_dearbitrary", +] [[package]] -name = "heck" -version = "0.5.0" +name = "der" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" +checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" +dependencies = [ + "const-oid 0.7.1", + "crypto-bigint 0.3.2", + "pem-rfc7468 0.3.1", +] [[package]] -name = "hermit-abi" -version = "0.5.2" +name = "der" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" +dependencies = [ + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", +] [[package]] -name = "hex" -version = "0.4.3" +name = "deranged" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc" dependencies = [ + "powerfmt", "serde", ] [[package]] -name = "hex-literal" -version = "0.4.1" +name = "derivation-path" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +checksum = "6e5c37193a1db1d8ed868c03ec7b152175f26160a5b740e5e484143877e0adf0" [[package]] -name = "hkdf" -version = "0.12.4" +name = "derivative" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" dependencies = [ - "hmac", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "hmac" -version = "0.12.1" +name = "derive_arbitrary" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" dependencies = [ - "digest 0.10.7", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "hmac-sha512" -version = "0.1.9" +name = "derive_builder" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77e806677ce663d0a199541030c816847b36e8dc095f70dae4a4f4ad63da5383" +checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947" +dependencies = [ + "derive_builder_macro", +] [[package]] -name = "home" -version = "0.5.11" +name = "derive_builder_core" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" +checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8" dependencies = [ - "windows-sys 0.59.0", + "darling", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "http" -version = "0.2.12" +name = "derive_builder_macro" +version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" +checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ - "bytes", - "fnv", - "itoa", + "derive_builder_core", + "syn 2.0.106", ] [[package]] -name = "http" -version = "1.3.1" +name = "derive_dearbitrary" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "afdf9e6fb6c8a925c6b19b78ec3a80152e7a46dc7811be5f1fa64568e7c7b6c0" dependencies = [ - "bytes", - "fnv", - "itoa", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "http-body" -version = "0.4.6" +name = "derive_more" +version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ - "bytes", - "http 0.2.12", - "pin-project-lite", + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.106", ] [[package]] -name = "http-body" -version = "1.0.1" +name = "derive_more" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" dependencies = [ - "bytes", - "http 1.3.1", + "derive_more-impl", ] [[package]] -name = "http-body-util" -version = "0.1.3" +name = "derive_more-impl" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ - "bytes", - "futures-core", - "http 1.3.1", - "http-body 1.0.1", - "pin-project-lite", + "proc-macro2", + "quote", + "syn 2.0.106", + "unicode-xid", ] [[package]] -name = "http-range-header" -version = "0.4.2" +name = "deunicode" +version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c" +checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" [[package]] -name = "httparse" -version = "1.10.1" +name = "difference" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" +checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" [[package]] -name = "httpdate" -version = "1.0.3" +name = "digest" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] [[package]] -name = "humantime" -version = "2.3.0" +name = "digest" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer 0.10.4", + "const-oid 0.9.6", + "crypto-common", + "subtle", +] [[package]] -name = "hyper" -version = "1.7.0" +name = "dirs-next" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" +checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" dependencies = [ - "atomic-waker", - "bytes", - "futures-channel", - "futures-core", - "h2", - "http 1.3.1", - "http-body 1.0.1", - "httparse", - "httpdate", - "itoa", - "pin-project-lite", - "pin-utils", - "smallvec", - "tokio", - "want", + "cfg-if", + "dirs-sys-next", ] [[package]] -name = "hyper-rustls" -version = "0.27.7" +name = "dirs-sys-next" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ - "http 1.3.1", - "hyper", - "hyper-util", - "log", - "rustls", - "rustls-native-certs", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots 1.0.2", + "libc", + "redox_users", + "winapi 0.3.9", ] [[package]] -name = "hyper-timeout" -version = "0.5.2" +name = "dispatch" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" -dependencies = [ - "hyper", - "hyper-util", - "pin-project-lite", - "tokio", - "tower-service", -] +checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" [[package]] -name = "hyper-util" -version = "0.1.16" +name = "displaydoc" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ - "base64 0.22.1", - "bytes", - "futures-channel", - "futures-core", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "hyper", - "ipnet", - "libc", - "percent-encoding", - "pin-project-lite", - "socket2 0.6.0", - "tokio", - "tower-service", - "tracing", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "iana-time-zone" -version = "0.1.63" +name = "doc-comment" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" + +[[package]] +name = "dotenv" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core", -] +checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f" [[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" +name = "dunce" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" dependencies = [ - "cc", + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve", + "rfc6979", + "signature 2.2.0", + "spki 0.7.3", ] [[package]] -name = "icu_collections" -version = "2.0.0" +name = "ed25519" +version = "1.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" dependencies = [ - "displaydoc", - "potential_utf", - "yoke", - "zerofrom", - "zerovec", + "serde", + "signature 1.6.4", ] [[package]] -name = "icu_locale_core" -version = "2.0.0" +name = "ed25519-dalek" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", + "curve25519-dalek", + "ed25519", + "rand 0.7.3", + "serde", + "serde_bytes", + "sha2 0.9.9", + "zeroize", ] [[package]] -name = "icu_normalizer" -version = "2.0.0" +name = "ed25519-dalek-bip32" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +checksum = "9d2be62a4061b872c8c0873ee4fc6f101ce7b889d039f019c5fa2af471a59908" dependencies = [ - "displaydoc", - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "zerovec", + "derivation-path", + "ed25519-dalek", + "hmac 0.12.1", + "sha2 0.10.9", ] [[package]] -name = "icu_normalizer_data" -version = "2.0.0" +name = "either" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" +checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" [[package]] -name = "icu_properties" -version = "2.0.1" +name = "elliptic-curve" +version = "0.13.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" dependencies = [ - "displaydoc", - "icu_collections", - "icu_locale_core", - "icu_properties_data", - "icu_provider", - "potential_utf", - "zerotrie", - "zerovec", + "base16ct", + "crypto-bigint 0.5.5", + "digest 0.10.7", + "ff", + "generic-array", + "group", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1", + "subtle", + "zeroize", ] [[package]] -name = "icu_properties_data" -version = "2.0.1" +name = "encoding_rs" +version = "0.8.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" +checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" +dependencies = [ + "cfg-if", +] [[package]] -name = "icu_provider" -version = "2.0.0" +name = "enum_dispatch" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd" dependencies = [ - "displaydoc", - "icu_locale_core", - "stable_deref_trait", - "tinystr", - "writeable", - "yoke", - "zerofrom", - "zerotrie", - "zerovec", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "ident_case" -version = "1.0.1" +name = "equivalent" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] -name = "idna" -version = "1.1.0" +name = "erased-serde" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", + "serde", ] [[package]] -name = "idna_adapter" -version = "1.2.1" +name = "errno" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ - "icu_normalizer", - "icu_properties", + "libc", + "windows-sys 0.61.0", ] [[package]] -name = "im" -version = "15.1.0" +name = "error-chain" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9" +checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" dependencies = [ - "bitmaps", - "rand_core 0.6.4", - "rand_xoshiro", - "sized-chunks", - "typenum", "version_check", ] [[package]] -name = "impl-codec" -version = "0.5.1" +name = "ethnum" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443" -dependencies = [ - "parity-scale-codec", -] +checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b" [[package]] -name = "impl-serde" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" +name = "executor" +version = "0.1.0" dependencies = [ - "serde", + "anyhow", ] [[package]] -name = "impl-trait-for-tuples" -version = "0.2.3" +name = "fail" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" +checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "log", + "once_cell", + "rand 0.8.5", ] [[package]] -name = "indenter" -version = "0.3.4" +name = "fastrand" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" +checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" [[package]] -name = "indexmap" -version = "1.9.3" +name = "ff" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", + "bitvec 1.0.1", + "byteorder", + "ff_derive", + "rand_core 0.6.4", + "subtle", ] [[package]] -name = "indexmap" -version = "2.11.1" +name = "ff_derive" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921" +checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" dependencies = [ - "equivalent", - "hashbrown 0.15.5", - "serde", + "addchain", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "indicatif" -version = "0.17.11" +name = "filetime" +version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" +checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" dependencies = [ - "console", - "number_prefix", - "portable-atomic", - "unicode-width 0.2.1", - "web-time", + "cfg-if", + "libc", + "libredox", + "windows-sys 0.60.2", ] [[package]] -name = "inline_colorization" -version = "0.1.6" +name = "find-msvc-tools" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1804bdb6a9784758b200007273a8b84e2b0b0b97a8f1e18e763eceb3e9f98a" +checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d" [[package]] -name = "inotify" -version = "0.9.6" +name = "fixed" +version = "1.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" +checksum = "707070ccf8c4173548210893a0186e29c266901b71ed20cd9e2ca0193dfe95c3" dependencies = [ - "bitflags 1.3.2", - "inotify-sys", - "libc", + "az", + "bytemuck", + "half 2.6.0", + "typenum", ] [[package]] -name = "inotify-sys" -version = "0.1.5" +name = "fixed-hash" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" +checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" dependencies = [ - "libc", + "byteorder", + "rand 0.8.5", + "rustc-hex", + "static_assertions", ] [[package]] -name = "inout" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" -dependencies = [ - "block-padding 0.3.3", - "generic-array", -] +name = "fixedbitset" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] -name = "insta" -version = "1.43.2" +name = "flate2" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0" +checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" dependencies = [ - "console", - "once_cell", - "serde", - "similar", + "crc32fast", + "miniz_oxide", ] [[package]] -name = "instant" -version = "0.1.13" +name = "flexi_logger" +version = "0.27.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" +checksum = "469e584c031833564840fb0cdbce99bdfe946fd45480a188545e73a76f45461c" dependencies = [ - "cfg-if", + "chrono", + "glob", + "is-terminal", + "lazy_static", + "log", + "nu-ansi-term 0.49.0", + "regex", + "thiserror 1.0.69", ] [[package]] -name = "integer-encoding" -version = "3.0.4" +name = "fnv" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] -name = "inventory" -version = "0.3.21" +name = "foldhash" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e" -dependencies = [ - "rustversion", -] +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" [[package]] -name = "io-uring" -version = "0.7.10" +name = "foreign-types" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" dependencies = [ - "bitflags 2.9.4", - "cfg-if", - "libc", + "foreign-types-shared", ] [[package]] -name = "ipnet" -version = "2.11.0" +name = "foreign-types-shared" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] -name = "iri-string" -version = "0.7.8" +name = "form_urlencoded" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ - "memchr", - "serde", + "percent-encoding", ] [[package]] -name = "is-terminal" -version = "0.4.16" +name = "fs_extra" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" -dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.59.0", -] +checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c" [[package]] -name = "is_terminal_polyfill" -version = "1.70.1" +name = "fst" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" [[package]] -name = "itertools" -version = "0.10.5" +name = "funty" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] +checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" [[package]] -name = "itertools" -version = "0.12.1" +name = "funty" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" -dependencies = [ - "either", -] +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] -name = "itertools" -version = "0.13.0" +name = "futures" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" dependencies = [ - "either", + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", ] [[package]] -name = "itertools" -version = "0.14.0" +name = "futures-channel" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" dependencies = [ - "either", + "futures-core", + "futures-sink", ] [[package]] -name = "itoa" -version = "1.0.15" +name = "futures-core" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" [[package]] -name = "jni" -version = "0.21.1" +name = "futures-executor" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" dependencies = [ - "cesu8", - "cfg-if", - "combine", - "jni-sys", - "log", - "thiserror 1.0.69", - "walkdir", - "windows-sys 0.45.0", + "futures-core", + "futures-task", + "futures-util", ] [[package]] -name = "jni-sys" -version = "0.3.0" +name = "futures-io" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" [[package]] -name = "jobserver" -version = "0.1.34" +name = "futures-macro" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" +checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ - "getrandom 0.3.3", - "libc", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "js-sys" -version = "0.3.78" +name = "futures-sink" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0b063578492ceec17683ef2f8c5e89121fbd0b172cbc280635ab7567db2738" -dependencies = [ - "once_cell", - "wasm-bindgen", -] - -[[package]] -name = "json_to_table" -version = "0.6.0" -source = "git+https://github.com/zhiburt/tabled/?rev=e449317a1c02eb6b29e409ad6617e5d9eb7b3bd4#e449317a1c02eb6b29e409ad6617e5d9eb7b3bd4" -dependencies = [ - "serde_json", - "tabled", -] +checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" [[package]] -name = "jsonrpc" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "serde", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tracing", -] +name = "futures-task" +version = "0.3.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" [[package]] -name = "jsonrpsee" -version = "0.24.9" +name = "futures-timer" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b26c20e2178756451cfeb0661fb74c47dd5988cb7e3939de7e9241fd604d42" -dependencies = [ - "jsonrpsee-core", - "jsonrpsee-http-client", - "jsonrpsee-proc-macros", - "jsonrpsee-server", - "jsonrpsee-types", - "jsonrpsee-ws-client", - "tokio", - "tracing", -] +checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" [[package]] -name = "jsonrpsee-client-transport" -version = "0.24.9" +name = "futures-util" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bacb85abf4117092455e1573625e21b8f8ef4dec8aff13361140b2dc266cdff2" +checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" dependencies = [ - "base64 0.22.1", - "futures-util", - "http 1.3.1", - "jsonrpsee-core", - "pin-project", - "rustls", - "rustls-pki-types", - "rustls-platform-verifier", - "soketto", - "thiserror 1.0.69", - "tokio", - "tokio-rustls", - "tokio-util 0.7.16", - "tracing", - "url", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", ] [[package]] -name = "jsonrpsee-core" -version = "0.24.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456196007ca3a14db478346f58c7238028d55ee15c1df15115596e411ff27925" +name = "fuzzer-core" +version = "0.1.0" dependencies = [ + "anyhow", "async-trait", - "bytes", - "futures-timer", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "jsonrpsee-types", - "parking_lot 0.12.4", - "pin-project", - "rand 0.8.5", - "rustc-hash 2.1.1", + "hex", + "lru", + "rand 0.9.2", "serde", "serde_json", - "thiserror 1.0.69", "tokio", - "tokio-stream", "tracing", ] [[package]] -name = "jsonrpsee-http-client" -version = "0.24.9" +name = "fxhash" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c872b6c9961a4ccc543e321bb5b89f6b2d2c7fe8b61906918273a3333c95400c" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" dependencies = [ - "async-trait", - "base64 0.22.1", - "http-body 1.0.1", - "hyper", - "hyper-rustls", - "hyper-util", - "jsonrpsee-core", - "jsonrpsee-types", - "rustls", - "rustls-platform-verifier", - "serde", - "serde_json", - "thiserror 1.0.69", - "tokio", - "tower 0.4.13", - "tracing", - "url", + "byteorder", ] [[package]] -name = "jsonrpsee-proc-macros" -version = "0.24.9" +name = "gcc" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" + +[[package]] +name = "generic-array" +version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e65763c942dfc9358146571911b0cd1c361c2d63e2d2305622d40d36376ca80" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ - "heck 0.5.0", - "proc-macro-crate 3.3.0", - "proc-macro2", - "quote", - "syn 2.0.106", + "typenum", + "version_check", + "zeroize", ] [[package]] -name = "jsonrpsee-server" -version = "0.24.9" +name = "get_if_addrs" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55e363146da18e50ad2b51a0a7925fc423137a0b1371af8235b1c231a0647328" +checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" dependencies = [ - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "jsonrpsee-core", - "jsonrpsee-types", - "pin-project", - "route-recognizer", - "serde", - "serde_json", - "soketto", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tokio-util 0.7.16", - "tower 0.4.13", - "tracing", + "c_linked_list", + "get_if_addrs-sys", + "libc", + "winapi 0.2.8", ] [[package]] -name = "jsonrpsee-types" -version = "0.24.9" +name = "get_if_addrs-sys" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a8e70baf945b6b5752fc8eb38c918a48f1234daf11355e07106d963f860089" +checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" dependencies = [ - "http 1.3.1", - "serde", - "serde_json", - "thiserror 1.0.69", + "gcc", + "libc", ] [[package]] -name = "jsonrpsee-ws-client" -version = "0.24.9" +name = "getrandom" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b3323d890aa384f12148e8d2a1fd18eb66e9e7e825f9de4fa53bcc19b93eef" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ - "http 1.3.1", - "jsonrpsee-client-transport", - "jsonrpsee-core", - "jsonrpsee-types", - "url", + "cfg-if", + "js-sys", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", + "wasm-bindgen", ] [[package]] -name = "k256" -version = "0.11.6" +name = "getrandom" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72c1e0b51e7ec0a97369623508396067a486bd0cbed95a2659a4b863d28cfc8b" +checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" dependencies = [ "cfg-if", - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.9", - "sha3 0.10.8", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", ] [[package]] -name = "k256" -version = "0.13.4" +name = "getrandom" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" +checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "sha2 0.10.9", + "libc", + "r-efi", + "wasi 0.14.7+wasi-0.2.4", ] [[package]] -name = "keccak" -version = "0.1.5" +name = "ghash" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1" dependencies = [ - "cpufeatures", + "opaque-debug", + "polyval", ] [[package]] -name = "kqueue" -version = "1.1.1" +name = "gimli" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac30106d7dce88daf4a3fcb4879ea939476d5074a9b7ddd0fb97fa4bed5596a" -dependencies = [ - "kqueue-sys", - "libc", -] +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" [[package]] -name = "kqueue-sys" -version = "1.0.4" +name = "git2" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" +checksum = "2994bee4a3a6a51eb90c218523be382fd7ea09b16380b9312e9dbe955ff7c7d1" dependencies = [ "bitflags 1.3.2", "libc", + "libgit2-sys", + "log", + "url", ] [[package]] -name = "lalrpop" -version = "0.19.12" +name = "glob" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" -dependencies = [ - "ascii-canvas", - "bit-set 0.5.3", - "diff", - "ena", - "is-terminal", - "itertools 0.10.5", - "lalrpop-util", - "petgraph 0.6.5", - "regex", - "regex-syntax 0.6.29", - "string_cache", - "term", - "tiny-keccak", - "unicode-xid", -] +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] -name = "lalrpop-util" -version = "0.19.12" +name = "globset" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" +checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5" dependencies = [ - "regex", + "aho-corasick", + "bstr", + "log", + "regex-automata", + "regex-syntax", ] [[package]] -name = "lazy_static" -version = "1.5.0" +name = "globwalk" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757" dependencies = [ - "spin", + "bitflags 2.9.4", + "ignore", + "walkdir", ] [[package]] -name = "lazycell" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" - -[[package]] -name = "lcov" -version = "0.8.1" +name = "google-cloud-auth" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ccfa6d5e585a884db65b37f38184e4364eaf74d884ac35d0a90fe9baf80b723" +checksum = "931bedb2264cb00f914b0a6a5c304e34865c34306632d3932e0951a073e4a67d" dependencies = [ + "async-trait", + "base64 0.21.7", + "google-cloud-metadata", + "google-cloud-token", + "home", + "jsonwebtoken 8.3.0", + "reqwest", + "serde", + "serde_json", "thiserror 1.0.69", + "time", + "tokio", + "tracing", + "urlencoding", ] [[package]] -name = "leb128" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" - -[[package]] -name = "libc" -version = "0.2.175" +name = "google-cloud-metadata" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" +checksum = "96e4ad0802d3f416f62e7ce01ac1460898ee0efc98f8b45cd4aab7611607012f" +dependencies = [ + "reqwest", + "thiserror 1.0.69", + "tokio", +] [[package]] -name = "libloading" -version = "0.8.8" +name = "google-cloud-storage" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" +checksum = "22c57ca1d971d7c6f852c02eda4e87e88b1247b6ed8be9fa5b2768c68b0f2ca5" dependencies = [ - "cfg-if", - "windows-targets 0.53.3", + "async-stream", + "base64 0.21.7", + "bytes", + "futures-util", + "google-cloud-auth", + "google-cloud-metadata", + "google-cloud-token", + "hex", + "once_cell", + "percent-encoding", + "regex", + "reqwest", + "ring 0.16.20", + "rsa 0.6.1", + "serde", + "serde_json", + "sha2 0.10.9", + "thiserror 1.0.69", + "time", + "tokio", + "tracing", + "url", ] [[package]] -name = "libm" -version = "0.2.15" +name = "google-cloud-token" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" +checksum = "8f49c12ba8b21d128a2ce8585955246977fbce4415f680ebf9199b6f9d6d725f" +dependencies = [ + "async-trait", +] [[package]] -name = "libredox" -version = "0.1.9" +name = "group" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "bitflags 2.9.4", - "libc", - "redox_syscall 0.5.17", + "ff", + "rand 0.8.5", + "rand_core 0.6.4", + "rand_xorshift 0.3.0", + "subtle", ] [[package]] -name = "librocksdb-sys" -version = "0.16.0+8.10.0" +name = "h2" +version = "0.3.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce3d60bc059831dc1c83903fb45c103f75db65c5a7bf22272764d9cc683e348c" +checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d" dependencies = [ - "bindgen 0.69.5", - "bzip2-sys", - "cc", - "glob", - "libc", - "libz-sys", - "lz4-sys", - "tikv-jemalloc-sys", - "zstd-sys", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http 0.2.12", + "indexmap 2.11.3", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] -name = "libz-sys" -version = "1.1.22" +name = "h2" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" +checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" dependencies = [ - "cc", - "pkg-config", - "vcpkg", + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http 1.3.1", + "indexmap 2.11.3", + "slab", + "tokio", + "tokio-util", + "tracing", ] [[package]] -name = "linked-hash-map" -version = "0.5.6" +name = "half" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" +checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" [[package]] -name = "linkme" -version = "0.3.33" +name = "half" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1b1703c00b2a6a70738920544aa51652532cacddfec2e162d2e29eae01e665c" +checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9" dependencies = [ - "linkme-impl", + "cfg-if", + "crunchy", ] [[package]] -name = "linkme-impl" -version = "0.3.33" +name = "hashbrown" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04d55ca5d5a14363da83bf3c33874b8feaa34653e760d5216d7ef9829c88001a" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "ahash 0.7.8", ] [[package]] -name = "linux-raw-sys" -version = "0.11.0" +name = "hashbrown" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +dependencies = [ + "ahash 0.8.12", +] [[package]] -name = "litemap" -version = "0.8.0" +name = "hashbrown" +version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash 0.8.12", + "allocator-api2", +] [[package]] -name = "lock_api" -version = "0.4.13" +name = "hashbrown" +version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ - "autocfg", - "scopeguard", + "allocator-api2", + "equivalent", + "foldhash", ] [[package]] -name = "log" -version = "0.4.28" +name = "headers" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "serde", + "base64 0.21.7", + "bytes", + "headers-core 0.2.0", + "http 0.2.12", + "httpdate", + "mime", + "sha1", ] [[package]] -name = "logos" -version = "0.12.1" +name = "headers" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf8b031682c67a8e3d5446840f9573eb7fe26efe7ec8d195c9ac4c0647c502f1" +checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" dependencies = [ - "logos-derive", + "base64 0.22.1", + "bytes", + "headers-core 0.3.0", + "http 1.3.1", + "httpdate", + "mime", + "sha1", ] [[package]] -name = "logos-derive" -version = "0.12.1" +name = "headers-core" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d849148dbaf9661a6151d1ca82b13bb4c4c128146a88d05253b38d4e2f496c" +checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "beef", - "fnv", - "proc-macro2", - "quote", - "regex-syntax 0.6.29", - "syn 1.0.109", + "http 0.2.12", ] [[package]] -name = "loom" -version = "0.7.2" +name = "headers-core" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4" dependencies = [ - "cfg-if", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", + "http 1.3.1", ] [[package]] -name = "lru" -version = "0.10.1" +name = "heck" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "718e8fae447df0c7e1ba7f5189829e63fd536945c8988d61444c19039f16b670" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" dependencies = [ - "hashbrown 0.13.2", + "unicode-segmentation", ] [[package]] -name = "lru" -version = "0.12.5" +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" -dependencies = [ - "hashbrown 0.15.5", -] +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] -name = "lru" -version = "0.16.1" +name = "hermit-abi" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfe949189f46fabb938b3a9a0be30fdd93fd8a09260da863399a8cf3db756ec8" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" dependencies = [ - "hashbrown 0.15.5", + "libc", ] [[package]] -name = "lru-slab" -version = "0.1.2" +name = "hermit-abi" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" [[package]] -name = "lsp-types" -version = "0.94.1" +name = "hermit-abi" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c66bfd44a06ae10647fe3f8214762e9369fd4248df1350924b4ef9e770a85ea1" -dependencies = [ - "bitflags 1.3.2", - "serde", - "serde_json", - "serde_repr", - "url", -] +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] -name = "lsp-types" -version = "0.95.1" +name = "hex" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e34d33a8e9b006cd3fc4fe69a921affa097bae4bb65f76271f4644f9a334365" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" dependencies = [ - "bitflags 1.3.2", "serde", - "serde_json", - "serde_repr", - "url", ] [[package]] -name = "lz4-sys" -version = "1.11.1+lz4-1.10.0" +name = "hidapi" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" +checksum = "798154e4b6570af74899d71155fb0072d5b17e6aa12f39c8ef22c60fb8ec99e7" dependencies = [ "cc", "libc", + "pkg-config", + "winapi 0.3.9", ] [[package]] -name = "maplit" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" - -[[package]] -name = "matchers" -version = "0.2.0" +name = "hkdf" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" dependencies = [ - "regex-automata", + "digest 0.9.0", + "hmac 0.10.1", ] [[package]] -name = "matchit" -version = "0.5.0" +name = "hkdf" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac 0.12.1", +] [[package]] -name = "matchit" -version = "0.7.3" +name = "hmac" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" +checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" +dependencies = [ + "crypto-mac 0.8.0", + "digest 0.9.0", +] [[package]] -name = "matchit" -version = "0.8.4" +name = "hmac" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3" +checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" +dependencies = [ + "crypto-mac 0.10.0", + "digest 0.9.0", +] [[package]] -name = "md-5" -version = "0.10.6" +name = "hmac" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" dependencies = [ - "cfg-if", "digest 0.10.7", ] [[package]] -name = "memchr" -version = "2.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" - -[[package]] -name = "memoffset" -version = "0.6.5" +name = "hmac-drbg" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" dependencies = [ - "autocfg", + "digest 0.9.0", + "generic-array", + "hmac 0.8.1", ] [[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "mime_guess" -version = "2.0.5" +name = "home" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" +checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf" dependencies = [ - "mime", - "unicase", + "windows-sys 0.59.0", ] [[package]] -name = "minimal-lexical" -version = "0.2.1" +name = "hostname" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi 0.3.9", +] [[package]] -name = "miniz_oxide" -version = "0.8.9" +name = "http" +version = "0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" dependencies = [ - "adler2", + "bytes", + "fnv", + "itoa", ] [[package]] -name = "mio" -version = "0.8.11" +name = "http" +version = "1.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" +checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" dependencies = [ - "libc", - "log", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.48.0", + "bytes", + "fnv", + "itoa", ] [[package]] -name = "mio" -version = "1.0.4" +name = "http-body" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" dependencies = [ - "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", + "bytes", + "http 0.2.12", + "pin-project-lite", ] [[package]] -name = "mockall" -version = "0.11.4" +name = "http-body" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" dependencies = [ - "cfg-if", - "downcast", - "fragile", - "lazy_static", - "mockall_derive", - "predicates", - "predicates-tree", + "bytes", + "http 1.3.1", ] [[package]] -name = "mockall_derive" -version = "0.11.4" +name = "http-body-util" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "syn 1.0.109", + "bytes", + "futures-core", + "http 1.3.1", + "http-body 1.0.1", + "pin-project-lite", ] [[package]] -name = "moka" -version = "0.12.10" +name = "httparse" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" -dependencies = [ - "crossbeam-channel", - "crossbeam-epoch", - "crossbeam-utils", - "loom", - "parking_lot 0.12.4", - "portable-atomic", - "rustc_version", - "smallvec", - "tagptr", - "thiserror 1.0.69", - "uuid", -] +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" [[package]] -name = "move-abstract-interpreter" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] -name = "move-abstract-interpreter-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "humansize" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" dependencies = [ - "move-binary-format", + "libm", ] [[package]] -name = "move-abstract-stack" -version = "0.0.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "hyper" +version = "0.14.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.5.10", + "tokio", + "tower-service", + "tracing", + "want", +] [[package]] -name = "move-binary-format" -version = "0.0.3" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "hyper" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" dependencies = [ - "anyhow", - "enum-compat-util", - "indexmap 2.11.1", - "move-abstract-interpreter", - "move-core-types", - "move-proc-macros", - "ref-cast", - "serde", - "variant_count", + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2 0.4.12", + "http 1.3.1", + "http-body 1.0.1", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", ] [[package]] -name = "move-borrow-graph" -version = "0.0.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "hyper-rustls" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" +dependencies = [ + "futures-util", + "http 0.2.12", + "hyper 0.14.32", + "rustls 0.21.12", + "tokio", + "tokio-rustls 0.24.1", +] [[package]] -name = "move-bytecode-source-map" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "bcs", - "move-binary-format", - "move-command-line-common", - "move-core-types", - "move-ir-types", - "move-symbol-pool", - "serde", - "serde_json", +name = "hyper-timeout" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" +dependencies = [ + "hyper 1.7.0", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", ] [[package]] -name = "move-bytecode-utils" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "hyper-tls" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ - "anyhow", - "indexmap 2.11.1", - "move-binary-format", - "move-core-types", - "petgraph 0.8.2", - "serde-reflection", + "bytes", + "hyper 0.14.32", + "native-tls", + "tokio", + "tokio-native-tls", ] [[package]] -name = "move-bytecode-verifier" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "hyper-util" +version = "0.1.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" dependencies = [ - "move-abstract-interpreter", - "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", - "move-bytecode-verifier-meter", - "move-core-types", - "move-vm-config", - "petgraph 0.8.2", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "hyper 1.7.0", + "libc", + "pin-project-lite", + "socket2 0.6.0", + "tokio", + "tower-service", + "tracing", ] [[package]] -name = "move-bytecode-verifier-meter" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "iana-time-zone" +version = "0.1.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" dependencies = [ - "move-binary-format", - "move-core-types", - "move-vm-config", + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", ] [[package]] -name = "move-bytecode-verifier-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" dependencies = [ - "move-abstract-interpreter-v2", - "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", - "move-bytecode-verifier-meter", - "move-core-types", - "move-vm-config", - "petgraph 0.8.2", + "cc", ] [[package]] -name = "move-bytecode-verifier-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "icu_collections" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" dependencies = [ - "move-abstract-interpreter-v2", - "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", - "move-bytecode-verifier-meter", - "move-core-types", - "move-vm-config", - "petgraph 0.8.2", + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", ] [[package]] -name = "move-bytecode-verifier-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "icu_locale_core" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" dependencies = [ - "move-abstract-interpreter-v2", - "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", - "move-bytecode-verifier-meter", - "move-core-types", - "move-vm-config", - "petgraph 0.8.2", + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", ] [[package]] -name = "move-command-line-common" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "icu_normalizer" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" dependencies = [ - "anyhow", - "bcs", - "colored", - "dirs-next", - "hex", - "insta", - "move-binary-format", - "move-core-types", - "once_cell", - "packed_struct", - "serde", - "sha2 0.9.9", - "vfs", - "walkdir", + "displaydoc", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", ] [[package]] -name = "move-compiler" -version = "0.0.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "bcs", - "clap", - "codespan-reporting", - "dunce", - "hex", - "insta", - "lsp-types 0.95.1", - "move-abstract-interpreter", - "move-binary-format", - "move-borrow-graph", - "move-bytecode-source-map", - "move-bytecode-verifier", - "move-command-line-common", - "move-core-types", - "move-ir-to-bytecode", - "move-ir-types", - "move-proc-macros", - "move-symbol-pool", - "once_cell", - "petgraph 0.8.2", - "rayon", - "regex", - "serde", - "serde_json", - "similar", - "stacker", - "tempfile", - "vfs", -] +name = "icu_normalizer_data" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" [[package]] -name = "move-core-types" -version = "0.0.4" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "icu_properties" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" dependencies = [ - "anyhow", - "bcs", - "enum-compat-util", - "ethnum", - "hex", - "indexmap 2.11.1", - "leb128", - "move-proc-macros", - "num", - "once_cell", - "primitive-types", - "rand 0.8.5", - "ref-cast", - "serde", - "serde_bytes", - "serde_with", - "thiserror 1.0.69", - "uint", + "displaydoc", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "potential_utf", + "zerotrie", + "zerovec", ] [[package]] -name = "move-coverage" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "icu_properties_data" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" + +[[package]] +name = "icu_provider" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" dependencies = [ - "anyhow", - "bcs", - "clap", - "codespan", - "colored", - "indexmap 2.11.1", - "lcov", - "move-abstract-interpreter", - "move-binary-format", - "move-bytecode-source-map", - "move-bytecode-verifier", - "move-command-line-common", - "move-compiler", - "move-core-types", - "move-ir-types", - "move-trace-format", - "petgraph 0.8.2", - "serde", + "displaydoc", + "icu_locale_core", + "stable_deref_trait", + "tinystr", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", ] [[package]] -name = "move-disassembler" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" dependencies = [ - "anyhow", - "bcs", - "clap", - "hex", - "inline_colorization", - "move-abstract-interpreter", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", - "move-compiler", - "move-core-types", - "move-coverage", - "move-ir-types", - "move-symbol-pool", + "unicode-bidi", + "unicode-normalization", ] [[package]] -name = "move-docgen" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ - "anyhow", - "clap", - "codespan", - "codespan-reporting", - "itertools 0.10.5", - "log", - "move-binary-format", - "move-compiler", - "move-core-types", - "move-ir-types", - "move-model-2", - "move-symbol-pool", - "num", - "once_cell", - "regex", - "serde", + "idna_adapter", + "smallvec", + "utf8_iter", ] [[package]] -name = "move-ir-to-bytecode" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" dependencies = [ - "anyhow", - "codespan-reporting", - "log", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", - "move-core-types", - "move-ir-to-bytecode-syntax", - "move-ir-types", - "move-symbol-pool", - "ouroboros", + "icu_normalizer", + "icu_properties", ] [[package]] -name = "move-ir-to-bytecode-syntax" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ignore" +version = "0.4.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b" dependencies = [ - "anyhow", - "hex", - "move-command-line-common", - "move-core-types", - "move-ir-types", - "move-symbol-pool", + "crossbeam-deque", + "globset", + "log", + "memchr", + "regex-automata", + "same-file", + "walkdir", + "winapi-util", ] [[package]] -name = "move-ir-types" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "im" +version = "15.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0acd33ff0285af998aaf9b57342af478078f53492322fafc47450e09397e0e9" dependencies = [ - "hex", - "move-command-line-common", - "move-core-types", - "move-symbol-pool", - "once_cell", - "serde", + "bitmaps", + "rand_core 0.6.4", + "rand_xoshiro", + "sized-chunks", + "typenum", + "version_check", ] [[package]] -name = "move-model-2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "impl-codec" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443" dependencies = [ - "anyhow", - "bcs", - "codespan", - "codespan-reporting", - "indexmap 2.11.1", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", - "move-compiler", - "move-core-types", - "move-disassembler", - "move-ir-types", - "move-symbol-pool", - "num", - "serde", - "vfs", + "parity-scale-codec", ] [[package]] -name = "move-package" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "impl-serde" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" dependencies = [ - "anyhow", - "clap", - "colored", - "dunce", - "itertools 0.10.5", - "move-binary-format", - "move-bytecode-source-map", - "move-bytecode-utils", - "move-command-line-common", - "move-compiler", - "move-core-types", - "move-disassembler", - "move-docgen", - "move-model-2", - "move-symbol-pool", - "named-lock", - "once_cell", - "petgraph 0.8.2", - "regex", "serde", - "serde_yaml", - "sha2 0.9.9", - "tempfile", - "toml", - "toml_edit", - "treeline", - "vfs", - "walkdir", - "whoami", ] [[package]] -name = "move-proc-macros" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "impl-trait-for-tuples" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ - "enum-compat-util", + "proc-macro2", "quote", "syn 2.0.106", ] [[package]] -name = "move-regex-borrow-graph" -version = "0.0.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "include_dir" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24b56e147e6187d61e9d0f039f10e070d0c0a887e24fe0bb9ca3f29bfde62cab" dependencies = [ - "itertools 0.10.5", - "move-binary-format", - "move-core-types", - "petgraph 0.8.2", + "glob", + "include_dir_impl", + "proc-macro-hack", ] [[package]] -name = "move-stdlib-natives" -version = "0.1.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "include_dir_impl" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a0c890c85da4bab7bce4204c707396bbd3c6c8a681716a51c8814cfc2b682df" dependencies = [ - "hex", - "move-binary-format", - "move-core-types", - "move-vm-runtime", - "move-vm-types", - "sha2 0.9.9", - "sha3 0.9.1", - "smallvec", + "anyhow", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "move-stdlib-natives-v0" -version = "0.1.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "hex", - "move-binary-format", - "move-core-types", - "move-vm-runtime-v0", - "move-vm-types-v0", - "sha2 0.9.9", - "sha3 0.9.1", - "smallvec", + "autocfg", + "hashbrown 0.12.3", + "serde", ] [[package]] -name = "move-stdlib-natives-v1" -version = "0.1.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "indexmap" +version = "2.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92119844f513ffa41556430369ab02c295a3578af21cf945caa3e9e0c2481ac3" dependencies = [ - "hex", - "move-binary-format", - "move-core-types", - "move-vm-runtime-v1", - "move-vm-types-v1", - "sha2 0.9.9", - "sha3 0.9.1", - "smallvec", + "equivalent", + "hashbrown 0.15.5", + "serde", + "serde_core", ] [[package]] -name = "move-stdlib-natives-v2" -version = "0.1.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "hex", - "move-binary-format", - "move-core-types", - "move-vm-runtime-v2", - "move-vm-types-v2", - "sha2 0.9.9", - "sha3 0.9.1", - "smallvec", -] +name = "indoc" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" [[package]] -name = "move-symbol-pool" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "inout" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "once_cell", - "phf", - "serde", + "generic-array", ] [[package]] -name = "move-trace-format" -version = "0.0.1" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "instant" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222" dependencies = [ - "move-binary-format", - "move-core-types", - "serde", - "serde_json", - "zstd 0.13.3", + "cfg-if", ] [[package]] -name = "move-vm-config" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "internment" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ab388864246d58a276e60e7569a833d9cc4cd75c66e5ca77c177dad38e59996" dependencies = [ - "move-binary-format", + "ahash 0.7.8", + "dashmap 5.5.3", + "hashbrown 0.12.3", "once_cell", + "parking_lot", ] [[package]] -name = "move-vm-profiler" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "io-lifetimes" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "move-vm-config", - "once_cell", - "serde", - "serde_json", - "tracing", + "hermit-abi 0.3.9", + "libc", + "windows-sys 0.48.0", ] [[package]] -name = "move-vm-runtime" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "io-uring" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" dependencies = [ - "better_any", - "fail", - "move-binary-format", - "move-bytecode-verifier", - "move-core-types", - "move-trace-format", - "move-vm-config", - "move-vm-profiler", - "move-vm-types", - "once_cell", - "parking_lot 0.11.2", - "smallvec", - "tracing", + "bitflags 2.9.4", + "cfg-if", + "libc", ] [[package]] -name = "move-vm-runtime-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "better_any", - "fail", - "move-binary-format", - "move-bytecode-verifier-v0", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-types-v0", - "once_cell", - "parking_lot 0.11.2", - "smallvec", - "tracing", -] +name = "ipnet" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" [[package]] -name = "move-vm-runtime-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "is-terminal" +version = "0.4.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" dependencies = [ - "better_any", - "fail", - "move-binary-format", - "move-bytecode-verifier-v1", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-types-v1", - "once_cell", - "parking_lot 0.11.2", - "smallvec", - "tracing", + "hermit-abi 0.5.2", + "libc", + "windows-sys 0.59.0", ] [[package]] -name = "move-vm-runtime-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "better_any", - "fail", - "move-binary-format", - "move-bytecode-verifier-v2", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-types-v2", - "once_cell", - "parking_lot 0.11.2", - "smallvec", - "tracing", -] +name = "is_debug" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fe266d2e243c931d8190177f20bf7f24eed45e96f39e87dc49a27b32d12d407" [[package]] -name = "move-vm-test-utils" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "move-vm-types", - "once_cell", - "serde", -] +name = "is_terminal_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" [[package]] -name = "move-vm-types" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "serde", - "smallvec", + "either", ] [[package]] -name = "move-vm-types-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "itertools" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "serde", - "smallvec", + "either", ] [[package]] -name = "move-vm-types-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "itoa" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" + +[[package]] +name = "jobserver" +version = "0.1.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "serde", - "smallvec", + "getrandom 0.3.3", + "libc", ] [[package]] -name = "move-vm-types-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "js-sys" +version = "0.3.80" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852f13bec5eba4ba9afbeb93fd7c13fe56147f055939ae21c43a29a0ecb2702e" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "serde", - "smallvec", + "once_cell", + "wasm-bindgen", ] [[package]] -name = "msim" -version = "0.1.0" -source = "git+https://github.com/MystenLabs/mysten-sim.git?rev=45b88cffa3f50d6f2022d0b422ca4a077ac96a98#45b88cffa3f50d6f2022d0b422ca4a077ac96a98" +name = "jsonwebtoken" +version = "7.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afabcc15e437a6484fc4f12d0fd63068fe457bf93f1c148d3d9649c60b103f32" dependencies = [ - "ahash 0.7.8", - "async-task", - "bincode", - "bytes", - "cc", - "downcast-rs", - "erasable", - "futures", - "lazy_static", - "libc", - "msim-macros", - "naive-timer", - "pin-project-lite", - "rand 0.8.5", - "real_tokio", + "base64 0.12.3", + "pem 0.8.3", + "ring 0.16.20", "serde", - "socket2 0.4.10", - "tap", - "tokio-util 0.7.15", - "toml", - "tracing", - "tracing-subscriber", + "serde_json", + "simple_asn1 0.4.1", ] [[package]] -name = "msim-macros" -version = "0.1.0" -source = "git+https://github.com/MystenLabs/mysten-sim.git?rev=45b88cffa3f50d6f2022d0b422ca4a077ac96a98#45b88cffa3f50d6f2022d0b422ca4a077ac96a98" +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" dependencies = [ - "darling 0.14.4", - "proc-macro2", - "quote", - "syn 1.0.109", + "base64 0.21.7", + "pem 1.1.1", + "ring 0.16.20", + "serde", + "serde_json", + "simple_asn1 0.6.3", ] [[package]] -name = "multiaddr" -version = "0.17.1" +name = "keccak" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" +checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" dependencies = [ - "arrayref", - "byteorder", - "data-encoding", - "log", - "multibase", - "multihash", - "percent-encoding", - "serde", - "static_assertions", - "unsigned-varint", - "url", + "cpufeatures", ] [[package]] -name = "multibase" -version = "0.9.1" +name = "lazy_static" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "base-x", - "data-encoding", - "data-encoding-macro", + "spin 0.9.8", ] [[package]] -name = "multihash" -version = "0.17.0" +name = "ledger-apdu" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" +checksum = "fe435806c197dfeaa5efcded5e623c4b8230fd28fdf1e91e7a86e40ef2acbf90" dependencies = [ - "core2", - "multihash-derive", - "unsigned-varint", + "arrayref", + "no-std-compat", + "snafu", ] [[package]] -name = "multihash-derive" -version = "0.8.1" +name = "ledger-transport" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db" +checksum = "1117f2143d92c157197785bf57711d7b02f2cfa101e162f8ca7900fb7f976321" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", - "synstructure 0.12.6", + "async-trait", + "ledger-apdu", ] [[package]] -name = "multimap" -version = "0.10.1" +name = "ledger-transport-hid" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" +checksum = "45ba81a1f5f24396b37211478aff7fbcd605dd4544df8dbed07b9da3c2057aee" +dependencies = [ + "byteorder", + "cfg-if", + "hex", + "hidapi", + "ledger-transport", + "libc", + "log", + "thiserror 1.0.69", +] [[package]] -name = "mysten-common" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "legacy-move-compiler" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "antithesis_sdk", "anyhow", - "either", - "fastcrypto", - "futures", - "mysten-metrics", + "bcs 0.1.4", + "clap 4.5.47", + "codespan-reporting", + "hex", + "move-binary-format", + "move-bytecode-source-map", + "move-bytecode-verifier", + "move-command-line-common", + "move-core-types", + "move-ir-types", + "move-symbol-pool", "once_cell", - "parking_lot 0.12.4", - "rand 0.8.5", - "reqwest", - "serde_json", - "snap", - "sui-macros", + "petgraph", + "regex", "tempfile", - "tokio", - "tracing", ] [[package]] -name = "mysten-metrics" -version = "0.7.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "libc" +version = "0.2.175" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543" + +[[package]] +name = "libgit2-sys" +version = "0.14.2+1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4" dependencies = [ - "async-trait", - "axum 0.8.4", - "dashmap", - "futures", - "once_cell", - "parking_lot 0.12.4", - "prometheus", - "prometheus-closure-metric", - "scopeguard", - "simple-server-timing-header", - "tap", - "tokio", - "tracing", - "uuid", + "cc", + "libc", + "libz-sys", + "pkg-config", ] [[package]] -name = "mysten-network" -version = "0.2.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "libloading" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" dependencies = [ - "anemo", - "anemo-tower", - "async-stream", - "bcs", - "bytes", - "eyre", - "fastcrypto", - "futures", - "http 1.3.1", - "http-body 1.0.1", - "hyper-rustls", - "hyper-util", - "multiaddr", - "once_cell", - "pin-project-lite", - "prometheus", - "rand 0.8.5", - "rustls", - "serde", - "snap", - "sui-http", - "tokio", - "tokio-rustls", - "tokio-stream", - "tonic 0.13.1", - "tonic-health", - "tower 0.5.2", - "tower-http 0.5.2", - "tracing", + "cfg-if", + "windows-targets 0.53.3", ] [[package]] -name = "naive-timer" -version = "0.2.0" +name = "libm" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "034a0ad7deebf0c2abcf2435950a6666c3c15ea9d8fad0c0f48efa8a7f843fed" +checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] -name = "named-lock" -version = "0.2.0" +name = "libredox" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40a3eb6b7c682b65d1f631ec3176829d72ab450b3aacdd3f719bf220822e59ac" +checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" dependencies = [ + "bitflags 2.9.4", "libc", - "once_cell", - "parking_lot 0.12.4", - "thiserror 1.0.69", - "widestring", - "winapi", + "redox_syscall", ] [[package]] -name = "neptune" -version = "13.0.0" +name = "librocksdb-sys" +version = "0.17.3+10.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06626c9ac04c894e9a23d061ba1309f28506cdc5fe64156d28a15fb57fc8e438" +checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9" dependencies = [ - "bellpepper", - "bellpepper-core", - "blake2s_simd", - "blstrs", - "byteorder", - "ff 0.13.1", - "generic-array", - "log", - "pasta_curves", - "serde", - "trait-set", + "bindgen", + "bzip2-sys", + "cc", + "libc", + "libz-sys", + "lz4-sys", + "zstd-sys", ] [[package]] -name = "new_debug_unreachable" -version = "1.0.6" +name = "libsecp256k1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" +checksum = "e79019718125edc905a079a70cfa5f3820bc76139fc91d6f9abc27ea2a887139" +dependencies = [ + "arrayref", + "base64 0.22.1", + "digest 0.9.0", + "hmac-drbg", + "libsecp256k1-core", + "libsecp256k1-gen-ecmult", + "libsecp256k1-gen-genmult", + "rand 0.8.5", + "serde", + "sha2 0.9.9", + "typenum", +] [[package]] -name = "nibble_vec" -version = "0.1.0" +name = "libsecp256k1-core" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43" +checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ - "smallvec", + "crunchy", + "digest 0.9.0", + "subtle", ] [[package]] -name = "nix" -version = "0.28.0" +name = "libsecp256k1-gen-ecmult" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4" +checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809" dependencies = [ - "bitflags 2.9.4", - "cfg-if", - "cfg_aliases 0.1.1", - "libc", + "libsecp256k1-core", ] [[package]] -name = "no-std-compat" -version = "0.4.1" +name = "libsecp256k1-gen-genmult" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" +checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c" +dependencies = [ + "libsecp256k1-core", +] [[package]] -name = "nom" -version = "7.1.3" +name = "libz-sys" +version = "1.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" dependencies = [ - "memchr", - "minimal-lexical", + "cc", + "libc", + "pkg-config", + "vcpkg", ] [[package]] -name = "nonempty" -version = "0.9.0" +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "995defdca0a589acfdd1bd2e8e3b896b4d4f7675a31fd14c32611440c7f608e6" +checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" [[package]] -name = "nonzero_ext" -version = "0.3.0" +name = "linux-raw-sys" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] -name = "normalize-line-endings" -version = "0.3.0" +name = "linux-raw-sys" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" [[package]] -name = "notify" -version = "6.1.1" +name = "litemap" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" -dependencies = [ - "bitflags 2.9.4", - "crossbeam-channel", - "filetime", - "fsevent-sys", - "inotify", - "kqueue", - "libc", - "log", - "mio 0.8.11", - "walkdir", - "windows-sys 0.48.0", -] +checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" [[package]] -name = "ntapi" -version = "0.4.1" +name = "lock_api" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" dependencies = [ - "winapi", + "autocfg", + "scopeguard", ] [[package]] -name = "nu-ansi-term" -version = "0.46.0" +name = "log" +version = "0.4.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" dependencies = [ - "overload", - "winapi", + "serde", ] [[package]] -name = "nu-ansi-term" -version = "0.50.1" +name = "lru" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" +checksum = "bfe949189f46fabb938b3a9a0be30fdd93fd8a09260da863399a8cf3db756ec8" dependencies = [ - "windows-sys 0.52.0", + "hashbrown 0.15.5", ] [[package]] -name = "num" -version = "0.4.3" +name = "lz4" +version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4" dependencies = [ - "num-bigint 0.4.6", - "num-complex", - "num-integer", - "num-iter", - "num-rational", - "num-traits", + "lz4-sys", ] [[package]] -name = "num-bigint" -version = "0.3.3" +name = "lz4-sys" +version = "1.11.1+lz4-1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "cc", + "libc", ] [[package]] -name = "num-bigint" -version = "0.4.6" +name = "maplit" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" -dependencies = [ - "num-integer", - "num-traits", - "rand 0.8.5", - "serde", -] +checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" [[package]] -name = "num-bigint-dig" -version = "0.8.4" +name = "match_cfg" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" -dependencies = [ - "byteorder", - "lazy_static", - "libm", - "num-integer", - "num-iter", - "num-traits", - "rand 0.8.5", - "smallvec", - "zeroize", -] +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" [[package]] -name = "num-complex" -version = "0.4.6" +name = "matchers" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" dependencies = [ - "num-traits", + "regex-automata", ] [[package]] -name = "num-conv" -version = "0.1.0" +name = "matchit" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" [[package]] -name = "num-integer" -version = "0.1.46" +name = "memchr" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" -dependencies = [ - "num-traits", -] +checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" [[package]] -name = "num-iter" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +name = "merlin" +version = "3.0.0" +source = "git+https://github.com/aptos-labs/merlin#3454ccc85e37355c729ba40e6dac6e867ddf59f5" dependencies = [ - "autocfg", - "num-integer", - "num-traits", + "byteorder", + "keccak", + "rand_core 0.6.4", + "zeroize", ] [[package]] -name = "num-modular" -version = "0.5.1" +name = "mime" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a5fe11d4135c3bcdf3a95b18b194afa9608a5f6ff034f5d857bc9a27fb0119" -dependencies = [ - "num-bigint 0.4.6", - "num-integer", - "num-traits", -] +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" [[package]] -name = "num-prime" -version = "0.4.4" +name = "mime_guess" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e238432a7881ec7164503ccc516c014bf009be7984cde1ba56837862543bdec3" +checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e" dependencies = [ - "bitvec 1.0.1", - "either", - "lru 0.12.5", - "num-bigint 0.4.6", - "num-integer", - "num-modular", - "num-traits", - "rand 0.8.5", + "mime", + "unicase", ] [[package]] -name = "num-rational" -version = "0.4.2" +name = "mini-moka" +version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +checksum = "c325dfab65f261f386debee8b0969da215b3fa0037e74c8a1234db7ba986d803" dependencies = [ - "num-bigint 0.4.6", - "num-integer", - "num-traits", + "crossbeam-channel", + "crossbeam-utils", + "dashmap 5.5.3", + "skeptic", + "smallvec", + "tagptr", + "triomphe", ] [[package]] -name = "num-traits" -version = "0.2.19" +name = "minimal-lexical" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" -dependencies = [ - "autocfg", - "libm", -] +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] -name = "num_cpus" -version = "1.17.0" +name = "miniz_oxide" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ - "hermit-abi", - "libc", + "adler2", ] [[package]] -name = "num_enum" -version = "0.6.1" +name = "mio" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a015b430d3c108a207fd776d2e2196aaf8b1cf8cf93253e3a097ff3085076a1" +checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" dependencies = [ - "num_enum_derive", + "libc", + "log", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.48.0", ] [[package]] -name = "num_enum_derive" -version = "0.6.1" +name = "mio" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96667db765a921f7b295ffee8b60472b686a51d4f21c2ee4ffdb94c7013b65a6" +checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 2.0.106", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.59.0", ] [[package]] -name = "number_prefix" -version = "0.4.0" +name = "mirai-annotations" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" +checksum = "c9be0862c1b3f26a88803c4a49de6889c10e608b3ee9344e6ef5b45fb37ad3d1" [[package]] -name = "objc2-core-foundation" +name = "more-asserts" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" -dependencies = [ - "bitflags 2.9.4", -] +checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" [[package]] -name = "objc2-io-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "71c1c64d6120e51cd86033f67176b1cb66780c2efe34dec55176f77befd93c0a" +name = "move-abigen" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "libc", - "objc2-core-foundation", + "anyhow", + "bcs 0.1.4", + "heck 0.4.1", + "log", + "move-binary-format", + "move-bytecode-verifier", + "move-command-line-common", + "move-core-types", + "move-model", + "serde", ] [[package]] -name = "object" -version = "0.36.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" +name = "move-asm" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "memchr", + "anyhow", + "clap 4.5.47", + "codespan", + "codespan-reporting", + "either", + "move-binary-format", + "move-core-types", ] [[package]] -name = "object_store" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cfccb68961a56facde1163f9319e0d15743352344e7808a11795fb99698dcaf" +name = "move-binary-format" +version = "0.0.3" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "async-trait", - "base64 0.22.1", - "bytes", - "chrono", - "futures", - "httparse", - "humantime", - "hyper", - "itertools 0.13.0", - "md-5", - "parking_lot 0.12.4", - "percent-encoding", - "quick-xml", - "rand 0.8.5", - "reqwest", - "ring", - "rustls-pemfile", + "anyhow", + "backtrace", + "indexmap 2.11.3", + "move-bytecode-spec", + "move-core-types", + "once_cell", + "ref-cast", "serde", - "serde_json", - "snafu", - "tokio", - "tracing", - "url", - "walkdir", -] - -[[package]] -name = "oid-registry" -version = "0.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" -dependencies = [ - "asn1-rs", + "variant_count", ] [[package]] -name = "once_cell" -version = "1.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +name = "move-borrow-graph" +version = "0.0.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" [[package]] -name = "once_cell_polyfill" -version = "1.70.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" +name = "move-bytecode-source-map" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "bcs 0.1.4", + "move-binary-format", + "move-command-line-common", + "move-core-types", + "move-ir-types", + "move-symbol-pool", + "serde", +] [[package]] -name = "opaque-debug" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" +name = "move-bytecode-spec" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "once_cell", + "quote", + "syn 1.0.109", +] [[package]] -name = "openssl-probe" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" +name = "move-bytecode-utils" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "move-binary-format", + "move-core-types", + "petgraph", + "serde-reflection", +] [[package]] -name = "opentelemetry" -version = "0.27.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" +name = "move-bytecode-verifier" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "futures-core", - "futures-sink", - "js-sys", - "pin-project-lite", - "thiserror 1.0.69", - "tracing", + "fail", + "move-binary-format", + "move-borrow-graph", + "move-core-types", + "petgraph", + "serde", + "typed-arena", ] [[package]] -name = "opentelemetry-otlp" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91cf61a1868dacc576bf2b2a1c3e9ab150af7272909e80085c3173384fe11f76" +name = "move-bytecode-viewer" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "async-trait", - "futures-core", - "http 1.3.1", - "opentelemetry", - "opentelemetry-proto", - "opentelemetry_sdk", - "prost", - "thiserror 1.0.69", - "tokio", - "tonic 0.12.3", - "tracing", + "anyhow", + "clap 4.5.47", + "crossterm 0.26.1", + "move-binary-format", + "move-bytecode-source-map", + "move-disassembler", + "regex", + "tui", ] [[package]] -name = "opentelemetry-proto" -version = "0.27.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" +name = "move-cli" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" +dependencies = [ + "anyhow", + "clap 4.5.47", + "codespan-reporting", + "colored", + "legacy-move-compiler", + "move-binary-format", + "move-bytecode-viewer", + "move-command-line-common", + "move-compiler-v2", + "move-core-types", + "move-coverage", + "move-disassembler", + "move-docgen", + "move-errmapgen", + "move-model", + "move-package", + "move-prover", + "move-stdlib", + "move-unit-test", + "move-vm-runtime", + "move-vm-test-utils", + "once_cell", + "tempfile", +] + +[[package]] +name = "move-command-line-common" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ + "anyhow", + "difference", + "dirs-next", "hex", - "opentelemetry", - "opentelemetry_sdk", - "prost", + "move-core-types", + "num-bigint 0.3.3", + "once_cell", "serde", - "tonic 0.12.3", + "sha2 0.9.9", + "walkdir", ] [[package]] -name = "opentelemetry_sdk" -version = "0.27.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "231e9d6ceef9b0b2546ddf52335785ce41252bc7474ee8ba05bfad277be13ab8" +name = "move-compiler-v2" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "async-trait", - "futures-channel", - "futures-executor", - "futures-util", - "glob", - "opentelemetry", - "percent-encoding", - "rand 0.8.5", + "abstract-domain-derive", + "anyhow", + "bcs 0.1.4", + "clap 4.5.47", + "codespan", + "codespan-reporting", + "colored", + "ethnum", + "flexi_logger", + "im", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-binary-format", + "move-borrow-graph", + "move-bytecode-source-map", + "move-bytecode-verifier", + "move-command-line-common", + "move-core-types", + "move-disassembler", + "move-ir-types", + "move-model", + "move-stackless-bytecode", + "move-symbol-pool", + "num 0.4.3", + "once_cell", + "petgraph", "serde_json", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tracing", ] [[package]] -name = "ouroboros" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2ba07320d39dfea882faa70554b4bd342a5f273ed59ba7c1c6b4c840492c954" +name = "move-core-types" +version = "0.0.4" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "aliasable", - "ouroboros_macro", - "static_assertions", + "anyhow", + "arbitrary", + "bcs 0.1.4", + "bytes", + "dearbitrary", + "ethnum", + "hashbrown 0.14.5", + "hex", + "num 0.4.3", + "once_cell", + "primitive-types", + "proptest", + "proptest-derive", + "rand 0.8.5", + "ref-cast", + "serde", + "serde_bytes", + "thiserror 1.0.69", + "uint", ] [[package]] -name = "ouroboros_macro" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec4c6225c69b4ca778c0aea097321a64c421cf4577b331c61b229267edabb6f8" +name = "move-coverage" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "heck 0.4.1", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.106", + "anyhow", + "bcs 0.1.4", + "clap 4.5.47", + "codespan", + "colored", + "move-binary-format", + "move-bytecode-source-map", + "move-command-line-common", + "move-core-types", + "move-ir-types", + "petgraph", + "serde", ] [[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - -[[package]] -name = "p256" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +name = "move-disassembler" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "anyhow", + "clap 4.5.47", + "colored", + "legacy-move-compiler", + "move-binary-format", + "move-bytecode-source-map", + "move-command-line-common", + "move-core-types", + "move-coverage", + "move-ir-types", ] [[package]] -name = "p384" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6" +name = "move-docgen" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "ecdsa 0.16.9", - "elliptic-curve 0.13.8", - "primeorder", - "sha2 0.10.9", + "anyhow", + "clap 4.5.47", + "codespan", + "codespan-reporting", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-core-types", + "move-model", + "once_cell", + "regex", + "serde", ] [[package]] -name = "packed_struct" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36b29691432cc9eff8b282278473b63df73bea49bc3ec5e67f31a3ae9c3ec190" +name = "move-errmapgen" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bitvec 1.0.1", - "packed_struct_codegen", + "anyhow", + "move-command-line-common", + "move-core-types", + "move-model", "serde", ] [[package]] -name = "packed_struct_codegen" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cd6706dfe50d53e0f6aa09e12c034c44faacd23e966ae5a209e8bdb8f179f98" +name = "move-ir-types" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "hex", + "move-command-line-common", + "move-core-types", + "move-symbol-pool", + "once_cell", + "serde", ] [[package]] -name = "pairing" -version = "0.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81fec4625e73cf41ef4bb6846cafa6d44736525f442ba45e407c4a000a13996f" +name = "move-model" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "group 0.13.0", + "anyhow", + "codespan", + "codespan-reporting", + "either", + "internment", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-asm", + "move-binary-format", + "move-bytecode-source-map", + "move-command-line-common", + "move-core-types", + "move-ir-types", + "move-symbol-pool", + "num 0.4.3", + "num-traits", + "once_cell", + "regex", + "serde", ] [[package]] -name = "papergrid" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae7891b22598926e4398790c8fe6447930c72a67d36d983a49d6ce682ce83290" +name = "move-package" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bytecount", - "fnv", - "unicode-width 0.1.14", + "anyhow", + "clap 4.5.47", + "colored", + "itertools 0.13.0", + "legacy-move-compiler", + "move-abigen", + "move-binary-format", + "move-bytecode-source-map", + "move-bytecode-utils", + "move-command-line-common", + "move-compiler-v2", + "move-core-types", + "move-docgen", + "move-model", + "move-symbol-pool", + "named-lock", + "once_cell", + "petgraph", + "regex", + "serde", + "serde_yaml 0.8.26", + "sha2 0.9.9", + "tempfile", + "termcolor", + "toml 0.7.8", + "walkdir", + "whoami", ] [[package]] -name = "parity-scale-codec" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" +name = "move-prover" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "arrayvec", - "bitvec 0.20.4", - "byte-slice-cast", - "impl-trait-for-tuples", - "parity-scale-codec-derive", + "anyhow", + "atty", + "clap 4.5.47", + "codespan-reporting", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-abigen", + "move-command-line-common", + "move-compiler-v2", + "move-docgen", + "move-errmapgen", + "move-model", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "move-stackless-bytecode", + "once_cell", "serde", + "toml 0.7.8", ] [[package]] -name = "parity-scale-codec-derive" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27" +name = "move-prover-boogie-backend" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", + "anyhow", + "async-trait", + "codespan", + "codespan-reporting", + "futures", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-binary-format", + "move-command-line-common", + "move-core-types", + "move-model", + "move-prover-bytecode-pipeline", + "move-stackless-bytecode", + "num 0.4.3", + "once_cell", + "pretty", + "rand 0.7.3", + "regex", + "serde", + "tera", + "tokio", ] [[package]] -name = "parking_lot" -version = "0.11.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +name = "move-prover-bytecode-pipeline" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "instant", - "lock_api", - "parking_lot_core 0.8.6", + "abstract-domain-derive", + "anyhow", + "codespan-reporting", + "itertools 0.13.0", + "move-binary-format", + "move-core-types", + "move-model", + "move-stackless-bytecode", + "serde", ] [[package]] -name = "parking_lot" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +name = "move-prover-lab" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "lock_api", - "parking_lot_core 0.9.11", + "anyhow", + "chrono", + "clap 4.5.47", + "codespan-reporting", + "itertools 0.13.0", + "move-model", + "move-prover", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "plotters", + "z3tracer", ] [[package]] -name = "parking_lot_core" -version = "0.8.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +name = "move-resource-viewer" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cfg-if", - "instant", - "libc", - "redox_syscall 0.2.16", - "smallvec", - "winapi", + "anyhow", + "hex", + "move-binary-format", + "move-bytecode-utils", + "move-core-types", + "serde", ] [[package]] -name = "parking_lot_core" -version = "0.9.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +name = "move-stackless-bytecode" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.5.17", - "smallvec", - "windows-targets 0.52.6", + "abstract-domain-derive", + "anyhow", + "codespan-reporting", + "ethnum", + "im", + "itertools 0.13.0", + "log", + "move-binary-format", + "move-core-types", + "move-model", + "num 0.4.3", + "paste", + "petgraph", + "topological-sort", + "try_match", ] [[package]] -name = "passkey-types" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77144664f6aac5f629d7efa815f5098a054beeeca6ccafee5ec453fd2b0c53f9" +name = "move-stdlib" +version = "0.1.1" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "bitflags 2.9.4", - "ciborium", - "coset", - "data-encoding", - "getrandom 0.2.16", - "hmac", - "indexmap 2.11.1", - "rand 0.8.5", - "serde", - "serde_json", - "sha2 0.10.9", - "strum 0.25.0", - "typeshare", - "zeroize", + "anyhow", + "hex", + "legacy-move-compiler", + "log", + "move-binary-format", + "move-command-line-common", + "move-core-types", + "move-docgen", + "move-errmapgen", + "move-prover", + "move-vm-runtime", + "move-vm-types", + "sha2 0.9.9", + "sha3", + "smallvec", + "walkdir", ] [[package]] -name = "pasta_curves" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095" +name = "move-symbol-pool" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "blake2b_simd", - "ff 0.13.1", - "group 0.13.0", - "hex", - "lazy_static", - "rand 0.8.5", + "once_cell", "serde", - "static_assertions", - "subtle", ] [[package]] -name = "paste" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" - -[[package]] -name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +name = "move-table-extension" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "digest 0.10.7", + "better_any", + "bytes", + "move-binary-format", + "move-core-types", + "move-vm-runtime", + "move-vm-types", + "sha3", + "smallvec", ] [[package]] -name = "pem" -version = "3.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" +name = "move-unit-test" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "base64 0.22.1", - "serde", + "anyhow", + "better_any", + "clap 4.5.47", + "codespan-reporting", + "colored", + "itertools 0.13.0", + "legacy-move-compiler", + "move-binary-format", + "move-bytecode-utils", + "move-command-line-common", + "move-compiler-v2", + "move-core-types", + "move-ir-types", + "move-model", + "move-package", + "move-resource-viewer", + "move-stdlib", + "move-symbol-pool", + "move-table-extension", + "move-vm-runtime", + "move-vm-test-utils", + "move-vm-types", + "once_cell", + "rayon", + "regex", ] [[package]] -name = "pem-rfc7468" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" +name = "move-vm-metrics" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "base64ct", + "once_cell", + "prometheus", ] [[package]] -name = "pem-rfc7468" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +name = "move-vm-runtime" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "base64ct", + "ambassador", + "better_any", + "bytes", + "cfg-if", + "claims", + "fail", + "hashbrown 0.14.5", + "lazy_static", + "lru", + "move-binary-format", + "move-bytecode-verifier", + "move-core-types", + "move-vm-metrics", + "move-vm-types", + "once_cell", + "parking_lot", + "serde", + "triomphe", + "typed-arena", ] [[package]] -name = "percent-encoding" -version = "2.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" - -[[package]] -name = "petgraph" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" +name = "move-vm-test-utils" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "fixedbitset 0.4.2", - "indexmap 2.11.1", + "anyhow", + "bytes", + "move-binary-format", + "move-bytecode-utils", + "move-core-types", + "move-table-extension", + "move-vm-runtime", + "move-vm-types", + "once_cell", + "serde", ] [[package]] -name = "petgraph" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54acf3a685220b533e437e264e4d932cfbdc4cc7ec0cd232ed73c08d03b8a7ca" +name = "move-vm-types" +version = "0.1.0" +source = "git+https://github.com/fuzzland/aptos-core?rev=1e5097063214a84f794ed2373f66a9d325bf6ca4#1e5097063214a84f794ed2373f66a9d325bf6ca4" dependencies = [ - "fixedbitset 0.5.7", - "hashbrown 0.15.5", - "indexmap 2.11.1", + "ambassador", + "bcs 0.1.4", + "better_any", + "bytes", + "crossbeam", + "dashmap 7.0.0-rc2", + "derivative", + "hashbrown 0.14.5", + "itertools 0.13.0", + "move-binary-format", + "move-core-types", + "parking_lot", "serde", + "sha3", + "smallbitvec", + "smallvec", + "triomphe", ] [[package]] -name = "phf" -version = "0.11.3" +name = "multer" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2" dependencies = [ - "phf_macros", - "phf_shared", + "bytes", + "encoding_rs", + "futures-util", + "http 0.2.12", + "httparse", + "log", + "memchr", + "mime", + "spin 0.9.8", + "version_check", ] [[package]] -name = "phf_generator" -version = "0.11.3" +name = "multer" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" dependencies = [ - "phf_shared", - "rand 0.8.5", + "bytes", + "encoding_rs", + "futures-util", + "http 1.3.1", + "httparse", + "memchr", + "mime", + "spin 0.9.8", + "tokio", + "version_check", ] [[package]] -name = "phf_macros" -version = "0.11.3" +name = "named-lock" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" -dependencies = [ - "phf_generator", - "phf_shared", - "proc-macro2", - "quote", - "syn 2.0.106", +checksum = "40a3eb6b7c682b65d1f631ec3176829d72ab450b3aacdd3f719bf220822e59ac" +dependencies = [ + "libc", + "once_cell", + "parking_lot", + "thiserror 1.0.69", + "widestring", + "winapi 0.3.9", ] [[package]] -name = "phf_shared" -version = "0.11.3" +name = "native-tls" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" dependencies = [ - "siphasher", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework 2.11.1", + "security-framework-sys", + "tempfile", ] [[package]] -name = "pin-project" -version = "1.1.10" +name = "neptune" +version = "13.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" +checksum = "06626c9ac04c894e9a23d061ba1309f28506cdc5fe64156d28a15fb57fc8e438" dependencies = [ - "pin-project-internal", + "bellpepper", + "bellpepper-core", + "blake2s_simd", + "blstrs", + "byteorder", + "ff", + "generic-array", + "log", + "pasta_curves", + "serde", + "trait-set", ] [[package]] -name = "pin-project-internal" -version = "1.1.10" +name = "nix" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "bitflags 2.9.4", + "cfg-if", + "cfg_aliases", + "libc", ] [[package]] -name = "pin-project-lite" -version = "0.2.16" +name = "no-std-compat" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" [[package]] -name = "pin-utils" -version = "0.1.0" +name = "nodrop" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" [[package]] -name = "pkcs1" -version = "0.4.1" +name = "nom" +version = "7.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" dependencies = [ - "der 0.6.1", - "pkcs8 0.9.0", - "spki 0.6.0", - "zeroize", + "memchr", + "minimal-lexical", ] [[package]] -name = "pkcs8" -version = "0.9.0" +name = "ntapi" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" +checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "winapi 0.3.9", ] [[package]] -name = "pkcs8" -version = "0.10.2" +name = "nu-ansi-term" +version = "0.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +checksum = "c073d3c1930d0751774acf49e66653acecb416c3a54c6ec095a9b11caddb5a68" dependencies = [ - "der 0.7.10", - "spki 0.7.3", + "windows-sys 0.48.0", ] [[package]] -name = "pkg-config" -version = "0.3.32" +name = "nu-ansi-term" +version = "0.50.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399" +dependencies = [ + "windows-sys 0.52.0", +] [[package]] -name = "polyval" -version = "0.6.2" +name = "num" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash", + "num-bigint 0.3.3", + "num-complex 0.3.1", + "num-integer", + "num-iter", + "num-rational 0.3.2", + "num-traits", ] [[package]] -name = "portable-atomic" -version = "1.11.1" +name = "num" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint 0.4.6", + "num-complex 0.4.6", + "num-integer", + "num-iter", + "num-rational 0.4.2", + "num-traits", +] [[package]] -name = "potential_utf" -version = "0.1.3" +name = "num-bigint" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" +checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" dependencies = [ - "zerovec", + "autocfg", + "num-integer", + "num-traits", ] [[package]] -name = "powerfmt" -version = "0.2.0" +name = "num-bigint" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", + "rand 0.7.3", +] [[package]] -name = "ppv-lite86" -version = "0.2.21" +name = "num-bigint" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" dependencies = [ - "zerocopy", + "num-integer", + "num-traits", ] [[package]] -name = "precomputed-hash" -version = "0.1.1" +name = "num-bigint-dig" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" +checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" +dependencies = [ + "byteorder", + "lazy_static", + "libm", + "num-integer", + "num-iter", + "num-traits", + "rand 0.8.5", + "smallvec", + "zeroize", +] [[package]] -name = "predicates" -version = "2.1.5" +name = "num-complex" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" +checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" dependencies = [ - "difflib", - "float-cmp", - "itertools 0.10.5", - "normalize-line-endings", - "predicates-core", - "regex", + "num-traits", ] [[package]] -name = "predicates-core" -version = "1.0.9" +name = "num-complex" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] [[package]] -name = "predicates-tree" -version = "1.0.12" +name = "num-conv" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" -dependencies = [ - "predicates-core", - "termtree", -] +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" [[package]] -name = "prettyplease" -version = "0.2.37" +name = "num-derive" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", + "quote", "syn 2.0.106", ] [[package]] -name = "primeorder" -version = "0.13.6" +name = "num-integer" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" dependencies = [ - "elliptic-curve 0.13.8", + "num-traits", ] [[package]] -name = "primitive-types" -version = "0.10.1" +name = "num-iter" +version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" +checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" dependencies = [ - "fixed-hash", - "impl-codec", - "impl-serde", - "uint", + "autocfg", + "num-integer", + "num-traits", ] [[package]] -name = "proc-macro-crate" -version = "1.1.3" +name = "num-rational" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" +checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" dependencies = [ - "thiserror 1.0.69", - "toml", + "autocfg", + "num-bigint 0.3.3", + "num-integer", + "num-traits", ] [[package]] -name = "proc-macro-crate" -version = "3.3.0" +name = "num-rational" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "toml_edit", + "num-bigint 0.4.6", + "num-integer", + "num-traits", ] [[package]] -name = "proc-macro-error" -version = "1.0.4" +name = "num-traits" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", + "autocfg", + "libm", ] [[package]] -name = "proc-macro-error-attr" -version = "1.0.4" +name = "num_cpus" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "proc-macro2", - "quote", - "version_check", + "hermit-abi 0.5.2", + "libc", ] [[package]] -name = "proc-macro2" -version = "1.0.101" +name = "num_threads" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" dependencies = [ - "unicode-ident", + "libc", ] [[package]] -name = "prometheus" -version = "0.13.4" +name = "object" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ - "cfg-if", - "fnv", - "lazy_static", "memchr", - "parking_lot 0.12.4", - "protobuf", - "thiserror 1.0.69", ] [[package]] -name = "prometheus-closure-metric" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "prometheus", - "protobuf", -] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" + +[[package]] +name = "oorandom" +version = "11.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" [[package]] -name = "proptest" -version = "1.7.0" +name = "opaque-debug" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + +[[package]] +name = "openssl" +version = "0.10.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" dependencies = [ - "bit-set 0.8.0", - "bit-vec 0.8.0", "bitflags 2.9.4", - "lazy_static", - "num-traits", - "rand 0.9.2", - "rand_chacha 0.9.0", - "rand_xorshift 0.4.0", - "regex-syntax 0.8.6", - "rusty-fork", - "tempfile", - "unarray", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", ] [[package]] -name = "proptest-derive" -version = "0.5.1" +name = "openssl-macros" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", @@ -6529,374 +6927,363 @@ dependencies = [ ] [[package]] -name = "prost" -version = "0.13.5" +name = "openssl-probe" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" -dependencies = [ - "bytes", - "prost-derive", -] +checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" [[package]] -name = "prost-build" -version = "0.13.5" +name = "openssl-sys" +version = "0.9.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" +checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" dependencies = [ - "heck 0.5.0", - "itertools 0.14.0", - "log", - "multimap", - "once_cell", - "petgraph 0.6.5", - "prettyplease", - "prost", - "prost-types", - "regex", - "syn 2.0.106", - "tempfile", + "cc", + "libc", + "pkg-config", + "vcpkg", ] [[package]] -name = "prost-derive" -version = "0.13.5" +name = "ordered-float" +version = "3.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" +checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc" dependencies = [ - "anyhow", - "itertools 0.14.0", - "proc-macro2", - "quote", - "syn 2.0.106", + "num-traits", ] [[package]] -name = "prost-types" -version = "0.13.5" +name = "ouroboros" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" +checksum = "e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db" dependencies = [ - "prost", + "aliasable", + "ouroboros_macro", ] [[package]] -name = "protobuf" -version = "2.28.0" +name = "ouroboros_macro" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +checksum = "5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7" dependencies = [ - "bytes", + "Inflector", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "psm" -version = "0.1.26" +name = "p256" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "cc", + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.9", ] [[package]] -name = "quanta" -version = "0.12.6" +name = "pairing" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7" +checksum = "81fec4625e73cf41ef4bb6846cafa6d44736525f442ba45e407c4a000a13996f" dependencies = [ - "crossbeam-utils", - "libc", - "once_cell", - "raw-cpuid", - "wasi 0.11.1+wasi-snapshot-preview1", - "web-sys", - "winapi", + "group", ] [[package]] -name = "quick-error" -version = "1.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" - -[[package]] -name = "quick-xml" -version = "0.37.5" +name = "parity-scale-codec" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb" +checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" dependencies = [ - "memchr", + "arrayvec 0.7.6", + "bitvec 0.20.4", + "byte-slice-cast", + "impl-trait-for-tuples", + "parity-scale-codec-derive", "serde", ] [[package]] -name = "quinn" -version = "0.11.9" +name = "parity-scale-codec-derive" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" +checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27" dependencies = [ - "bytes", - "cfg_aliases 0.2.1", - "futures-io", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash 2.1.1", - "rustls", - "socket2 0.6.0", - "thiserror 2.0.16", - "tokio", - "tracing", - "web-time", + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "quinn-proto" -version = "0.11.13" +name = "parking_lot" +version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31" +checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" dependencies = [ - "bytes", - "fastbloom", - "getrandom 0.3.3", - "lru-slab", - "rand 0.9.2", - "ring", - "rustc-hash 2.1.1", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.16", - "tinyvec", - "tracing", - "web-time", + "lock_api", + "parking_lot_core", ] [[package]] -name = "quinn-udp" -version = "0.5.14" +name = "parking_lot_core" +version = "0.9.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" dependencies = [ - "cfg_aliases 0.2.1", + "cfg-if", "libc", - "once_cell", - "socket2 0.6.0", - "tracing", - "windows-sys 0.60.2", + "redox_syscall", + "smallvec", + "windows-targets 0.52.6", ] [[package]] -name = "quote" -version = "1.0.40" +name = "parse-zoneinfo" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" dependencies = [ - "proc-macro2", + "regex", ] [[package]] -name = "r-efi" -version = "5.3.0" +name = "passkey-types" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +checksum = "499cff8432e71c5f8784d9645aac0f9fca604d67f59b68a606170b5e229c6538" +dependencies = [ + "bitflags 2.9.4", + "ciborium", + "coset", + "data-encoding", + "indexmap 2.11.3", + "rand 0.8.5", + "serde", + "serde_json", + "sha2 0.10.9", + "strum 0.25.0", + "typeshare", +] [[package]] -name = "radium" -version = "0.6.2" +name = "pasta_curves" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" +checksum = "d3e57598f73cc7e1b2ac63c79c517b31a0877cd7c402cdcaa311b5208de7a095" +dependencies = [ + "blake2b_simd", + "ff", + "group", + "hex", + "lazy_static", + "rand 0.8.5", + "serde", + "static_assertions", + "subtle", +] [[package]] -name = "radium" -version = "0.7.0" +name = "paste" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] -name = "radix_trie" -version = "0.2.1" +name = "pbjson" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd" +checksum = "048f9ac93c1eab514f9470c4bc8d97ca2a0a236b84f45cc19d69a59fc11467f6" dependencies = [ - "endian-type", - "nibble_vec", + "base64 0.13.1", + "serde", ] [[package]] -name = "rand" -version = "0.7.3" +name = "pbkdf2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd" dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", + "crypto-mac 0.8.0", ] [[package]] -name = "rand" -version = "0.8.5" +name = "pem" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "fd56cbd21fea48d0c440b41cd69c589faacade08c992d9a54e471b79d0fd13eb" dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", + "base64 0.13.1", + "once_cell", + "regex", ] [[package]] -name = "rand" -version = "0.9.2" +name = "pem" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", + "base64 0.13.1", ] [[package]] -name = "rand_chacha" -version = "0.2.2" +name = "pem-rfc7468" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +checksum = "01de5d978f34aa4b2296576379fcc416034702fd94117c56ffd8a1a767cefb30" dependencies = [ - "ppv-lite86", - "rand_core 0.5.1", + "base64ct", ] [[package]] -name = "rand_chacha" -version = "0.3.1" +name = "pem-rfc7468" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", + "base64ct", ] [[package]] -name = "rand_chacha" -version = "0.9.0" +name = "percent-encoding" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pest" +version = "2.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21e0a3a33733faeaf8651dfee72dd0f388f0c8e5ad496a3478fa5a922f49cfa8" dependencies = [ - "ppv-lite86", - "rand_core 0.9.3", + "memchr", + "thiserror 2.0.16", + "ucd-trie", ] [[package]] -name = "rand_core" -version = "0.5.1" +name = "pest_derive" +version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +checksum = "bc58706f770acb1dbd0973e6530a3cff4746fb721207feb3a8a6064cd0b6c663" dependencies = [ - "getrandom 0.1.16", + "pest", + "pest_generator", ] -[[package]] -name = "rand_core" -version = "0.6.4" +[[package]] +name = "pest_generator" +version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +checksum = "6d4f36811dfe07f7b8573462465d5cb8965fffc2e71ae377a33aecf14c2c9a2f" dependencies = [ - "getrandom 0.2.16", + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "rand_core" -version = "0.9.3" +name = "pest_meta" +version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "42919b05089acbd0a5dcd5405fb304d17d1053847b81163d09c4ad18ce8e8420" dependencies = [ - "getrandom 0.3.3", + "pest", + "sha2 0.10.9", ] [[package]] -name = "rand_hc" -version = "0.2.0" +name = "petgraph" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ - "rand_core 0.5.1", + "fixedbitset", + "indexmap 2.11.3", ] [[package]] -name = "rand_xorshift" -version = "0.3.0" +name = "phf" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "rand_core 0.6.4", + "phf_shared 0.11.3", ] [[package]] -name = "rand_xorshift" -version = "0.4.0" +name = "phf" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ - "rand_core 0.9.3", + "phf_shared 0.12.1", ] [[package]] -name = "rand_xoshiro" -version = "0.6.0" +name = "phf_codegen" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" dependencies = [ - "rand_core 0.6.4", + "phf_generator", + "phf_shared 0.11.3", ] [[package]] -name = "raw-cpuid" -version = "11.6.0" +name = "phf_generator" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "bitflags 2.9.4", + "phf_shared 0.11.3", + "rand 0.8.5", ] [[package]] -name = "rayon" -version = "1.11.0" +name = "phf_shared" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "either", - "rayon-core", + "siphasher 1.0.1", ] [[package]] -name = "rayon-core" -version = "1.13.0" +name = "phf_shared" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ - "crossbeam-deque", - "crossbeam-utils", + "siphasher 1.0.1", ] [[package]] -name = "rcgen" -version = "0.13.2" +name = "pin-project" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" +checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" dependencies = [ - "pem", - "ring", - "rustls-pki-types", - "time", - "yasna", + "pin-project-internal", ] [[package]] -name = "readonly" -version = "0.2.13" +name = "pin-project-internal" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2a62d85ed81ca5305dc544bd42c8804c5060b78ffa5ad3c64b0fb6a8c13d062" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", @@ -6904,2709 +7291,1955 @@ dependencies = [ ] [[package]] -name = "real_tokio" -version = "1.47.1" -source = "git+https://github.com/MystenLabs/tokio-msim-fork.git?rev=c59702c3177a31405d42ec12e01fa4a445728326#c59702c3177a31405d42ec12e01fa4a445728326" -dependencies = [ - "backtrace", - "bytes", - "io-uring", - "libc", - "mio 1.0.4", - "parking_lot 0.12.4", - "pin-project-lite", - "signal-hook-registry", - "slab", - "socket2 0.6.0", - "tokio-macros 2.5.0 (git+https://github.com/MystenLabs/tokio-msim-fork.git?rev=c59702c3177a31405d42ec12e01fa4a445728326)", - "windows-sys 0.59.0", -] - -[[package]] -name = "redox_syscall" +name = "pin-project-lite" version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -dependencies = [ - "bitflags 1.3.2", -] +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" [[package]] -name = "redox_syscall" -version = "0.5.17" +name = "pin-utils" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" -dependencies = [ - "bitflags 2.9.4", -] +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] -name = "redox_users" -version = "0.4.6" +name = "pkcs1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +checksum = "a78f66c04ccc83dd4486fd46c33896f4e17b24a7a3a6400dedc48ed0ddd72320" dependencies = [ - "getrandom 0.2.16", - "libredox", - "thiserror 1.0.69", + "der 0.5.1", + "pkcs8 0.8.0", + "zeroize", ] [[package]] -name = "ref-cast" -version = "1.0.24" +name = "pkcs1" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" dependencies = [ - "ref-cast-impl", + "der 0.7.10", + "pkcs8 0.10.2", + "spki 0.7.3", ] [[package]] -name = "ref-cast-impl" -version = "1.0.24" +name = "pkcs8" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" +checksum = "7cabda3fb821068a9a4fab19a683eac3af12edf0f34b94a8be53c4972b8149d0" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "der 0.5.1", + "spki 0.5.4", + "zeroize", ] [[package]] -name = "regex" -version = "1.11.2" +name = "pkcs8" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "aho-corasick", - "memchr", - "regex-automata", - "regex-syntax 0.8.6", + "der 0.7.10", + "spki 0.7.3", ] [[package]] -name = "regex-automata" -version = "0.4.10" +name = "pkg-config" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax 0.8.6", -] +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] -name = "regex-syntax" -version = "0.6.29" +name = "plotters" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" +dependencies = [ + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", +] [[package]] -name = "regex-syntax" -version = "0.7.5" +name = "plotters-backend" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" +checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" [[package]] -name = "regex-syntax" -version = "0.8.6" +name = "plotters-svg" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" +checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" +dependencies = [ + "plotters-backend", +] [[package]] -name = "reqwest" -version = "0.12.23" +name = "poem" +version = "3.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d429f34c8092b2d42c7c93cec323bb4adeb7c67698f70839adec842ec10c7ceb" +checksum = "9f977080932c87287147dca052951c3e2696f8759863f6b4e4c0c9ffe7a4cc8b" dependencies = [ - "base64 0.22.1", + "anyhow", + "async-compression", "bytes", - "futures-channel", - "futures-core", + "chrono", + "cookie 0.18.1", "futures-util", - "h2", + "headers 0.4.1", "http 1.3.1", - "http-body 1.0.1", "http-body-util", - "hyper", - "hyper-rustls", + "hyper 1.7.0", "hyper-util", - "js-sys", - "log", + "mime", + "multer 3.1.0", + "nix", + "parking_lot", "percent-encoding", "pin-project-lite", - "quinn", - "rustls", - "rustls-native-certs", - "rustls-pki-types", + "poem-derive", + "quick-xml", + "regex", + "rfc7239", + "rustls-pemfile 2.2.0", "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "serde_yaml 0.9.34+deprecated", + "smallvec", + "sync_wrapper 1.0.2", + "tempfile", + "thiserror 2.0.16", + "time", "tokio", - "tokio-rustls", - "tokio-util 0.7.16", - "tower 0.5.2", - "tower-http 0.6.6", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots 1.0.2", -] - -[[package]] -name = "rfc6979" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" -dependencies = [ - "crypto-bigint 0.4.9", - "hmac", - "zeroize", -] - -[[package]] -name = "rfc6979" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" -dependencies = [ - "hmac", - "subtle", + "tokio-rustls 0.26.3", + "tokio-stream", + "tokio-util", + "tracing", + "wildmatch", ] [[package]] -name = "ring" -version = "0.17.14" +name = "poem-derive" +version = "3.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +checksum = "056e2fea6de1cb240ffe23cfc4fc370b629f8be83b5f27e16b7acd5231a72de4" dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.16", - "libc", - "untrusted", - "windows-sys 0.52.0", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "ripemd" -version = "0.1.3" +name = "poem-openapi" +version = "5.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" +checksum = "5c354a706a81a17657da8441869c6ce3d486ef5e72705919d6035fb038a6f7b5" dependencies = [ - "digest 0.10.7", + "base64 0.22.1", + "bytes", + "derive_more 1.0.0", + "futures-util", + "indexmap 2.11.3", + "mime", + "num-traits", + "poem", + "poem-openapi-derive", + "quick-xml", + "regex", + "serde", + "serde_json", + "serde_urlencoded", + "serde_yaml 0.9.34+deprecated", + "thiserror 1.0.69", + "tokio", + "url", ] [[package]] -name = "roaring" -version = "0.10.12" +name = "poem-openapi-derive" +version = "5.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e8d2cfa184d94d0726d650a9f4a1be7f9b76ac9fdb954219878dc00c1c1e7b" +checksum = "88e4cd0c926ab1d9a015ecc1077c950d5897577554691ff70efcd9c90ddeb614" dependencies = [ - "bytemuck", - "byteorder", + "darling", + "http 1.3.1", + "indexmap 2.11.3", + "mime", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "regex", + "syn 2.0.106", + "thiserror 1.0.69", ] [[package]] -name = "rocksdb" -version = "0.22.0" +name = "polyval" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6bd13e55d6d7b8cd0ea569161127567cd587676c99f4472f779a0279aa60a7a7" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "libc", - "librocksdb-sys", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash", ] [[package]] -name = "route-recognizer" -version = "0.3.1" +name = "pomelo" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" +checksum = "76dd249f63dbbc68c8caa9b5fd16b32c7ba5da56df93d40a9552c91ebfd2a1cd" +dependencies = [ + "pomelo-impl", +] [[package]] -name = "rsa" -version = "0.8.2" +name = "pomelo-impl" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55a77d189da1fee555ad95b7e50e7457d91c0e089ec68ca69ad2989413bbdab4" +checksum = "597c3287a549da151aca6ada2795ecde089c7527bd5093114e8e0e1c3f0e52b1" dependencies = [ - "byteorder", - "digest 0.10.7", - "num-bigint-dig", - "num-integer", - "num-iter", - "num-traits", - "pkcs1", - "pkcs8 0.9.0", - "rand_core 0.6.4", - "sha2 0.10.9", - "signature 2.2.0", - "subtle", - "zeroize", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "rustc-demangle" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" +name = "poseidon-ark" +version = "0.0.1" +source = "git+https://github.com/arnaucube/poseidon-ark.git?rev=6d2487aa1308d9d3860a2b724c485d73095c1c68#6d2487aa1308d9d3860a2b724c485d73095c1c68" +dependencies = [ + "ark-bn254", + "ark-ff", + "ark-std", +] [[package]] -name = "rustc-hash" -version = "1.1.0" +name = "potential_utf" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" +dependencies = [ + "zerovec", +] [[package]] -name = "rustc-hash" -version = "2.1.1" +name = "powerfmt" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] -name = "rustc-hex" -version = "2.1.0" +name = "ppv-lite86" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] [[package]] -name = "rustc_version" -version = "0.4.1" +name = "pretty" +version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +checksum = "ad9940b913ee56ddd94aec2d3cd179dd47068236f42a1a6415ccf9d880ce2a61" dependencies = [ - "semver", + "arrayvec 0.5.2", + "typed-arena", ] [[package]] -name = "rustc_version_runtime" -version = "0.3.0" +name = "prettyplease" +version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ - "rustc_version", - "semver", + "proc-macro2", + "syn 2.0.106", ] [[package]] -name = "rusticata-macros" -version = "4.1.0" +name = "primeorder" +version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" dependencies = [ - "nom", + "elliptic-curve", ] [[package]] -name = "rustix" -version = "1.1.2" +name = "primitive-types" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" dependencies = [ - "bitflags 2.9.4", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.61.0", + "fixed-hash", + "impl-codec", + "impl-serde", + "uint", ] [[package]] -name = "rustls" -version = "0.23.31" +name = "proc-macro-crate" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" +checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" dependencies = [ - "log", - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", + "thiserror 1.0.69", + "toml 0.5.11", ] [[package]] -name = "rustls-native-certs" -version = "0.8.1" +name = "proc-macro-crate" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "openssl-probe", - "rustls-pki-types", - "schannel", - "security-framework", + "toml_edit 0.23.5", ] [[package]] -name = "rustls-pemfile" -version = "2.2.0" +name = "proc-macro-error" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" dependencies = [ - "rustls-pki-types", + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", ] [[package]] -name = "rustls-pki-types" -version = "1.12.0" +name = "proc-macro-error-attr" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ - "web-time", - "zeroize", + "proc-macro2", + "quote", + "version_check", ] [[package]] -name = "rustls-platform-verifier" -version = "0.5.3" +name = "proc-macro-hack" +version = "0.5.20+deprecated" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19787cda76408ec5404443dc8b31795c87cd8fec49762dc75fa727740d34acc1" -dependencies = [ - "core-foundation", - "core-foundation-sys", - "jni", - "log", - "once_cell", - "rustls", - "rustls-native-certs", - "rustls-platform-verifier-android", - "rustls-webpki", - "security-framework", - "security-framework-sys", - "webpki-root-certs 0.26.11", - "windows-sys 0.59.0", -] +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] -name = "rustls-platform-verifier-android" -version = "0.1.1" +name = "proc-macro-nested" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" [[package]] -name = "rustls-webpki" -version = "0.103.6" +name = "proc-macro2" +version = "1.0.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb" +checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", + "unicode-ident", ] [[package]] -name = "rustversion" -version = "1.0.22" +name = "procfs" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" +checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "chrono", + "flate2", + "hex", + "lazy_static", + "rustix 0.36.17", +] [[package]] -name = "rusty-fork" -version = "0.3.0" +name = "prometheus" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" +checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" dependencies = [ + "cfg-if", "fnv", - "quick-error", - "tempfile", - "wait-timeout", + "lazy_static", + "memchr", + "parking_lot", + "thiserror 1.0.69", ] [[package]] -name = "rustyline" -version = "14.0.0" +name = "proptest" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63" +checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f" dependencies = [ + "bit-set", + "bit-vec", "bitflags 2.9.4", - "cfg-if", - "clipboard-win", - "fd-lock", - "home", - "libc", - "log", - "memchr", - "nix", - "radix_trie", - "unicode-segmentation", - "unicode-width 0.1.14", - "utf8parse", - "windows-sys 0.52.0", + "lazy_static", + "num-traits", + "rand 0.9.2", + "rand_chacha 0.9.0", + "rand_xorshift 0.4.0", + "regex-syntax", + "rusty-fork", + "tempfile", + "unarray", ] [[package]] -name = "ryu" -version = "1.0.20" +name = "proptest-derive" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "4ee1c9ac207483d5e7db4940700de86a9aae46ef90c48b57f99fe7edb8345e49" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.106", +] [[package]] -name = "same-file" -version = "1.0.6" +name = "prost" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" dependencies = [ - "winapi-util", + "bytes", + "prost-derive", ] [[package]] -name = "schannel" -version = "0.1.28" +name = "prost-derive" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ - "windows-sys 0.61.0", + "anyhow", + "itertools 0.13.0", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "schemafy" -version = "0.5.2" +name = "prost-types" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8aea5ba40287dae331f2c48b64dbc8138541f5e97ee8793caa7948c1f31d86d5" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" dependencies = [ - "Inflector", - "schemafy_core", - "schemafy_lib", - "serde", - "serde_derive", - "serde_json", - "serde_repr", - "syn 1.0.109", + "prost", ] [[package]] -name = "schemafy_core" -version = "0.5.2" +name = "psl-types" +version = "2.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41781ae092f4fd52c9287efb74456aea0d3b90032d2ecad272bd14dbbcb0511b" -dependencies = [ - "serde", - "serde_json", -] +checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" [[package]] -name = "schemafy_lib" -version = "0.5.2" +name = "publicsuffix" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e953db32579999ca98c451d80801b6f6a7ecba6127196c5387ec0774c528befa" +checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf" dependencies = [ - "Inflector", - "proc-macro2", - "quote", - "schemafy_core", - "serde", - "serde_derive", - "serde_json", - "syn 1.0.109", + "idna 1.1.0", + "psl-types", ] [[package]] -name = "schemars" -version = "0.8.22" +name = "pulldown-cmark" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" dependencies = [ - "dyn-clone", - "either", - "schemars_derive 0.8.22", - "serde", - "serde_json", + "bitflags 2.9.4", + "memchr", + "unicase", ] [[package]] -name = "schemars" -version = "0.9.0" +name = "qstring" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e" dependencies = [ - "dyn-clone", - "ref-cast", - "serde", - "serde_json", + "percent-encoding", ] [[package]] -name = "schemars" -version = "1.0.4" +name = "quick-error" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quick-xml" +version = "0.36.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" dependencies = [ - "dyn-clone", - "ref-cast", - "schemars_derive 1.0.4", + "memchr", "serde", - "serde_json", ] [[package]] -name = "schemars_derive" -version = "0.8.22" +name = "quick_cache" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +checksum = "eb55a1aa7668676bb93926cd4e9cdfe60f03bb866553bcca9112554911b6d3dc" dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.106", + "ahash 0.8.12", + "equivalent", + "hashbrown 0.14.5", + "parking_lot", ] [[package]] -name = "schemars_derive" -version = "1.0.4" +name = "quote" +version = "1.0.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33d020396d1d138dc19f1165df7545479dcd58d93810dc5d646a16e55abefa80" +checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" dependencies = [ "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.106", ] [[package]] -name = "scoped-tls" -version = "1.0.1" +name = "r-efi" +version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" [[package]] -name = "scopeguard" -version = "1.2.0" +name = "radium" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" +checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" [[package]] -name = "sec1" -version = "0.3.0" +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" dependencies = [ - "base16ct 0.1.1", - "der 0.6.1", - "generic-array", - "subtle", - "zeroize", + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", ] [[package]] -name = "sec1" -version = "0.7.3" +name = "rand" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" dependencies = [ - "base16ct 0.2.0", - "der 0.7.10", - "generic-array", - "pkcs8 0.10.2", - "subtle", - "zeroize", + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", ] [[package]] -name = "secp256k1" -version = "0.27.0" +name = "rand" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25996b82292a7a57ed3508f052cfff8640d38d32018784acd714758b43da9c8f" +checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ - "bitcoin_hashes", - "rand 0.8.5", - "secp256k1-sys", + "rand_chacha 0.9.0", + "rand_core 0.9.3", ] [[package]] -name = "secp256k1-sys" -version = "0.8.2" +name = "rand_chacha" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4473013577ec77b4ee3668179ef1186df3146e2cf2d927bd200974c6fe60fd99" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" dependencies = [ - "cc", + "ppv-lite86", + "rand_core 0.5.1", ] [[package]] -name = "security-framework" -version = "3.4.0" +name = "rand_chacha" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b369d18893388b345804dc0007963c99b7d665ae71d275812d828c6f089640" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" dependencies = [ - "bitflags 2.9.4", - "core-foundation", - "core-foundation-sys", - "libc", - "security-framework-sys", + "ppv-lite86", + "rand_core 0.6.4", ] [[package]] -name = "security-framework-sys" -version = "2.15.0" +name = "rand_chacha" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ - "core-foundation-sys", - "libc", + "ppv-lite86", + "rand_core 0.9.3", ] [[package]] -name = "semver" -version = "1.0.26" +name = "rand_core" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] [[package]] -name = "serde" -version = "1.0.225" +name = "rand_core" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "serde_core", - "serde_derive", + "getrandom 0.2.16", ] [[package]] -name = "serde-env" -version = "0.2.0" +name = "rand_core" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d13536c0c431652192b75c7d5afa83dedae98f91d7e687ff30a009e9d15284fb" +checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" dependencies = [ - "anyhow", - "serde", + "getrandom 0.3.3", ] [[package]] -name = "serde-name" -version = "0.2.1" +name = "rand_hc" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b5b14ebbcc4e4f2b3642fa99c388649da58d1dc3308c7d109f39f565d1710f0" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" dependencies = [ - "serde", - "thiserror 1.0.69", + "rand_core 0.5.1", ] [[package]] -name = "serde-reflection" -version = "0.5.0" +name = "rand_pcg" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5bef77b40d103fda6c10d29c21f5c78c980e8570e1a290a648a9ff5011f96e1" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" dependencies = [ - "erased-discriminant", - "once_cell", - "serde", - "thiserror 1.0.69", - "typeid", + "rand_core 0.5.1", ] [[package]] -name = "serde_bytes" -version = "0.11.17" +name = "rand_xorshift" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" +checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f" dependencies = [ - "serde", + "rand_core 0.6.4", ] [[package]] -name = "serde_core" -version = "1.0.225" +name = "rand_xorshift" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "serde_derive", + "rand_core 0.9.3", ] [[package]] -name = "serde_derive" -version = "1.0.225" +name = "rand_xoshiro" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516" +checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "rand_core 0.6.4", ] [[package]] -name = "serde_derive_internals" -version = "0.29.1" +name = "rapidhash" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9813f789f95ee4fe6b4d01834404d7cccacbc3f6c029343af910b3c2835eb9f1" + +[[package]] +name = "rayon" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "either", + "rayon-core", ] [[package]] -name = "serde_json" -version = "1.0.143" +name = "rayon-core" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d401abef1d108fbd9cbaebc3e46611f4b1021f714a0597a71f41ee463f5f4a5a" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ - "indexmap 2.11.1", - "itoa", - "memchr", - "ryu", - "serde", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] -name = "serde_path_to_error" -version = "0.1.20" +name = "redis" +version = "0.22.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457" +checksum = "aa8455fa3621f6b41c514946de66ea0531f57ca017b2e6c7cc368035ea5b46df" dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "combine", + "futures", + "futures-util", "itoa", - "serde", - "serde_core", + "percent-encoding", + "pin-project-lite", + "ryu", + "sha1_smol", + "tokio", + "tokio-util", + "url", ] [[package]] -name = "serde_repr" -version = "0.1.20" +name = "redis-test" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +checksum = "7e9ceb100979db7292de8a3d4ecdde659cccc85133303ea0741e1618a5bd73df" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "futures", + "redis", ] [[package]] -name = "serde_spanned" -version = "0.6.9" +name = "redox_syscall" +version = "0.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" dependencies = [ - "serde", + "bitflags 2.9.4", ] [[package]] -name = "serde_urlencoded" -version = "0.7.1" +name = "redox_users" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "form_urlencoded", - "itoa", - "ryu", - "serde", + "getrandom 0.2.16", + "libredox", + "thiserror 1.0.69", ] [[package]] -name = "serde_with" -version = "3.14.0" +name = "ref-cast" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" +checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" dependencies = [ - "base64 0.22.1", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.11.1", - "schemars 0.9.0", - "schemars 1.0.4", - "serde", - "serde_derive", - "serde_json", - "serde_with_macros", - "time", + "ref-cast-impl", ] [[package]] -name = "serde_with_macros" -version = "3.14.0" +name = "ref-cast-impl" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" +checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" dependencies = [ - "darling 0.20.11", "proc-macro2", "quote", "syn 2.0.106", ] [[package]] -name = "serde_yaml" -version = "0.8.26" +name = "regex" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" +checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" dependencies = [ - "indexmap 1.9.3", - "ryu", - "serde", - "yaml-rust", + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", ] [[package]] -name = "sha1" -version = "0.10.6" +name = "regex-automata" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "aho-corasick", + "memchr", + "regex-syntax", ] [[package]] -name = "sha2" -version = "0.9.9" +name = "regex-syntax" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" -dependencies = [ - "block-buffer 0.9.0", - "cfg-if", - "cpufeatures", - "digest 0.9.0", - "opaque-debug", -] +checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" [[package]] -name = "sha2" -version = "0.10.9" +name = "reqwest" +version = "0.11.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" dependencies = [ - "cfg-if", - "cpufeatures", - "digest 0.10.7", + "base64 0.21.7", + "bytes", + "cookie 0.17.0", + "cookie_store", + "encoding_rs", + "futures-core", + "futures-util", + "h2 0.3.27", + "http 0.2.12", + "http-body 0.4.6", + "hyper 0.14.32", + "hyper-rustls", + "hyper-tls", + "ipnet", + "js-sys", + "log", + "mime", + "mime_guess", + "native-tls", + "once_cell", + "percent-encoding", + "pin-project-lite", + "rustls 0.21.12", + "rustls-pemfile 1.0.4", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper 0.1.2", + "system-configuration", + "tokio", + "tokio-native-tls", + "tokio-rustls 0.24.1", + "tokio-util", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", + "winreg", ] [[package]] -name = "sha3" -version = "0.9.1" +name = "rfc6979" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "block-buffer 0.9.0", - "digest 0.9.0", - "keccak", - "opaque-debug", + "hmac 0.12.1", + "subtle", ] [[package]] -name = "sha3" -version = "0.10.8" +name = "rfc7239" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +checksum = "4a82f1d1e38e9a85bb58ffcfadf22ed6f2c94e8cd8581ec2b0f80a2a6858350f" dependencies = [ - "digest 0.10.7", - "keccak", + "uncased", ] [[package]] -name = "sharded-slab" -version = "0.1.7" +name = "ring" +version = "0.16.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" dependencies = [ - "lazy_static", + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi 0.3.9", ] [[package]] -name = "shared-crypto" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ - "bcs", - "eyre", - "fastcrypto", - "serde", - "serde_repr", + "cc", + "cfg-if", + "getrandom 0.2.16", + "libc", + "untrusted 0.9.0", + "windows-sys 0.52.0", ] [[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "signal-hook" -version = "0.3.18" +name = "ripemd" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" +checksum = "bd124222d17ad93a644ed9d011a40f4fb64aa54275c08cc216524a9ea82fb09f" dependencies = [ - "libc", - "signal-hook-registry", + "digest 0.10.7", ] [[package]] -name = "signal-hook-mio" -version = "0.2.4" +name = "rlimit" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" +checksum = "7043b63bd0cd1aaa628e476b80e6d4023a3b50eb32789f2728908107bd0c793a" dependencies = [ "libc", - "mio 0.8.11", - "signal-hook", ] [[package]] -name = "signal-hook-registry" -version = "1.4.6" +name = "rocksdb" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" +checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f" dependencies = [ "libc", + "librocksdb-sys", ] [[package]] -name = "signature" -version = "1.6.4" +name = "rsa" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" +checksum = "4cf22754c49613d2b3b119f0e5d46e34a2c628a937e3024b8762de4e7d8c710b" dependencies = [ + "byteorder", "digest 0.10.7", + "num-bigint-dig", + "num-integer", + "num-iter", + "num-traits", + "pkcs1 0.3.3", + "pkcs8 0.8.0", "rand_core 0.6.4", + "smallvec", + "subtle", + "zeroize", ] [[package]] -name = "signature" -version = "2.2.0" +name = "rsa" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b" dependencies = [ + "const-oid 0.9.6", "digest 0.10.7", + "num-bigint-dig", + "num-integer", + "num-traits", + "pkcs1 0.7.5", + "pkcs8 0.10.2", "rand_core 0.6.4", + "signature 2.2.0", + "spki 0.7.3", + "subtle", + "zeroize", ] [[package]] -name = "similar" -version = "2.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa" - -[[package]] -name = "simple-server-timing-header" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16e78919e05c9b8e123d435a4ad104b488ad1585631830e413830985c214086e" - -[[package]] -name = "simple_moving_average" -version = "1.0.2" +name = "rstest" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a4b144ad185430cd033299e2c93e465d5a7e65fbb858593dc57181fa13cd310" +checksum = "e9c9dc66cc29792b663ffb5269be669f1613664e69ad56441fdb895c2347b930" dependencies = [ - "num-traits", + "futures", + "futures-timer", + "rstest_macros", + "rustc_version", ] [[package]] -name = "siphasher" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - -[[package]] -name = "sized-chunks" -version = "0.6.5" +name = "rstest_macros" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" +checksum = "5015e68a0685a95ade3eee617ff7101ab6a3fc689203101ca16ebc16f2b89c66" dependencies = [ - "bitmaps", - "typenum", + "cfg-if", + "proc-macro2", + "quote", + "rustc_version", + "syn 1.0.109", ] [[package]] -name = "slab" -version = "0.4.11" +name = "rustc-demangle" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" [[package]] -name = "slip10_ed25519" -version = "0.1.3" +name = "rustc-hash" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4be0ff28bf14f9610a342169084e87a4f435ad798ec528dc7579a3678fa9dc9a" -dependencies = [ - "hmac-sha512", -] +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] -name = "smallvec" -version = "1.15.1" +name = "rustc-hash" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" [[package]] -name = "snafu" -version = "0.8.9" +name = "rustc-hex" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e84b3f4eacbf3a1ce05eac6763b4d629d60cbc94d632e4092c54ade71f1e1a2" -dependencies = [ - "snafu-derive", -] +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" [[package]] -name = "snafu-derive" -version = "0.8.9" +name = "rustc_version" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1c97747dbf44bb1ca44a561ece23508e99cb592e862f22222dcf42f51d1e451" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "syn 2.0.106", + "semver", ] [[package]] -name = "snap" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" - -[[package]] -name = "socket2" -version = "0.4.10" +name = "rustix" +version = "0.36.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" +checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" dependencies = [ + "bitflags 1.3.2", + "errno", + "io-lifetimes", "libc", - "winapi", + "linux-raw-sys 0.1.4", + "windows-sys 0.45.0", ] [[package]] -name = "socket2" -version = "0.5.10" +name = "rustix" +version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ + "bitflags 2.9.4", + "errno", "libc", - "windows-sys 0.52.0", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", ] [[package]] -name = "socket2" -version = "0.6.0" +name = "rustix" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" dependencies = [ + "bitflags 2.9.4", + "errno", "libc", - "windows-sys 0.59.0", + "linux-raw-sys 0.11.0", + "windows-sys 0.61.0", ] [[package]] -name = "soketto" -version = "0.8.1" +name = "rustls" +version = "0.21.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" dependencies = [ - "base64 0.22.1", - "bytes", - "futures", - "http 1.3.1", - "httparse", "log", - "rand 0.8.5", - "sha1", + "ring 0.17.14", + "rustls-webpki 0.101.7", + "sct", ] [[package]] -name = "spin" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" - -[[package]] -name = "spinning_top" -version = "0.3.0" +name = "rustls" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300" +checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" dependencies = [ - "lock_api", + "log", + "ring 0.17.14", + "rustls-pki-types", + "rustls-webpki 0.102.8", + "subtle", + "zeroize", ] [[package]] -name = "spki" -version = "0.6.0" +name = "rustls" +version = "0.23.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" +checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" dependencies = [ - "base64ct", - "der 0.6.1", + "aws-lc-rs", + "log", + "once_cell", + "ring 0.17.14", + "rustls-pki-types", + "rustls-webpki 0.103.6", + "subtle", + "zeroize", ] [[package]] -name = "spki" -version = "0.7.3" +name = "rustls-native-certs" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" dependencies = [ - "base64ct", - "der 0.7.10", + "openssl-probe", + "rustls-pki-types", + "schannel", + "security-framework 3.4.0", ] [[package]] -name = "stable_deref_trait" -version = "1.2.0" +name = "rustls-pemfile" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] [[package]] -name = "stacker" -version = "0.1.21" +name = "rustls-pemfile" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" dependencies = [ - "cc", - "cfg-if", - "libc", - "psm", - "windows-sys 0.59.0", + "rustls-pki-types", ] [[package]] -name = "starlark" -version = "0.13.0" +name = "rustls-pki-types" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f53849859f05d9db705b221bd92eede93877fd426c1b4a3c3061403a5912a8f" +checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" dependencies = [ - "allocative", - "anyhow", - "bumpalo", - "cmp_any", - "debugserver-types", - "derivative", - "derive_more 1.0.0", - "display_container", - "dupe", - "either", - "erased-serde", - "hashbrown 0.14.5", - "inventory", - "itertools 0.13.0", - "maplit", - "memoffset", - "num-bigint 0.4.6", - "num-traits", - "once_cell", - "paste", - "ref-cast", - "regex", - "rustyline", - "serde", - "serde_json", - "starlark_derive", - "starlark_map", - "starlark_syntax", - "static_assertions", - "strsim 0.10.0", - "textwrap", - "thiserror 1.0.69", + "zeroize", ] [[package]] -name = "starlark_derive" -version = "0.13.0" +name = "rustls-webpki" +version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe58bc6c8b7980a1fe4c9f8f48200c3212db42ebfe21ae6a0336385ab53f082a" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "dupe", - "proc-macro2", - "quote", - "syn 2.0.106", + "ring 0.17.14", + "untrusted 0.9.0", ] [[package]] -name = "starlark_map" -version = "0.13.0" +name = "rustls-webpki" +version = "0.102.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92659970f120df0cc1c0bb220b33587b7a9a90e80d4eecc5c5af5debb950173d" +checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" dependencies = [ - "allocative", - "dupe", - "equivalent", - "fxhash", - "hashbrown 0.14.5", - "serde", + "ring 0.17.14", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] -name = "starlark_syntax" -version = "0.13.0" +name = "rustls-webpki" +version = "0.103.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe53b3690d776aafd7cb6b9fed62d94f83280e3b87d88e3719cc0024638461b3" +checksum = "8572f3c2cb9934231157b45499fc41e1f58c589fdfb81a844ba873265e80f8eb" dependencies = [ - "allocative", - "annotate-snippets", - "anyhow", - "derivative", - "derive_more 1.0.0", - "dupe", - "lalrpop", - "lalrpop-util", - "logos", - "lsp-types 0.94.1", - "memchr", - "num-bigint 0.4.6", - "num-traits", - "once_cell", - "starlark_map", - "thiserror 1.0.69", + "aws-lc-rs", + "ring 0.17.14", + "rustls-pki-types", + "untrusted 0.9.0", ] [[package]] -name = "static_assertions" -version = "1.1.0" +name = "rustversion" +version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" [[package]] -name = "string_cache" -version = "0.8.9" +name = "rusty-fork" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f" dependencies = [ - "new_debug_unreachable", - "parking_lot 0.12.4", - "phf_shared", - "precomputed-hash", + "fnv", + "quick-error", + "tempfile", + "wait-timeout", ] [[package]] -name = "strsim" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" - -[[package]] -name = "strsim" -version = "0.11.1" +name = "ryu" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" [[package]] -name = "strum" -version = "0.25.0" +name = "same-file" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" dependencies = [ - "strum_macros 0.25.3", + "winapi-util", ] [[package]] -name = "strum" -version = "0.27.2" +name = "schannel" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" dependencies = [ - "strum_macros 0.27.2", + "windows-sys 0.61.0", ] [[package]] -name = "strum_macros" -version = "0.25.3" +name = "schemars" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" dependencies = [ - "heck 0.4.1", - "proc-macro2", - "quote", - "rustversion", - "syn 2.0.106", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] -name = "strum_macros" -version = "0.27.2" +name = "schemars" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +checksum = "82d20c4491bc164fa2f6c5d44565947a52ad80b9505d8e36f8d54c27c739fcd0" dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "syn 2.0.106", + "dyn-clone", + "ref-cast", + "serde", + "serde_json", ] [[package]] -name = "subtle" -version = "2.6.1" +name = "scoped-tls" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" [[package]] -name = "subtle-ng" -version = "2.5.0" +name = "scopeguard" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" - -[[package]] -name = "sui-adapter-latest" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "bcs", - "indexmap 2.11.1", - "leb128", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", - "move-bytecode-verifier-meter", - "move-core-types", - "move-regex-borrow-graph", - "move-trace-format", - "move-vm-config", - "move-vm-profiler", - "move-vm-runtime", - "move-vm-types", - "mysten-common", - "mysten-metrics", - "parking_lot 0.12.4", - "serde", - "serde_json", - "sui-macros", - "sui-move-natives-latest", - "sui-protocol-config", - "sui-types", - "sui-verifier-latest", - "tracing", -] +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] -name = "sui-adapter-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "anyhow", - "bcs", - "leb128", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v0", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-runtime-v0", - "move-vm-types-v0", - "once_cell", - "parking_lot 0.12.4", - "serde", - "sui-macros", - "sui-move-natives-v0", - "sui-protocol-config", - "sui-types", - "sui-verifier-v0", - "tracing", + "ring 0.17.14", + "untrusted 0.9.0", ] [[package]] -name = "sui-adapter-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "anyhow", - "bcs", - "leb128", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v1", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-runtime-v1", - "move-vm-types-v1", - "parking_lot 0.12.4", - "serde", - "sui-macros", - "sui-move-natives-v1", - "sui-protocol-config", - "sui-types", - "sui-verifier-v1", - "tracing", + "base16ct", + "der 0.7.10", + "generic-array", + "pkcs8 0.10.2", + "subtle", + "zeroize", ] [[package]] -name = "sui-adapter-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" dependencies = [ - "anyhow", - "bcs", - "leb128", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v2", - "move-core-types", - "move-vm-config", - "move-vm-profiler", - "move-vm-runtime-v2", - "move-vm-types-v2", - "parking_lot 0.12.4", - "serde", - "sui-macros", - "sui-move-natives-v2", - "sui-protocol-config", - "sui-types", - "sui-verifier-v2", - "tracing", + "bitflags 2.9.4", + "core-foundation 0.9.4", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] -name = "sui-authority-aggregation" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "security-framework" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b369d18893388b345804dc0007963c99b7d665ae71d275812d828c6f089640" dependencies = [ - "futures", - "mysten-metrics", - "sui-types", - "tokio", - "tracing", + "bitflags 2.9.4", + "core-foundation 0.10.1", + "core-foundation-sys", + "libc", + "security-framework-sys", ] [[package]] -name = "sui-config" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "security-framework-sys" +version = "2.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" dependencies = [ - "anemo", - "anyhow", - "bcs", - "clap", - "consensus-config", - "csv", - "dirs", - "fastcrypto", - "move-vm-config", - "mysten-common", - "nonzero_ext", - "object_store", - "once_cell", - "prometheus", - "rand 0.8.5", - "reqwest", - "serde", - "serde_json", - "serde_with", - "serde_yaml", - "starlark", - "sui-keys", - "sui-protocol-config", - "sui-types", - "thiserror 1.0.69", - "tracing", + "core-foundation-sys", + "libc", ] [[package]] -name = "sui-core" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" dependencies = [ - "anemo", - "antithesis_sdk", - "anyhow", - "arc-swap", - "async-stream", - "async-trait", - "axum 0.8.4", - "bcs", - "bincode", - "bytes", - "consensus-config", - "consensus-core", - "consensus-types", - "count-min-sketch", - "dashmap", - "diffy", - "either", - "enum_dispatch", - "eyre", - "fastcrypto", - "fastcrypto-tbls", - "fastcrypto-zkp", - "futures", - "governor", - "im", - "itertools 0.13.0", - "lru 0.10.1", - "mockall", - "moka", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "move-package", - "move-symbol-pool", - "move-trace-format", - "mysten-common", - "mysten-metrics", - "mysten-network", - "nonempty", - "nonzero_ext", - "num_cpus", - "object_store", - "once_cell", - "parking_lot 0.12.4", - "pin-project-lite", - "prometheus", - "rand 0.8.5", - "rayon", - "reqwest", - "roaring", - "scopeguard", "serde", - "serde_json", - "serde_with", - "shared-crypto", - "simple_moving_average", - "static_assertions", - "strum 0.27.2", - "strum_macros 0.27.2", - "sui-authority-aggregation", - "sui-config", - "sui-execution", - "sui-framework", - "sui-genesis-builder", - "sui-json-rpc-types", - "sui-macros", - "sui-network", - "sui-protocol-config", - "sui-simulator 0.7.0", - "sui-storage", - "sui-swarm-config", - "sui-tls", - "sui-tracer 0.1.0 (git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer)", - "sui-transaction-checks", - "sui-types", - "sysinfo", - "tap", - "telemetry-subscribers", - "tempfile", - "thiserror 1.0.69", - "tokio", - "tokio-retry", - "tokio-stream", - "tracing", - "twox-hash", - "typed-store", + "serde_core", ] [[package]] -name = "sui-crypto" -version = "0.0.6" -source = "git+https://github.com/MystenLabs/sui-rust-sdk.git?rev=8bc0ff524a3a60561f1ba6315399f6f09e2b85b3#8bc0ff524a3a60561f1ba6315399f6f09e2b85b3" +name = "serde" +version = "1.0.225" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6c24dee235d0da097043389623fb913daddf92c76e9f5a1db88607a0bcbd1d" dependencies = [ - "ark-bn254", - "ark-ff", - "ark-groth16", - "ark-snark", - "ark-std", - "base64ct", - "bnum", - "ed25519-dalek", - "itertools 0.13.0", - "k256 0.13.4", - "p256", - "rand_core 0.6.4", - "serde", + "serde_core", "serde_derive", - "serde_json", - "sha2 0.10.9", - "signature 2.2.0", - "sui-sdk-types", ] [[package]] -name = "sui-data-ingestion-core" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde-big-array" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11fc7cc2c76d73e0f27ee52abbd64eec84d46f370c88371120433196934e4b7f" dependencies = [ - "anyhow", - "async-trait", - "backoff", - "bcs", - "futures", - "mysten-metrics", - "notify", - "object_store", - "once_cell", - "prometheus", "serde", - "serde_json", - "sui-protocol-config", - "sui-rpc-api", - "sui-storage", - "sui-types", - "tap", - "tempfile", - "tokio", - "tokio-stream", - "tracing", - "url", ] [[package]] -name = "sui-display" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde-generate" +version = "0.20.6" +source = "git+https://github.com/aptos-labs/serde-reflection?rev=73b6bbf748334b71ff6d7d09d06a29e3062ca075#73b6bbf748334b71ff6d7d09d06a29e3062ca075" dependencies = [ - "anyhow", - "move-core-types", - "sui-json-rpc-types", - "sui-types", - "thiserror 1.0.69", + "bcs 0.1.6", + "bincode", + "heck 0.3.3", + "include_dir", + "maplit", + "serde", + "serde-reflection", + "serde_bytes", + "serde_yaml 0.8.26", + "structopt", + "textwrap 0.13.4", ] [[package]] -name = "sui-enum-compat-util" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde-name" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12c47087018ec281d1cdab673d36aea22d816b54d498264029c05d5fa1910da6" dependencies = [ - "serde_yaml", + "serde", + "thiserror 1.0.69", ] [[package]] -name = "sui-execution" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "move-abstract-interpreter", - "move-abstract-interpreter-v2", - "move-binary-format", - "move-bytecode-verifier", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v0", - "move-bytecode-verifier-v1", - "move-bytecode-verifier-v2", - "move-trace-format", - "move-vm-config", - "move-vm-runtime", - "move-vm-runtime-v0", - "move-vm-runtime-v1", - "move-vm-runtime-v2", - "move-vm-types", - "move-vm-types-v0", - "move-vm-types-v1", - "move-vm-types-v2", - "sui-adapter-latest", - "sui-adapter-v0", - "sui-adapter-v1", - "sui-adapter-v2", - "sui-move-natives-latest", - "sui-move-natives-v0", - "sui-move-natives-v1", - "sui-move-natives-v2", - "sui-protocol-config", - "sui-types", - "sui-verifier-latest", - "sui-verifier-v0", - "sui-verifier-v1", - "sui-verifier-v2", -] - -[[package]] -name = "sui-framework" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde-reflection" +version = "0.3.5" +source = "git+https://github.com/aptos-labs/serde-reflection?rev=73b6bbf748334b71ff6d7d09d06a29e3062ca075#73b6bbf748334b71ff6d7d09d06a29e3062ca075" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", "once_cell", "serde", - "sui-types", - "tracing", + "thiserror 1.0.69", ] [[package]] -name = "sui-framework-snapshot" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_bytes" +version = "0.11.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" dependencies = [ - "anyhow", - "bcs", - "bin-version", "serde", - "serde_json", - "sui-framework", - "sui-protocol-config", - "sui-types", + "serde_core", ] [[package]] -name = "sui-fuzzer" -version = "0.1.0" +name = "serde_cbor" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" dependencies = [ - "anyhow", - "async-trait", - "bcs", - "eyre", - "fuzzer-core", - "hex", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "move-vm-types", - "rand 0.9.2", + "half 1.8.3", "serde", - "serde_json", - "sui-config", - "sui-json-rpc-types", - "sui-sdk", - "sui-simulator 0.1.0", - "sui-tracer 0.1.0", - "sui-types", - "thiserror 2.0.16", - "tokio", - "tracing", ] [[package]] -name = "sui-genesis-builder" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_core" +version = "1.0.225" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "659356f9a0cb1e529b24c01e43ad2bdf520ec4ceaf83047b83ddcc2251f96383" dependencies = [ - "anyhow", - "bcs", - "camino", - "fastcrypto", - "move-binary-format", - "move-core-types", - "prometheus", - "rand 0.8.5", - "serde", - "serde_with", - "serde_yaml", - "shared-crypto", - "sui-config", - "sui-execution", - "sui-framework", - "sui-framework-snapshot", - "sui-protocol-config", - "sui-simulator 0.7.0", - "sui-types", - "tempfile", - "tracing", + "serde_derive", ] [[package]] -name = "sui-http" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_derive" +version = "1.0.225" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ea936adf78b1f766949a4977b91d2f5595825bd6ec079aa9543ad2685fc4516" dependencies = [ - "bytes", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-util", - "pin-project-lite", - "socket2 0.5.10", - "tokio", - "tokio-rustls", - "tokio-util 0.7.16", - "tower 0.5.2", - "tracing", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "sui-json" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_json" +version = "1.0.145" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" dependencies = [ - "anyhow", - "bcs", - "fastcrypto", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "schemars 0.8.22", + "indexmap 2.11.3", + "itoa", + "memchr", + "ryu", "serde", - "serde_json", - "sui-types", + "serde_core", ] [[package]] -name = "sui-json-rpc" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_merge" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "606e91878516232ac3b16c12e063d4468d762f16d77e7aef14a1f2326c5f409b" dependencies = [ - "anyhow", - "arc-swap", - "async-trait", - "axum 0.8.4", - "backoff", - "base64 0.21.7", - "bcs", - "cached", - "chrono", - "eyre", - "fastcrypto", - "fastcrypto-zkp", - "futures", - "http-body 0.4.6", - "hyper", - "im", - "indexmap 2.11.1", - "itertools 0.13.0", - "jsonrpsee", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "move-package", - "mysten-metrics", - "once_cell", - "prometheus", "serde", "serde_json", - "shared-crypto", - "signature 1.6.4", - "sui-config", - "sui-core", - "sui-display", - "sui-json", - "sui-json-rpc-api", - "sui-json-rpc-types", - "sui-macros", - "sui-name-service", - "sui-open-rpc", - "sui-open-rpc-macros", - "sui-protocol-config", - "sui-storage", - "sui-transaction-builder", - "sui-types", - "tap", "thiserror 1.0.69", - "tokio", - "tokio-util 0.7.16", - "tower 0.5.2", - "tower-http 0.5.2", - "tracing", - "typed-store-error", ] [[package]] -name = "sui-json-rpc-api" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" dependencies = [ - "anyhow", - "fastcrypto", - "jsonrpsee", - "mysten-metrics", - "once_cell", - "prometheus", - "sui-json", - "sui-json-rpc-types", - "sui-open-rpc", - "sui-open-rpc-macros", - "sui-types", - "tap", - "tracing", + "serde", ] [[package]] -name = "sui-json-rpc-types" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ - "anyhow", - "bcs", - "colored", - "enum_dispatch", - "fastcrypto", - "itertools 0.13.0", - "json_to_table", - "move-binary-format", - "move-bytecode-utils", - "move-command-line-common", - "move-core-types", - "move-disassembler", - "move-ir-types", - "mysten-metrics", - "schemars 0.8.22", + "form_urlencoded", + "itoa", + "ryu", "serde", - "serde_json", - "serde_with", - "sui-enum-compat-util", - "sui-json", - "sui-macros", - "sui-package-resolver", - "sui-protocol-config", - "sui-tracer 0.1.0 (git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer)", - "sui-types", - "tabled", - "tracing", ] [[package]] -name = "sui-keys" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_with" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" dependencies = [ - "anyhow", - "async-trait", - "base64 0.21.7", - "bcs", - "bip32", - "colored", - "fastcrypto", - "jsonrpc", - "mockall", - "rand 0.8.5", - "regex", + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.11.3", + "schemars 0.9.0", + "schemars 1.0.4", "serde", + "serde_derive", "serde_json", - "shared-crypto", - "signature 1.6.4", - "slip10_ed25519", - "sui-types", - "tiny-bip39", - "tokio", + "serde_with_macros", + "time", ] [[package]] -name = "sui-macros" -version = "0.7.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_with_macros" +version = "3.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" dependencies = [ - "futures", - "once_cell", - "sui-proc-macros", - "tracing", + "darling", + "proc-macro2", + "quote", + "syn 2.0.106", ] [[package]] -name = "sui-move-build" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_yaml" +version = "0.8.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b" dependencies = [ - "anyhow", - "fastcrypto", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", - "move-command-line-common", - "move-compiler", - "move-core-types", - "move-ir-types", - "move-package", - "move-symbol-pool", - "mysten-common", - "serde-reflection", - "sui-package-management", - "sui-protocol-config", - "sui-types", - "sui-verifier-latest", - "tempfile", + "indexmap 1.9.3", + "ryu", + "serde", + "yaml-rust", ] [[package]] -name = "sui-move-natives-latest" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" dependencies = [ - "bcs", - "better_any", - "fastcrypto", - "fastcrypto-vdf", - "fastcrypto-zkp", - "indexmap 2.11.1", - "move-binary-format", - "move-core-types", - "move-stdlib-natives", - "move-vm-runtime", - "move-vm-types", - "rand 0.8.5", - "smallvec", - "sui-protocol-config", - "sui-types", - "tracing", + "indexmap 2.11.3", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", ] [[package]] -name = "sui-move-natives-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sha1" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "bcs", - "better_any", - "fastcrypto", - "fastcrypto-zkp", - "linked-hash-map", - "move-binary-format", - "move-core-types", - "move-stdlib-natives-v0", - "move-vm-runtime-v0", - "move-vm-types-v0", - "smallvec", - "sui-protocol-config", - "sui-types", - "tracing", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] -name = "sui-move-natives-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "bcs", - "better_any", - "fastcrypto", - "fastcrypto-zkp", - "linked-hash-map", - "move-binary-format", - "move-core-types", - "move-stdlib-natives-v1", - "move-vm-runtime-v1", - "move-vm-types-v1", - "smallvec", - "sui-protocol-config", - "sui-types", - "tracing", -] +name = "sha1_smol" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" [[package]] -name = "sui-move-natives-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sha2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" dependencies = [ - "bcs", - "better_any", - "fastcrypto", - "fastcrypto-zkp", - "indexmap 2.11.1", - "move-binary-format", - "move-core-types", - "move-stdlib-natives-v2", - "move-vm-runtime-v2", - "move-vm-types-v2", - "smallvec", - "sui-protocol-config", - "sui-types", - "tracing", + "block-buffer 0.9.0", + "cfg-if", + "cpufeatures", + "digest 0.9.0", + "opaque-debug", ] [[package]] -name = "sui-name-service" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ - "bcs", - "move-core-types", - "serde", - "sui-types", - "thiserror 1.0.69", + "cfg-if", + "cpufeatures", + "digest 0.10.7", ] [[package]] -name = "sui-network" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" dependencies = [ - "anemo", - "anemo-build", - "anemo-tower", - "anyhow", - "arc-swap", - "bcs", - "bytes", - "dashmap", - "fastcrypto", - "fastcrypto-tbls", - "futures", - "governor", - "mysten-common", - "mysten-metrics", - "mysten-network", - "prometheus", - "rand 0.8.5", - "serde", - "shared-crypto", - "sui-config", - "sui-data-ingestion-core", - "sui-macros", - "sui-protocol-config", - "sui-simulator 0.7.0", - "sui-storage", - "sui-swarm-config", - "sui-types", - "tap", - "tokio", - "tonic 0.13.1", - "tonic-build", - "tower 0.5.2", - "tracing", + "block-buffer 0.9.0", + "digest 0.9.0", + "keccak", + "opaque-debug", ] [[package]] -name = "sui-open-rpc" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "shadow-rs" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c0ea0c68418544f725eba5401a5b965a2263254c92458d04aeae74e9d88ff4e" dependencies = [ - "bcs", - "schemars 0.8.22", - "serde", - "serde_json", - "versions", + "const_format", + "git2", + "is_debug", + "time", + "tzdb", ] [[package]] -name = "sui-open-rpc-macros" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ - "derive-syn-parse", - "itertools 0.13.0", - "proc-macro2", - "quote", - "syn 1.0.109", - "unescape", + "lazy_static", ] [[package]] -name = "sui-package-management" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook" +version = "0.3.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" dependencies = [ - "anyhow", - "move-core-types", - "move-package", - "move-symbol-pool", - "sui-framework-snapshot", - "sui-json-rpc-types", - "sui-protocol-config", - "sui-sdk", - "sui-types", - "thiserror 1.0.69", - "tracing", + "libc", + "signal-hook-registry", ] [[package]] -name = "sui-package-resolver" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "signal-hook-mio" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd" dependencies = [ - "async-trait", - "bcs", - "eyre", - "lru 0.10.1", - "move-binary-format", - "move-command-line-common", - "move-core-types", - "serde", - "sui-types", - "thiserror 1.0.69", - "tokio", + "libc", + "mio 0.8.11", + "signal-hook", ] [[package]] -name = "sui-proc-macros" -version = "0.7.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "signal-hook-registry" +version = "1.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" dependencies = [ - "msim-macros", - "proc-macro2", - "quote", - "sui-enum-compat-util", - "syn 2.0.106", + "libc", ] [[package]] -name = "sui-protocol-config" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "signature" +version = "1.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" dependencies = [ - "clap", - "fastcrypto", - "move-core-types", - "move-vm-config", - "schemars 0.8.22", - "serde", - "serde-env", - "serde_with", - "sui-protocol-config-macros", - "tracing", + "digest 0.10.7", + "rand_core 0.6.4", ] [[package]] -name = "sui-protocol-config-macros" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "simple_asn1" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "692ca13de57ce0613a363c8c2f1de925adebc81b04c923ac60c5488bb44abe4b" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", + "chrono", + "num-bigint 0.2.6", + "num-traits", ] [[package]] -name = "sui-rpc" -version = "0.0.6" -source = "git+https://github.com/MystenLabs/sui-rust-sdk.git?rev=8bc0ff524a3a60561f1ba6315399f6f09e2b85b3#8bc0ff524a3a60561f1ba6315399f6f09e2b85b3" +name = "simple_asn1" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" dependencies = [ - "base64 0.22.1", - "bcs", - "bytes", - "http 1.3.1", - "prost", - "prost-types", - "roaring", - "serde", - "serde_json", - "sui-sdk-types", - "tap", - "tonic 0.13.1", + "num-bigint 0.4.6", + "num-traits", + "thiserror 2.0.16", + "time", ] [[package]] -name = "sui-rpc-api" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" -dependencies = [ - "anyhow", - "async-stream", - "async-trait", - "axum 0.8.4", - "base64 0.21.7", - "bcs", - "bytes", - "fastcrypto", - "http 1.3.1", - "itertools 0.13.0", - "mime", - "move-binary-format", - "move-core-types", - "mysten-network", - "prometheus", - "prost", - "prost-types", - "rand 0.8.5", - "roaring", - "serde", - "serde_json", - "serde_with", - "sui-config", - "sui-crypto", - "sui-package-resolver", - "sui-protocol-config", - "sui-rpc", - "sui-sdk-types", - "sui-types", - "tap", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tonic 0.13.1", - "tonic-health", - "tonic-reflection", - "tonic-web", - "tower 0.5.2", - "tracing", - "url", +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" + +[[package]] +name = "sized-chunks" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e" +dependencies = [ + "bitmaps", + "typenum", ] [[package]] -name = "sui-sdk" -version = "1.55.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "skeptic" +version = "0.13.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" dependencies = [ - "anyhow", - "async-trait", - "base64 0.21.7", - "bcs", - "clap", - "colored", - "fastcrypto", - "futures", - "futures-core", - "jsonrpsee", - "move-core-types", - "reqwest", - "serde", - "serde_json", - "serde_with", - "shared-crypto", - "sui-config", - "sui-json", - "sui-json-rpc-api", - "sui-json-rpc-types", - "sui-keys", - "sui-transaction-builder", - "sui-types", - "thiserror 1.0.69", - "tokio", - "tracing", + "bytecount", + "cargo_metadata", + "error-chain", + "glob", + "pulldown-cmark", + "tempfile", + "walkdir", ] [[package]] -name = "sui-sdk-types" -version = "0.0.6" -source = "git+https://github.com/MystenLabs/sui-rust-sdk.git?rev=8bc0ff524a3a60561f1ba6315399f6f09e2b85b3#8bc0ff524a3a60561f1ba6315399f6f09e2b85b3" +name = "slab" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" + +[[package]] +name = "slug" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" dependencies = [ - "base64ct", - "bcs", - "blake2", - "bnum", - "bs58 0.5.1", - "hex", - "itertools 0.13.0", - "roaring", - "serde", - "serde_derive", - "serde_json", - "serde_with", - "winnow", + "deunicode", + "wasm-bindgen", ] [[package]] -name = "sui-simulator" +name = "smallbitvec" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d31d263dd118560e1a492922182ab6ca6dc1d03a3bf54e7699993f31a4150e3f" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "smawk" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c" + +[[package]] +name = "smt2parser" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "957720820c5237fbbff199be910433e453479ec91b28c5a20d3dce7ccba52f1d" dependencies = [ - "async-trait", - "dashmap", - "eyre", - "move-binary-format", - "move-core-types", - "move-trace-format", - "move-vm-config", - "move-vm-runtime", - "move-vm-types", - "parking_lot 0.12.4", - "prometheus", - "rand 0.9.2", - "serde", - "sui-config", - "sui-core", - "sui-execution", - "sui-json-rpc", - "sui-json-rpc-types", - "sui-protocol-config", - "sui-sdk", - "sui-storage", - "sui-tracer 0.1.0", - "sui-types", - "tempfile", - "thiserror 2.0.16", - "tokio", - "tokio-test", - "tracing", - "tracing-subscriber", + "fst", + "num 0.3.1", + "pomelo", + "structopt", ] [[package]] -name = "sui-simulator" -version = "0.7.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "snafu" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6" dependencies = [ - "anemo", - "anemo-tower", - "bcs", - "fastcrypto", - "lru 0.10.1", - "move-package", - "msim", - "mysten-network", - "rand 0.8.5", - "serde", - "sui-framework", - "sui-move-build", - "sui-types", - "telemetry-subscribers", - "tempfile", - "tower 0.5.2", - "tracing", + "doc-comment", + "snafu-derive", ] [[package]] -name = "sui-storage" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "snafu-derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf" dependencies = [ - "anyhow", - "async-trait", - "backoff", - "base64-url", - "bcs", - "byteorder", - "bytes", - "chrono", - "clap", - "eyre", - "fastcrypto", - "futures", - "hyper", - "hyper-rustls", - "indicatif", - "integer-encoding", - "itertools 0.13.0", - "lru 0.10.1", - "moka", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "mysten-metrics", - "num_enum", - "object_store", - "parking_lot 0.12.4", - "percent-encoding", - "prometheus", - "reqwest", - "serde", - "serde_json", - "sui-config", - "sui-json-rpc-types", - "sui-protocol-config", - "sui-types", - "tap", - "telemetry-subscribers", - "tempfile", - "tokio", - "tracing", - "typed-store", - "url", - "zstd 0.12.4", + "heck 0.4.1", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "sui-swarm-config" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" dependencies = [ - "anemo", - "anyhow", - "bcs", - "fastcrypto", - "move-bytecode-utils", - "mysten-common", - "prometheus", - "rand 0.8.5", - "serde", - "serde_with", - "serde_yaml", - "shared-crypto", - "sui-config", - "sui-genesis-builder", - "sui-macros", - "sui-protocol-config", - "sui-rpc-api", - "sui-simulator 0.7.0", - "sui-types", - "tracing", + "libc", + "windows-sys 0.52.0", ] [[package]] -name = "sui-tls" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "socket2" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" dependencies = [ - "anyhow", - "arc-swap", - "axum 0.8.4", - "axum-server", - "ed25519", - "fastcrypto", - "pkcs8 0.10.2", - "rcgen", - "reqwest", - "rustls", - "rustls-webpki", - "tokio", - "tokio-rustls", - "tower-layer", - "x509-parser", + "libc", + "windows-sys 0.59.0", ] [[package]] -name = "sui-tracer" -version = "0.1.0" -dependencies = [ - "anyhow", - "move-binary-format", - "move-core-types", - "move-trace-format", - "move-vm-types", - "schemars 1.0.4", - "serde", - "tracing", -] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] -name = "sui-tracer" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + +[[package]] +name = "spki" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d01ac02a6ccf3e07db148d2be087da624fea0221a16152ed01f0496a6b0a27" dependencies = [ - "anyhow", - "move-binary-format", - "move-core-types", - "move-trace-format", - "move-vm-types", - "schemars 0.8.22", - "serde", - "tracing", + "base64ct", + "der 0.5.1", ] [[package]] -name = "sui-transaction-builder" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" dependencies = [ - "anyhow", - "async-trait", - "bcs", - "futures", - "move-binary-format", - "move-core-types", - "sui-json", - "sui-json-rpc-types", - "sui-protocol-config", - "sui-types", + "base64ct", + "der 0.7.10", ] [[package]] -name = "sui-transaction-checks" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "status-line" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a20cc99bbe608305546a850ec4352907279a8b8044f9c13ae58bd0a8ab46ebc1" dependencies = [ - "fastcrypto-zkp", - "once_cell", - "sui-config", - "sui-execution", - "sui-macros", - "sui-protocol-config", - "sui-types", - "tracing", + "ansi-escapes", + "atty", ] [[package]] -name = "sui-types" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "structopt" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10" dependencies = [ - "anemo", - "anyhow", - "async-trait", - "base64 0.21.7", - "bcs", - "better_any", - "bincode", - "byteorder", - "bytes", - "chrono", - "ciborium", - "consensus-config", - "consensus-types", - "derive_more 1.0.0", - "enum_dispatch", - "eyre", - "fastcrypto", - "fastcrypto-tbls", - "fastcrypto-zkp", - "im", - "indexmap 2.11.1", - "itertools 0.13.0", - "lru 0.10.1", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", - "move-trace-format", - "move-vm-profiler", - "move-vm-test-utils", - "mysten-common", - "mysten-metrics", - "mysten-network", - "nonempty", - "num-bigint 0.4.6", - "num-traits", - "num_enum", - "once_cell", - "p384", - "parking_lot 0.12.4", - "passkey-types", - "prometheus", - "proptest", - "proptest-derive", - "prost", - "prost-types", - "rand 0.8.5", - "roaring", - "rustls-pemfile", - "schemars 0.8.22", - "serde", - "serde-name", - "serde_json", - "serde_with", - "shared-crypto", - "signature 1.6.4", - "static_assertions", - "strum 0.27.2", - "strum_macros 0.27.2", - "sui-enum-compat-util", - "sui-macros", - "sui-protocol-config", - "sui-rpc", - "sui-sdk-types", - "tap", - "thiserror 1.0.69", - "tonic 0.13.1", - "tracing", - "typed-store-error", - "x509-parser", + "clap 2.34.0", + "lazy_static", + "structopt-derive", ] [[package]] -name = "sui-verifier-latest" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "structopt-derive" +version = "0.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" dependencies = [ - "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", - "move-bytecode-verifier-meter", - "move-core-types", - "move-vm-config", - "sui-protocol-config", - "sui-types", + "heck 0.3.3", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] -name = "sui-verifier-v0" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" dependencies = [ - "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v0", - "move-core-types", - "move-vm-config", - "sui-protocol-config", - "sui-types", + "strum_macros 0.25.3", ] [[package]] -name = "sui-verifier-v1" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" + +[[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" dependencies = [ - "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v1", - "move-core-types", - "move-vm-config", - "sui-types", + "heck 0.4.1", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.106", ] [[package]] -name = "sui-verifier-v2" -version = "0.1.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" dependencies = [ - "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier-meter", - "move-bytecode-verifier-v2", - "move-core-types", - "move-vm-config", - "sui-protocol-config", - "sui-types", + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.106", ] +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "subtle-ng" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" + [[package]] name = "syn" version = "1.0.109" @@ -9631,23 +9264,17 @@ dependencies = [ [[package]] name = "sync_wrapper" -version = "1.0.2" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" -dependencies = [ - "futures-core", -] +checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] -name = "synstructure" -version = "0.12.6" +name = "sync_wrapper" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", + "futures-core", ] [[package]] @@ -9663,40 +9290,38 @@ dependencies = [ [[package]] name = "sysinfo" -version = "0.35.2" +version = "0.28.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c3ffa3e4ff2b324a57f7aeb3c349656c7b127c3c189520251a648102a92496e" +checksum = "b4c2f3ca6693feb29a89724516f016488e9aafc7f37264f898593ee4b942f31b" dependencies = [ + "cfg-if", + "core-foundation-sys", "libc", - "memchr", "ntapi", - "objc2-core-foundation", - "objc2-io-kit", - "windows", + "once_cell", + "rayon", + "winapi 0.3.9", ] [[package]] -name = "tabled" -version = "0.12.2" +name = "system-configuration" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce69a5028cd9576063ec1f48edb2c75339fd835e6094ef3e05b3a079bf594a6" +checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" dependencies = [ - "papergrid", - "tabled_derive", - "unicode-width 0.1.14", + "bitflags 1.3.2", + "core-foundation 0.9.4", + "system-configuration-sys", ] [[package]] -name = "tabled_derive" -version = "0.6.0" +name = "system-configuration-sys" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99f688a08b54f4f02f0a3c382aefdb7884d3d69609f785bd253dc033243e3fe4" +checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" dependencies = [ - "heck 0.4.1", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 1.0.109", + "core-foundation-sys", + "libc", ] [[package]] @@ -9712,30 +9337,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] -name = "telemetry-subscribers" -version = "0.2.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "tar" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" dependencies = [ - "atomic_float", - "bytes", - "bytes-varint", - "clap", - "console-subscriber", - "crossterm", - "futures", - "once_cell", - "opentelemetry", - "opentelemetry-otlp", - "opentelemetry-proto", - "opentelemetry_sdk", - "prometheus", - "prost", - "tokio", - "tonic 0.12.3", - "tracing", - "tracing-appender", - "tracing-opentelemetry", - "tracing-subscriber", + "filetime", + "libc", + "xattr", ] [[package]] @@ -9747,19 +9356,30 @@ dependencies = [ "fastrand", "getrandom 0.3.3", "once_cell", - "rustix", + "rustix 1.1.2", "windows-sys 0.61.0", ] [[package]] -name = "term" -version = "0.7.0" +name = "tera" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" +checksum = "ab9d851b45e865f178319da0abdbfe6acbc4328759ff18dafc3a41c16b4cd2ee" dependencies = [ - "dirs-next", - "rustversion", - "winapi", + "chrono", + "chrono-tz 0.9.0", + "globwalk", + "humansize", + "lazy_static", + "percent-encoding", + "pest", + "pest_derive", + "rand 0.8.5", + "regex", + "serde", + "serde_json", + "slug", + "unic-segment", ] [[package]] @@ -9777,23 +9397,38 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix", + "rustix 1.1.2", "windows-sys 0.60.2", ] [[package]] -name = "termtree" -version = "0.5.1" +name = "textwrap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "textwrap" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" +checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" +dependencies = [ + "smawk", + "unicode-width", +] [[package]] name = "textwrap" -version = "0.11.0" +version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d" dependencies = [ - "unicode-width 0.1.14", + "smawk", + "unicode-linebreak", + "unicode-width", ] [[package]] @@ -9856,14 +9491,24 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.4+5.3.0-patched" +version = "0.6.0+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" +checksum = "cd3c60906412afa9c2b5b5a48ca6a5abe5736aec9eb48ad05037a677e52e4e2d" dependencies = [ "cc", "libc", ] +[[package]] +name = "tikv-jemallocator" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cec5ff18518d81584f477e9bfdf957f5bb0979b0bac3af4ca30b5b3ae2d2865" +dependencies = [ + "libc", + "tikv-jemalloc-sys", +] + [[package]] name = "time" version = "0.3.43" @@ -9871,7 +9516,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031" dependencies = [ "deranged", + "libc", "num-conv", + "num_threads", "powerfmt", "serde", "time-core", @@ -9896,17 +9543,17 @@ dependencies = [ [[package]] name = "tiny-bip39" -version = "1.0.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861" +checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d" dependencies = [ "anyhow", - "hmac", + "hmac 0.8.1", "once_cell", "pbkdf2", - "rand 0.8.5", + "rand 0.7.3", "rustc-hash 1.1.0", - "sha2 0.10.9", + "sha2 0.9.9", "thiserror 1.0.69", "unicode-normalization", "wasm-bindgen", @@ -9932,6 +9579,16 @@ dependencies = [ "zerovec", ] +[[package]] +name = "tinytemplate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" +dependencies = [ + "serde", + "serde_json", +] + [[package]] name = "tinyvec" version = "1.10.0" @@ -9958,13 +9615,12 @@ dependencies = [ "io-uring", "libc", "mio 1.0.4", - "parking_lot 0.12.4", + "parking_lot", "pin-project-lite", "signal-hook-registry", "slab", "socket2 0.6.0", - "tokio-macros 2.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tracing", + "tokio-macros", "windows-sys 0.59.0", ] @@ -9980,13 +9636,13 @@ dependencies = [ ] [[package]] -name = "tokio-macros" -version = "2.5.0" -source = "git+https://github.com/MystenLabs/tokio-msim-fork.git?rev=c59702c3177a31405d42ec12e01fa4a445728326#c59702c3177a31405d42ec12e01fa4a445728326" +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "native-tls", + "tokio", ] [[package]] @@ -10002,65 +9658,56 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.2" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls", + "rustls 0.21.12", "tokio", ] [[package]] -name = "tokio-stream" -version = "0.1.17" +name = "tokio-rustls" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" +checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" dependencies = [ - "futures-core", - "pin-project-lite", + "rustls 0.22.4", + "rustls-pki-types", "tokio", - "tokio-util 0.7.16", ] [[package]] -name = "tokio-test" -version = "0.4.4" +name = "tokio-rustls" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7" +checksum = "05f63835928ca123f1bef57abbcd23bb2ba0ac9ae1235f1e65bda0d06e7786bd" dependencies = [ - "async-stream", - "bytes", - "futures-core", + "rustls 0.23.31", "tokio", - "tokio-stream", ] [[package]] -name = "tokio-tungstenite" -version = "0.26.2" +name = "tokio-stream" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" +checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" dependencies = [ - "futures-util", - "log", + "futures-core", + "pin-project-lite", "tokio", - "tungstenite", ] [[package]] -name = "tokio-util" -version = "0.7.15" -source = "git+https://github.com/MystenLabs/tokio-msim-fork.git?rev=c59702c3177a31405d42ec12e01fa4a445728326#c59702c3177a31405d42ec12e01fa4a445728326" +name = "tokio-tungstenite" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", "futures-util", - "hashbrown 0.15.5", - "pin-project-lite", - "real_tokio", - "slab", + "log", + "tokio", + "tungstenite", ] [[package]] @@ -10073,7 +9720,6 @@ dependencies = [ "futures-core", "futures-io", "futures-sink", - "futures-util", "pin-project-lite", "tokio", ] @@ -10088,180 +9734,123 @@ dependencies = [ ] [[package]] -name = "toml_datetime" -version = "0.6.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" -dependencies = [ - "serde", -] - -[[package]] -name = "toml_edit" -version = "0.22.27" +name = "toml" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" +checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" dependencies = [ - "indexmap 2.11.1", "serde", "serde_spanned", - "toml_datetime", - "toml_write", - "winnow", + "toml_datetime 0.6.11", + "toml_edit 0.19.15", ] [[package]] -name = "toml_write" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" - -[[package]] -name = "tonic" -version = "0.12.3" +name = "toml_datetime" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" dependencies = [ - "async-stream", - "async-trait", - "axum 0.7.9", - "base64 0.22.1", - "bytes", - "h2", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "prost", - "socket2 0.5.10", - "tokio", - "tokio-stream", - "tower 0.4.13", - "tower-layer", - "tower-service", - "tracing", + "serde", ] [[package]] -name = "tonic" -version = "0.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e581ba15a835f4d9ea06c55ab1bd4dce26fc53752c69a04aac00703bfb49ba9" -dependencies = [ - "async-trait", - "axum 0.8.4", - "base64 0.22.1", - "bytes", - "h2", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "hyper", - "hyper-timeout", - "hyper-util", - "percent-encoding", - "pin-project", - "prost", - "socket2 0.5.10", - "tokio", - "tokio-rustls", - "tokio-stream", - "tower 0.5.2", - "tower-layer", - "tower-service", - "tracing", - "webpki-roots 0.26.11", - "zstd 0.13.3", +name = "toml_datetime" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a197c0ec7d131bfc6f7e82c8442ba1595aeab35da7adbf05b6b73cd06a16b6be" +dependencies = [ + "serde_core", ] [[package]] -name = "tonic-build" -version = "0.13.1" +name = "toml_edit" +version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac6f67be712d12f0b41328db3137e0d0757645d8904b4cb7d51cd9c2279e847" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "prettyplease", - "proc-macro2", - "prost-build", - "prost-types", - "quote", - "syn 2.0.106", + "indexmap 2.11.3", + "serde", + "serde_spanned", + "toml_datetime 0.6.11", + "winnow 0.5.40", ] [[package]] -name = "tonic-health" -version = "0.13.1" +name = "toml_edit" +version = "0.23.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb87334d340313fefa513b6e60794d44a86d5f039b523229c99c323e4e19ca4b" +checksum = "c2ad0b7ae9cfeef5605163839cb9221f453399f15cfb5c10be9885fcf56611f9" dependencies = [ - "prost", - "tokio", - "tokio-stream", - "tonic 0.13.1", + "indexmap 2.11.3", + "toml_datetime 0.7.1", + "toml_parser", + "winnow 0.7.13", ] [[package]] -name = "tonic-reflection" -version = "0.13.1" +name = "toml_parser" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9687bd5bfeafebdded2356950f278bba8226f0b32109537c4253406e09aafe1" +checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10" dependencies = [ - "prost", - "prost-types", - "tokio", - "tokio-stream", - "tonic 0.13.1", + "winnow 0.7.13", ] [[package]] -name = "tonic-rustls" -version = "0.2.0" +name = "tonic" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "733d45643fe455d5e4cc3a469537063248dddc166c7acfb406bd0c9054c2fd10" +checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" dependencies = [ "async-stream", + "async-trait", + "axum", + "base64 0.22.1", "bytes", - "h2", + "flate2", + "h2 0.4.12", "http 1.3.1", "http-body 1.0.1", "http-body-util", - "hyper", + "hyper 1.7.0", "hyper-timeout", "hyper-util", + "percent-encoding", "pin-project", + "prost", + "rustls-native-certs", + "rustls-pemfile 2.2.0", "socket2 0.5.10", "tokio", - "tokio-rustls", + "tokio-rustls 0.26.3", "tokio-stream", - "tonic 0.13.1", - "tower 0.5.2", + "tower 0.4.13", "tower-layer", "tower-service", "tracing", + "zstd", ] [[package]] -name = "tonic-web" -version = "0.13.1" +name = "tonic-reflection" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "774cad0f35370f81b6c59e3a1f5d0c3188bdb4a2a1b8b7f0921c860bfbd3aec6" +checksum = "878d81f52e7fcfd80026b7fdb6a9b578b3c3653ba987f87f0dce4b64043cba27" dependencies = [ - "base64 0.22.1", - "bytes", - "http 1.3.1", - "http-body 1.0.1", - "pin-project", + "prost", + "prost-types", + "tokio", "tokio-stream", - "tonic 0.13.1", - "tower-layer", - "tower-service", - "tracing", + "tonic", ] +[[package]] +name = "topological-sort" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea68304e134ecd095ac6c3574494fc62b909f416c4fca77e440530221e549d3d" + [[package]] name = "tower" version = "0.4.13" @@ -10270,14 +9859,13 @@ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" dependencies = [ "futures-core", "futures-util", - "hdrhistogram", "indexmap 1.9.3", "pin-project", "pin-project-lite", "rand 0.8.5", "slab", "tokio", - "tokio-util 0.7.16", + "tokio-util", "tower-layer", "tower-service", "tracing", @@ -10291,63 +9879,8 @@ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" dependencies = [ "futures-core", "futures-util", - "hdrhistogram", - "indexmap 2.11.1", - "pin-project-lite", - "slab", - "sync_wrapper", - "tokio", - "tokio-util 0.7.16", - "tower-layer", - "tower-service", - "tracing", -] - -[[package]] -name = "tower-http" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" -dependencies = [ - "async-compression", - "base64 0.21.7", - "bitflags 2.9.4", - "bytes", - "futures-core", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "http-body-util", - "http-range-header", - "httpdate", - "iri-string", - "mime", - "mime_guess", - "percent-encoding", - "pin-project-lite", - "tokio", - "tokio-util 0.7.16", - "tower 0.4.13", - "tower-layer", - "tower-service", - "tracing", - "uuid", -] - -[[package]] -name = "tower-http" -version = "0.6.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" -dependencies = [ - "bitflags 2.9.4", - "bytes", - "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "iri-string", "pin-project-lite", - "tower 0.5.2", + "sync_wrapper 1.0.2", "tower-layer", "tower-service", ] @@ -10376,18 +9909,6 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-appender" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" -dependencies = [ - "crossbeam-channel", - "thiserror 1.0.69", - "time", - "tracing-subscriber", -] - [[package]] name = "tracing-attributes" version = "0.1.30" @@ -10421,30 +9942,21 @@ dependencies = [ ] [[package]] -name = "tracing-opentelemetry" -version = "0.28.0" +name = "tracing-serde" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" +checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" dependencies = [ - "js-sys", - "once_cell", - "opentelemetry", - "opentelemetry_sdk", - "smallvec", - "tracing", + "serde", "tracing-core", - "tracing-log", - "tracing-subscriber", - "web-time", ] [[package]] -name = "tracing-serde" -version = "0.2.0" +name = "tracing-subscriber" +version = "0.2.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" +checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" dependencies = [ - "serde", "tracing-core", ] @@ -10463,7 +9975,6 @@ dependencies = [ "sharded-slab", "smallvec", "thread_local", - "time", "tracing", "tracing-core", "tracing-log", @@ -10482,10 +9993,14 @@ dependencies = [ ] [[package]] -name = "treeline" -version = "0.1.0" +name = "triomphe" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41" +checksum = "ef8f7726da4807b58ea5c96fdc122f80702030edc33b35aff9190a51148ccc85" +dependencies = [ + "serde", + "stable_deref_trait", +] [[package]] name = "try-lock" @@ -10493,174 +10008,228 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +[[package]] +name = "try_match" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b065c869a3f832418e279aa4c1d7088f9d5d323bde15a60a08e20c2cd4549082" +dependencies = [ + "try_match_inner", +] + +[[package]] +name = "try_match_inner" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9c81686f7ab4065ccac3df7a910c4249f8c0f3fb70421d6ddec19b9311f63f9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.106", +] + +[[package]] +name = "tui" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1" +dependencies = [ + "bitflags 1.3.2", + "cassowary", + "crossterm 0.25.0", + "unicode-segmentation", + "unicode-width", +] + [[package]] name = "tungstenite" -version = "0.26.2" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" +checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1" dependencies = [ + "byteorder", "bytes", "data-encoding", "http 1.3.1", "httparse", "log", - "rand 0.9.2", + "rand 0.8.5", "sha1", - "thiserror 2.0.16", + "thiserror 1.0.69", + "url", "utf-8", ] [[package]] -name = "twox-hash" -version = "1.6.3" +name = "typed-arena" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" -dependencies = [ - "cfg-if", - "rand 0.8.5", - "static_assertions", -] +checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" [[package]] -name = "typed-store" -version = "0.4.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "typenum" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" + +[[package]] +name = "typeshare" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19be0f411120091e76e13e5a0186d8e2bcc3e7e244afdb70152197f1a8486ceb" dependencies = [ - "async-trait", - "backoff", - "bcs", - "bincode", - "collectable", - "eyre", - "fastcrypto", - "fdlimit", - "hdrhistogram", - "itertools 0.13.0", - "msim", - "mysten-common", - "mysten-metrics", - "once_cell", - "prometheus", - "rand 0.8.5", - "rocksdb", + "chrono", "serde", - "sui-macros", - "tap", - "thiserror 1.0.69", - "tokio", - "tracing", - "typed-store-derive", - "typed-store-error", - "typed-store-workspace-hack", + "serde_json", + "typeshare-annotation", ] [[package]] -name = "typed-store-derive" -version = "0.3.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "typeshare-annotation" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a615d6c2764852a2e88a4f16e9ce1ea49bb776b5872956309e170d63a042a34f" dependencies = [ - "itertools 0.13.0", - "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.106", ] [[package]] -name = "typed-store-error" -version = "0.4.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "tz-rs" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33851b15c848fad2cf4b105c6bb66eb9512b6f6c44a4b13f57c53c73c707e2b4" dependencies = [ - "serde", - "thiserror 1.0.69", + "const_fn", ] [[package]] -name = "typed-store-workspace-hack" -version = "0.0.0" -source = "git+https://github.com/fuzzland/sui.git?branch=mainnet-v1.55.0-dryrun-with-tracer#f98be39f408606f31d94f6f9f1d9bbd8e27394f1" +name = "tzdb" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c420cf38925a5a6a3dc56e1c8f56f17a5b7755edd5adeb7cdab8b847e1fbe2af" dependencies = [ - "cc", - "lazy_static", - "libc", - "memchr", - "nom", - "proc-macro2", - "quote", - "regex", - "regex-syntax 0.7.5", - "syn 2.0.106", - "zstd-sys", + "iana-time-zone", + "tz-rs", + "tzdb_data", + "utcnow", ] [[package]] -name = "typeid" -version = "1.0.3" +name = "tzdb_data" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d69ad05cd8412d9f6e7df6ac91e50ea557687cc1b734339cb6742e547704663" +dependencies = [ + "tz-rs", +] + +[[package]] +name = "ucd-trie" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" +checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971" [[package]] -name = "typenum" -version = "1.18.0" +name = "uint" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + +[[package]] +name = "uncased" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697" +dependencies = [ + "version_check", +] + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" [[package]] -name = "typeshare" -version = "1.0.4" +name = "unic-segment" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19be0f411120091e76e13e5a0186d8e2bcc3e7e244afdb70152197f1a8486ceb" +checksum = "e4ed5d26be57f84f176157270c112ef57b86debac9cd21daaabbe56db0f88f23" dependencies = [ - "chrono", - "serde", - "serde_json", - "typeshare-annotation", + "unic-ucd-segment", ] [[package]] -name = "typeshare-annotation" -version = "1.0.4" +name = "unic-ucd-segment" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a615d6c2764852a2e88a4f16e9ce1ea49bb776b5872956309e170d63a042a34f" +checksum = "2079c122a62205b421f499da10f3ee0f7697f012f55b675e002483c73ea34700" dependencies = [ - "quote", - "syn 2.0.106", + "unic-char-property", + "unic-char-range", + "unic-ucd-version", ] [[package]] -name = "uint" -version = "0.9.5" +name = "unic-ucd-version" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" dependencies = [ - "byteorder", - "crunchy", - "hex", - "static_assertions", + "unic-common", ] [[package]] -name = "unarray" -version = "0.1.4" +name = "unicase" +version = "2.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" +checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" [[package]] -name = "unescape" -version = "0.1.0" +name = "unicode-bidi" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccb97dac3243214f8d8507998906ca3e2e0b900bf9bf4870477f125b82e68f6e" +checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5" [[package]] -name = "unicase" -version = "2.8.1" +name = "unicode-ident" +version = "1.0.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539" +checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" [[package]] -name = "unicode-ident" -version = "1.0.18" +name = "unicode-linebreak" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" +checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" [[package]] name = "unicode-normalization" @@ -10683,12 +10252,6 @@ version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" -[[package]] -name = "unicode-width" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" - [[package]] name = "unicode-xid" version = "0.2.6" @@ -10706,10 +10269,16 @@ dependencies = [ ] [[package]] -name = "unsigned-varint" -version = "0.7.2" +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + +[[package]] +name = "untrusted" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" [[package]] name = "untrusted" @@ -10717,6 +10286,23 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" +[[package]] +name = "ureq" +version = "1.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b8b063c2d59218ae09f22b53c42eaad0d53516457905f5235ca4bc9e99daa71" +dependencies = [ + "base64 0.13.1", + "chunked_transfer", + "log", + "native-tls", + "once_cell", + "qstring", + "serde", + "serde_json", + "url", +] + [[package]] name = "url" version = "2.5.7" @@ -10724,11 +10310,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" dependencies = [ "form_urlencoded", - "idna", + "idna 1.1.0", "percent-encoding", "serde", ] +[[package]] +name = "urlencoding" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" + +[[package]] +name = "utcnow" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d1b903f7711bad0f9c1716c1497bf3db4289c53a2985ba42ac2f2e04047bd9" +dependencies = [ + "const_fn", + "errno", + "js-sys", + "libc", + "rustix 0.38.44", + "rustversion", + "wasi 0.11.1+wasi-snapshot-preview1", + "wasm-bindgen", + "winapi 0.3.9", +] + [[package]] name = "utf-8" version = "0.7.6" @@ -10747,18 +10356,6 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" -[[package]] -name = "uuid" -version = "1.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" -dependencies = [ - "getrandom 0.3.3", - "js-sys", - "rand 0.9.2", - "wasm-bindgen", -] - [[package]] name = "valuable" version = "0.1.1" @@ -10783,26 +10380,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] -name = "version_check" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - -[[package]] -name = "versions" -version = "4.1.0" +name = "vec_map" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee97e1d97bd593fb513912a07691b742361b3dd64ad56f2c694ea2dbfe0665d3" -dependencies = [ - "itertools 0.10.5", - "nom", -] +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" [[package]] -name = "vfs" -version = "0.10.0" +name = "version_check" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e4fe92cfc1bad19c19925d5eee4b30584dbbdee4ff10183b261acccbef74e2d" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "wait-timeout" @@ -10832,6 +10419,37 @@ dependencies = [ "try-lock", ] +[[package]] +name = "warp" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "headers 0.3.9", + "http 0.2.12", + "hyper 0.14.32", + "log", + "mime", + "mime_guess", + "multer 2.1.0", + "percent-encoding", + "pin-project", + "rustls-pemfile 2.2.0", + "scoped-tls", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tokio-rustls 0.25.0", + "tokio-tungstenite", + "tokio-util", + "tower-service", + "tracing", +] + [[package]] name = "wasi" version = "0.9.0+wasi-snapshot-preview1" @@ -10846,18 +10464,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] name = "wasi" -version = "0.14.5+wasi-0.2.4" +version = "0.14.7+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4494f6290a82f5fe584817a676a34b9d6763e8d9d18204009fb31dceca98fd4" +checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" dependencies = [ "wasip2", ] [[package]] name = "wasip2" -version = "1.0.0+wasi-0.2.4" +version = "1.0.1+wasi-0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03fa2761397e5bd52002cd7e73110c71af2109aca4e521a9f40473fe685b0a24" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" dependencies = [ "wit-bindgen", ] @@ -10870,9 +10488,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" [[package]] name = "wasm-bindgen" -version = "0.2.101" +version = "0.2.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b" +checksum = "ab10a69fbd0a177f5f649ad4d8d3305499c42bab9aef2f7ff592d0ec8f833819" dependencies = [ "cfg-if", "once_cell", @@ -10883,9 +10501,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.101" +version = "0.2.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb" +checksum = "0bb702423545a6007bbc368fde243ba47ca275e549c8a28617f56f6ba53b1d1c" dependencies = [ "bumpalo", "log", @@ -10897,9 +10515,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.51" +version = "0.4.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca85039a9b469b38336411d6d6ced91f3fc87109a2a27b0c197663f5144dffe" +checksum = "a0b221ff421256839509adbb55998214a70d829d3a28c69b4a6672e9d2a42f67" dependencies = [ "cfg-if", "js-sys", @@ -10910,9 +10528,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.101" +version = "0.2.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d" +checksum = "fc65f4f411d91494355917b605e1480033152658d71f722a90647f56a70c88a0" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -10920,9 +10538,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.101" +version = "0.2.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa" +checksum = "ffc003a991398a8ee604a401e194b6b3a39677b3173d6e74495eb51b82e99a32" dependencies = [ "proc-macro2", "quote", @@ -10933,9 +10551,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.101" +version = "0.2.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1" +checksum = "293c37f4efa430ca14db3721dfbe48d8c33308096bd44d80ebaa775ab71ba1cf" dependencies = [ "unicode-ident", ] @@ -10955,59 +10573,19 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.78" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77e4b637749ff0d92b8fad63aa1f7cff3cbe125fd49c175cd6345e7272638b12" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "web-time" -version = "1.1.0" +version = "0.3.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +checksum = "fbe734895e869dc429d78c4b433f8d17d95f8d05317440b4fad5ab2d33e596dc" dependencies = [ "js-sys", "wasm-bindgen", ] -[[package]] -name = "webpki-root-certs" -version = "0.26.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" -dependencies = [ - "webpki-root-certs 1.0.2", -] - -[[package]] -name = "webpki-root-certs" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e4ffd8df1c57e87c325000a3d6ef93db75279dc3a231125aac571650f22b12a" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "webpki-roots" -version = "0.26.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9" -dependencies = [ - "webpki-roots 1.0.2", -] - [[package]] name = "webpki-roots" -version = "1.0.2" +version = "0.25.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" -dependencies = [ - "rustls-pki-types", -] +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "whoami" @@ -11026,6 +10604,18 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" +[[package]] +name = "wildmatch" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39b7d07a236abaef6607536ccfaf19b396dbe3f5110ddb73d39f4562902ed382" + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" + [[package]] name = "winapi" version = "0.3.9" @@ -11057,28 +10647,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -[[package]] -name = "windows" -version = "0.61.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" -dependencies = [ - "windows-collections", - "windows-core", - "windows-future", - "windows-link 0.1.3", - "windows-numerics", -] - -[[package]] -name = "windows-collections" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" -dependencies = [ - "windows-core", -] - [[package]] name = "windows-core" version = "0.61.2" @@ -11092,17 +10660,6 @@ dependencies = [ "windows-strings", ] -[[package]] -name = "windows-future" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" -dependencies = [ - "windows-core", - "windows-link 0.1.3", - "windows-threading", -] - [[package]] name = "windows-implement" version = "0.60.0" @@ -11137,16 +10694,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65" -[[package]] -name = "windows-numerics" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" -dependencies = [ - "windows-core", - "windows-link 0.1.3", -] - [[package]] name = "windows-result" version = "0.3.4" @@ -11282,15 +10829,6 @@ dependencies = [ "windows_x86_64_msvc 0.53.0", ] -[[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_aarch64_gnullvm" version = "0.42.2" @@ -11471,6 +11009,15 @@ version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + [[package]] name = "winnow" version = "0.7.13" @@ -11480,11 +11027,21 @@ dependencies = [ "memchr", ] +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + [[package]] name = "wit-bindgen" -version = "0.45.1" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c573471f125075647d03df72e026074b7203790d41351cd6edc96f46bcccd36" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" [[package]] name = "writeable" @@ -11508,39 +11065,32 @@ dependencies = [ ] [[package]] -name = "x509-parser" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" +name = "x25519-dalek" +version = "1.2.0" +source = "git+https://github.com/aptos-labs/x25519-dalek?rev=b9cdbaf36bf2a83438d9f660e5a708c82ed60d8e#b9cdbaf36bf2a83438d9f660e5a708c82ed60d8e" dependencies = [ - "asn1-rs", - "data-encoding", - "der-parser", - "lazy_static", - "nom", - "oid-registry", - "ring", - "rusticata-macros", - "thiserror 2.0.16", - "time", + "curve25519-dalek", + "rand_core 0.5.1", + "zeroize", ] [[package]] -name = "yaml-rust" -version = "0.4.5" +name = "xattr" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +checksum = "af3a19837351dc82ba89f8a125e22a3c475f05aba604acc023d62b2739ae2909" dependencies = [ - "linked-hash-map", + "libc", + "rustix 1.1.2", ] [[package]] -name = "yasna" -version = "0.5.2" +name = "yaml-rust" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" dependencies = [ - "time", + "linked-hash-map", ] [[package]] @@ -11564,7 +11114,18 @@ dependencies = [ "proc-macro2", "quote", "syn 2.0.106", - "synstructure 0.13.2", + "synstructure", +] + +[[package]] +name = "z3tracer" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b52f3d4b300ffa9400cd78caebaaa6ef5a0189d08ec134624e2b8f3890b6e0" +dependencies = [ + "smt2parser", + "structopt", + "thiserror 1.0.69", ] [[package]] @@ -11605,7 +11166,7 @@ dependencies = [ "proc-macro2", "quote", "syn 2.0.106", - "synstructure 0.13.2", + "synstructure", ] [[package]] @@ -11661,32 +11222,13 @@ dependencies = [ "syn 2.0.106", ] -[[package]] -name = "zstd" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" -dependencies = [ - "zstd-safe 6.0.6", -] - [[package]] name = "zstd" version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "zstd-safe 7.2.4", -] - -[[package]] -name = "zstd-safe" -version = "6.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" -dependencies = [ - "libc", - "zstd-sys", + "zstd-safe", ] [[package]] @@ -11704,7 +11246,6 @@ version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ - "bindgen 0.72.1", "cc", "pkg-config", ] diff --git a/Cargo.toml b/Cargo.toml index 29e2988..ffdd35c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,11 +2,17 @@ resolver = "2" members = [ - "bin/*", + # "bin/fuzzer", + + + "crates/executor", "crates/fuzzer-core", - "crates/sui-tracer", - "crates/sui-fuzzer", - "crates/sui-simulator", + + # "crates/sui-tracer", + # "crates/sui-fuzzer", + # "crates/sui-simulator", + + "crates/aptos-executor", ] [workspace.package] @@ -14,6 +20,8 @@ edition = "2021" version = "0.1.0" [workspace.dependencies] +executor = { path = "crates/executor" } + async-trait = "0.1" anyhow = "1.0" clap = { version = "4.5", features = ["derive"] } @@ -29,27 +37,75 @@ eyre = "0.6" thiserror = "2.0" hex = "0.4" +### For remote development + # Sui Specific dependencies -sui-sdk = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-types = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-config = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-json-rpc = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-json-rpc-types = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-core = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-execution = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer", features = [ +sui-sdk = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-types = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-config = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-json-rpc = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-json-rpc-types = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-core = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-execution = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2", features = [ "tracing", ] } -sui-storage = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-protocol-config = { git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } +sui-storage = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-protocol-config = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-adapter-latest = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-natives-latest = { git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } # Rename to avoid conflict with aptos move crates -sui-move-core-types = { package = "move-core-types", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-vm-types = { package = "move-vm-types", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-binary-format = { package = "move-binary-format", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-trace-format = { package = "move-trace-format", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-bytecode-utils = { package = "move-bytecode-utils", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-vm-config = { package = "move-vm-config", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } -sui-move-vm-runtime = { package = "move-vm-runtime", git = "https://github.com/fuzzland/sui.git", branch = "mainnet-v1.55.0-dryrun-with-tracer" } +sui-move-core-types = { package = "move-core-types", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-vm-types = { package = "move-vm-types", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-binary-format = { package = "move-binary-format", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-trace-format = { package = "move-trace-format", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-bytecode-utils = { package = "move-bytecode-utils", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-vm-config = { package = "move-vm-config", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } +sui-move-vm-runtime = { package = "move-vm-runtime", git = "https://github.com/fuzzland/sui.git", rev = "6b7b1c2" } + +### For local development +# # Sui Specific dependencies +# sui-sdk = { path = "../sui/crates/sui-sdk" } +# sui-types = { path = "../sui/crates/sui-types" } +# sui-config = { path = "../sui/crates/sui-config" } +# sui-json-rpc = { path = "../sui/crates/sui-json-rpc" } +# sui-json-rpc-types = { path = "../sui/crates/sui-json-rpc-types" } +# sui-core = { path = "../sui/crates/sui-core" } +# sui-execution = { path = "../sui/sui-execution", features = ["tracing"] } +# sui-storage = { path = "../sui/crates/sui-storage" } +# sui-protocol-config = { path = "../sui/crates/sui-protocol-config" } +# sui-adapter-latest = { path = "../sui/sui-execution/latest/sui-adapter" } +# sui-move-natives-latest = { path = "../sui/sui-execution/latest/sui-move-natives" } +# # Rename to avoid conflict with aptos move crates +# sui-move-core-types = { package = "move-core-types", path = "../sui/external-crates/move/crates/move-core-types" } +# sui-move-vm-types = { package = "move-vm-types", path = "../sui/external-crates/move/crates/move-vm-types" } +# sui-move-binary-format = { package = "move-binary-format", path = "../sui/external-crates/move/crates/move-binary-format" } +# sui-move-trace-format = { package = "move-trace-format", path = "../sui/external-crates/move/crates/move-trace-format" } +# sui-move-bytecode-utils = { package = "move-bytecode-utils", path = "../sui/external-crates/move/crates/move-bytecode-utils" } +# sui-move-vm-config = { package = "move-vm-config", path = "../sui/external-crates/move/crates/move-vm-config" } +# sui-move-vm-runtime = { package = "move-vm-runtime", path = "../sui/external-crates/move/crates/move-vm-runtime" } + schemars = "1.0" # Aptos Specific dependencies aptos-config = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-db = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-executor = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-storage-interface = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-types = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-vm = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-vm-genesis = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-vm-environment = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-vm-logging = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-vm-types = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-aggregator = { git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-move-table-extension = { package = "move-table-extension", git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-move-core-types = { package = "move-core-types", git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-move-binary-format = { package = "move-binary-format", git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +bytes = "=1.10.1" +aptos-move-vm-types = { package = "move-vm-types", git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } +aptos-move-vm-runtime = { package = "move-vm-runtime", git = "https://github.com/fuzzland/aptos-core", rev = "1e5097063214a84f794ed2373f66a9d325bf6ca4" } + +# allow transcript labels to come from non-Rust code +# https://github.com/aptos-labs/aptos-core/issues/9340 +[patch.crates-io] +merlin = { git = "https://github.com/aptos-labs/merlin" } \ No newline at end of file diff --git a/crates/aptos-executor/Cargo.toml b/crates/aptos-executor/Cargo.toml index 3d0d05a..d05a227 100644 --- a/crates/aptos-executor/Cargo.toml +++ b/crates/aptos-executor/Cargo.toml @@ -4,4 +4,29 @@ version = "0.1.0" edition = "2024" [dependencies] -aptos-config = { workspace = true } \ No newline at end of file +# Core Aptos dependencies for state management and execution +aptos-config = { workspace = true } +aptos-db = { workspace = true } +aptos-executor = { workspace = true } +aptos-storage-interface = { workspace = true } +aptos-types = { workspace = true } +aptos-vm = { workspace = true } +aptos-vm-genesis = { workspace = true } +aptos-vm-environment = { workspace = true } +aptos-vm-logging = { workspace = true } +aptos-vm-types = { workspace = true } +aptos-aggregator = { workspace = true } +aptos-move-table-extension = { workspace = true } +aptos-move-core-types = { workspace = true } +aptos-move-binary-format = { workspace = true } +bytes = { workspace = true } +aptos-move-vm-types = { workspace = true } +aptos-move-vm-runtime = { workspace = true } + +# Basic utilities +serde = { version = "1.0", features = ["derive"] } +serde_yaml = "0.9" +bcs = "0.1" + +anyhow = { workspace = true } +executor = { workspace = true } \ No newline at end of file diff --git a/crates/aptos-executor/src/aptos_custom_state.rs b/crates/aptos-executor/src/aptos_custom_state.rs new file mode 100644 index 0000000..a7ad56d --- /dev/null +++ b/crates/aptos-executor/src/aptos_custom_state.rs @@ -0,0 +1,396 @@ +use std::collections::{BTreeMap, HashMap, HashSet}; +use std::sync::Arc; + +use aptos_aggregator::bounded_math::SignedU128; +use aptos_aggregator::resolver::{TAggregatorV1View, TDelayedFieldView}; +use aptos_aggregator::types::{DelayedFieldValue, DelayedFieldsSpeculativeError}; +use aptos_move_binary_format::CompiledModule; +use aptos_move_binary_format::errors::{PartialVMError, PartialVMResult, VMResult}; +use aptos_move_binary_format::file_format::CompiledScript; +use aptos_move_core_types::account_address::AccountAddress; +use aptos_move_core_types::identifier::IdentStr; +use aptos_move_core_types::language_storage::{ModuleId, StructTag}; +use aptos_move_core_types::metadata::Metadata; +use aptos_move_core_types::value::MoveTypeLayout; +use aptos_move_table_extension::{TableHandle, TableResolver}; +use aptos_move_vm_runtime::{Module, ModuleStorage, RuntimeEnvironment, Script, WithRuntimeEnvironment}; +use aptos_move_vm_types::code::{Code, ScriptCache}; +use aptos_move_vm_types::delayed_values::delayed_field_id::DelayedFieldID; +use aptos_move_vm_types::resolver::ResourceResolver; +use aptos_types::error::{PanicError, PanicOr}; +use aptos_types::on_chain_config::ConfigStorage; +use aptos_types::state_store::StateViewId; +use aptos_types::state_store::errors::StateViewError; +use aptos_types::state_store::state_key::StateKey; +use aptos_types::state_store::state_storage_usage::StateStorageUsage; +use aptos_types::state_store::state_value::{StateValue, StateValueMetadata}; +use aptos_vm::move_vm_ext::{AptosMoveResolver, AsExecutorView, AsResourceGroupView, ResourceGroupResolver}; +use aptos_vm_types::module_and_script_storage::module_storage::AptosModuleStorage; +use aptos_vm_types::resolver::{ + BlockSynchronizationKillSwitch, ExecutorView, ResourceGroupSize, ResourceGroupView, StateStorageView, + TResourceGroupView, TResourceView, +}; +use bytes::Bytes; + +#[derive(Clone)] +pub struct AptosCustomState { + kv_state: HashMap, + tables: HashMap<(TableHandle, Vec), Bytes>, + modules: HashMap, + scripts_deser: HashMap<[u8; 32], Arc>, + scripts_verified: HashMap<[u8; 32], Arc