diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..73c4c35 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,3 @@ +[build] +# aptos-core requirements to access tokio’s experimental APIs. +rustflags = ["--cfg", "tokio_unstable", "-A", "mismatched_lifetime_syntaxes"] \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index e84904c..4dbf41a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,6 +12,16 @@ dependencies = [ "regex", ] +[[package]] +name = "abstract-domain-derive" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "addchain" version = "0.2.0" @@ -44,7 +54,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common", + "crypto-common 0.1.7", "generic-array", ] @@ -88,6 +98,17 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.16", + "once_cell", + "version_check", +] + [[package]] name = "ahash" version = "0.8.12" @@ -95,7 +116,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", + "getrandom 0.3.4", "once_cell", + "serde", "version_check", "zerocopy", ] @@ -171,15 +194,15 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "alloy-primitives" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "355bf68a433e0fd7f7d33d5a9fc2583fde70bf5c530f63b80845f8da5505cf28" +checksum = "f6a0fb18dd5fb43ec5f0f6a20be1ce0287c79825827de5744afaa6c957737c33" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", - "derive_more 2.0.1", + "derive_more 2.1.1", "foldhash 0.2.0", "hashbrown 0.16.1", "indexmap 2.12.1", @@ -189,6 +212,7 @@ dependencies = [ "paste", "proptest", "rand 0.9.2", + "rapidhash 4.2.0", "ruint", "rustc-hash 2.1.1", "serde", @@ -202,10 +226,22 @@ version = "0.3.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f70d83b765fdc080dbcd4f4db70d8d23fe4761f2f02ebfa9146b833900634b4" dependencies = [ - "arrayvec", + "arrayvec 0.7.6", "bytes", ] +[[package]] +name = "ambassador" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e68de4cdc6006162265d0957edb4a860fe4e711b1dc17a5746fd95f952f08285" +dependencies = [ + "itertools 0.10.5", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -224,7 +260,7 @@ dependencies = [ "async-trait", "bincode 1.3.3", "bytes", - "ed25519", + "ed25519 2.2.3", "futures", "hex", "http", @@ -235,7 +271,7 @@ dependencies = [ "quinn-proto", "rand 0.8.5", "rcgen", - "ring", + "ring 0.17.14", "rustls", "rustls-webpki", "serde", @@ -257,7 +293,7 @@ source = "git+https://github.com/mystenlabs/anemo.git?rev=9c52c3c7946532163a7912 dependencies = [ "anemo", "bytes", - "dashmap", + "dashmap 5.5.3", "futures", "governor", "nonzero_ext", @@ -277,6 +313,21 @@ dependencies = [ "unicode-width", ] +[[package]] +name = "ansi-escapes" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3c0daaaae24df5995734b689627f8fa02101bc5bbc768be3055b66a010d7af" + +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +dependencies = [ + "winapi 0.3.9", +] + [[package]] name = "anstream" version = "0.6.21" @@ -328,28 +379,1318 @@ dependencies = [ ] [[package]] -name = "antithesis_sdk" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dafc0460f582169b1414074fd82bedbda60456fb4df0a78dc7fef1306e732ea3" -dependencies = [ - "libc", - "libloading", - "linkme", +name = "antithesis_sdk" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dafc0460f582169b1414074fd82bedbda60456fb4df0a78dc7fef1306e732ea3" +dependencies = [ + "libc", + "libloading", + "linkme", + "once_cell", + "rand 0.8.5", + "rustc_version_runtime", + "serde", + "serde_json", +] + +[[package]] +name = "anyhow" +version = "1.0.100" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +dependencies = [ + "backtrace", +] + +[[package]] +name = "aptos-accumulator" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-crypto", + "aptos-types", +] + +[[package]] +name = "aptos-aggregator" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-types", + "bcs 0.1.4", + "claims", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "triomphe", +] + +[[package]] +name = "aptos-bitvec" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "serde", + "serde_bytes", +] + +[[package]] +name = "aptos-block-executor" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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", + "dashmap 7.0.0-rc2", + "derivative", + "fail 0.5.1", + "hashbrown 0.14.5", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num_cpus", + "once_cell", + "parking_lot 0.12.5", + "rand 0.7.3", + "rayon", + "triomphe", +] + +[[package]] +name = "aptos-block-partitioner" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-crypto", + "aptos-logger", + "aptos-metrics-core", + "aptos-types", + "bcs 0.1.4", + "clap 4.5.53", + "dashmap 7.0.0-rc2", + "itertools 0.13.0", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "rand 0.7.3", + "rayon", + "serde", + "tikv-jemallocator", +] + +[[package]] +name = "aptos-build-info" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "shadow-rs", +] + +[[package]] +name = "aptos-cached-packages" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-framework", + "aptos-package-builder", + "aptos-types", + "bcs 0.1.4", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", +] + +[[package]] +name = "aptos-config" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 = "aptos-consensus-types" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.5.1", + "futures", + "itertools 0.13.0", + "mini-moka", + "mirai-annotations", + "once_cell", + "rand 0.7.3", + "rayon", + "serde", + "tokio", +] + +[[package]] +name = "aptos-crypto" +version = "0.0.3" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aes-gcm", + "anyhow", + "aptos-crypto-derive", + "arbitrary", + "ark-bls12-381", + "ark-bn254 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-groth16 0.5.0", + "ark-poly 0.5.0", + "ark-relations 0.5.1", + "ark-serialize 0.5.0", + "ark-snark 0.5.1", + "ark-std 0.5.0", + "base64 0.13.1", + "bcs 0.1.4", + "bls12_381", + "blst", + "blstrs", + "bulletproofs", + "bytes", + "curve25519-dalek", + "curve25519-dalek-ng", + "digest 0.9.0", + "dudect-bencher", + "ed25519-dalek", + "ff 0.13.1", + "group 0.13.0", + "hex", + "hkdf 0.10.0", + "itertools 0.13.0", + "libsecp256k1", + "merlin", + "more-asserts", + "neptune", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "once_cell", + "p256", + "pairing", + "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 0.9.1", + "signature 2.2.0", + "slh-dsa", + "static_assertions", + "thiserror 1.0.69", + "tiny-keccak", + "typenum", + "x25519-dalek", +] + +[[package]] +name = "aptos-crypto-derive" +version = "0.0.3" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "aptos-db" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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 0.16.2", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "rayon", + "serde", + "static_assertions", + "status-line", + "tokio", +] + +[[package]] +name = "aptos-db-indexer" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", +] + +[[package]] +name = "aptos-db-indexer-schemas" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-crypto", + "aptos-schemadb", + "aptos-storage-interface", + "aptos-types", + "bcs 0.1.4", + "byteorder", + "proptest", + "proptest-derive", + "serde", +] + +[[package]] +name = "aptos-dkg" +version = "0.2.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-runtimes", + "ark-bls12-381", + "ark-bn254 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "bcs 0.1.4", + "blst", + "blstrs", + "criterion", + "derive_more 0.99.20", + "ff 0.13.1", + "group 0.13.0", + "hex", + "merlin", + "more-asserts", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "pairing", + "rand 0.7.3", + "rand_core 0.5.1", + "rayon", + "serde", + "serde_bytes", + "sha3 0.9.1", + "static_assertions", +] + +[[package]] +name = "aptos-drop-helper" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-infallible", + "aptos-metrics-core", + "once_cell", + "threadpool", +] + +[[package]] +name = "aptos-dynamic-transaction-composer" +version = "0.1.4" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "bcs 0.1.4", + "getrandom 0.2.16", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", + "serde_bytes", + "wasm-bindgen", + "wasm-bindgen-futures", +] + +[[package]] +name = "aptos-executor" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-block-executor", + "aptos-consensus-types", + "aptos-crypto", + "aptos-drop-helper", + "aptos-executor-service", + "aptos-executor-types", + "aptos-experimental-runtimes", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "bcs 0.1.4", + "bytes", + "fail 0.5.1", + "itertools 0.13.0", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "rayon", + "serde", +] + +[[package]] +name = "aptos-executor-service" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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.53", + "crossbeam-channel", + "ctrlc", + "dashmap 7.0.0-rc2", + "itertools 0.13.0", + "num_cpus", + "once_cell", + "rayon", + "serde", + "thiserror 1.0.69", +] + +[[package]] +name = "aptos-executor-types" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.15.6", + "rayon", + "serde", + "thiserror 1.0.69", +] + +[[package]] +name = "aptos-experimental-layered-map" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "ahash 0.8.12", + "aptos-crypto", + "aptos-drop-helper", + "aptos-infallible", + "aptos-metrics-core", + "bitvec 1.0.1", + "itertools 0.13.0", + "once_cell", +] + +[[package]] +name = "aptos-experimental-runtimes" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-runtimes", + "core_affinity", + "libc", + "num_cpus", + "once_cell", + "rayon", +] + +[[package]] +name = "aptos-framework" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "bcs 0.1.4", + "better_any", + "blake2-rfc", + "bulletproofs", + "byteorder", + "clap 4.5.53", + "codespan-reporting", + "curve25519-dalek-ng", + "either", + "flate2", + "hex", + "itertools 0.13.0", + "legacy-move-compiler", + "libsecp256k1", + "log", + "merlin", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-compiler-v2", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-docgen 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-package 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-prover", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "move-prover-lab", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num-traits", + "once_cell", + "rand 0.7.3", + "rand_core 0.5.1", + "ripemd", + "serde", + "serde_bytes", + "sha2 0.10.9", + "sha2 0.9.9", + "sha3 0.9.1", + "siphasher 0.3.11", + "smallvec", + "tempfile", + "tiny-keccak", + "toml 0.7.8", + "triomphe", +] + +[[package]] +name = "aptos-gas-algebra" +version = "0.0.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "either", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", +] + +[[package]] +name = "aptos-gas-meter" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-logger", + "aptos-types", + "aptos-vm-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", +] + +[[package]] +name = "aptos-gas-schedule" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-algebra", + "aptos-global-constants", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "paste", + "rand 0.7.3", +] + +[[package]] +name = "aptos-global-constants" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" + +[[package]] +name = "aptos-infallible" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" + +[[package]] +name = "aptos-jellyfish-merkle" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 = "aptos-keygen" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-crypto", + "aptos-types", + "rand 0.7.3", +] + +[[package]] +name = "aptos-log-derive" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "aptos-logger" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-infallible", + "aptos-log-derive", + "backtrace", + "chrono", + "erased-serde 0.3.31", + "futures", + "hostname 0.3.1", + "once_cell", + "prometheus", + "serde", + "serde_json", + "strum 0.27.2", + "strum_macros 0.27.2", + "tokio", + "tracing", + "tracing-subscriber 0.3.22", +] + +[[package]] +name = "aptos-memory-usage-tracker" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-algebra", + "aptos-gas-meter", + "aptos-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", +] + +[[package]] +name = "aptos-metrics-core" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "once_cell", + "paste", + "prometheus", +] + +[[package]] +name = "aptos-move-stdlib" +version = "0.1.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-schedule", + "aptos-native-interface", + "aptos-types", + "bcs 0.1.4", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "sha2 0.9.9", + "sha3 0.9.1", + "smallvec", +] + +[[package]] +name = "aptos-mvhashmap" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-aggregator", + "aptos-infallible", + "aptos-types", + "aptos-vm-types", + "bytes", + "claims", + "crossbeam", + "dashmap 7.0.0-rc2", + "equivalent", + "fail 0.5.1", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", + "triomphe", +] + +[[package]] +name = "aptos-native-interface" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "smallvec", +] + +[[package]] +name = "aptos-node-resource-metrics" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-build-info", + "aptos-infallible", + "aptos-logger", + "aptos-metrics-core", + "cfg-if", + "once_cell", + "procfs", + "prometheus", + "rlimit", + "sysinfo", +] + +[[package]] +name = "aptos-package-builder" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-framework", + "itertools 0.13.0", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-package 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "tempfile", +] + +[[package]] +name = "aptos-protos" +version = "1.3.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "pbjson", + "prost 0.13.5", + "serde", + "tonic 0.12.3", +] + +[[package]] +name = "aptos-push-metrics" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-logger", + "aptos-metrics-core", + "rand 0.7.3", + "ureq", + "url", +] + +[[package]] +name = "aptos-resource-viewer" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-logger", + "aptos-types", + "aptos-vm", + "aptos-vm-environment", + "aptos-vm-logging", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-resource-viewer", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", +] + +[[package]] +name = "aptos-rocksdb-options" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-config", + "rocksdb", +] + +[[package]] +name = "aptos-runtimes" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "rayon", + "tokio", +] + +[[package]] +name = "aptos-schemadb" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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-builder" +version = "0.2.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-types", + "bcs 0.1.4", + "clap 4.5.53", + "heck 0.4.1", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "serde-generate", + "serde-reflection 0.3.5", + "serde_yaml 0.8.26", + "textwrap 0.15.2", +] + +[[package]] +name = "aptos-secure-net" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-logger", + "aptos-metrics-core", + "aptos-protos", + "bcs 0.1.4", + "crossbeam-channel", + "once_cell", + "serde", + "thiserror 1.0.69", + "tokio", + "tonic 0.12.3", + "tonic-reflection", +] + +[[package]] +name = "aptos-secure-storage" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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 = "aptos-short-hex-str" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "mirai-annotations", + "serde", + "static_assertions", + "thiserror 1.0.69", +] + +[[package]] +name = "aptos-speculative-state-helper" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-infallible", + "crossbeam", + "rayon", +] + +[[package]] +name = "aptos-storage-interface" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.12.5", + "proptest", + "proptest-derive", + "rand 0.7.3", + "rayon", + "serde", + "thiserror 1.0.69", +] + +[[package]] +name = "aptos-table-natives" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-gas-schedule", + "aptos-native-interface", + "aptos-types", + "better_any", + "bytes", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-table-extension", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "sha3 0.9.1", + "smallvec", + "triomphe", +] + +[[package]] +name = "aptos-temppath" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "hex", + "rand 0.7.3", +] + +[[package]] +name = "aptos-time-service" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-infallible", + "enum_dispatch", + "futures", + "pin-project", + "thiserror 1.0.69", + "tokio", +] + +[[package]] +name = "aptos-transaction-filters" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-crypto", + "aptos-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "rand 0.7.3", + "serde", + "serde_yaml 0.8.26", +] + +[[package]] +name = "aptos-types" +version = "0.0.3" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-bitvec", + "aptos-crypto", + "aptos-crypto-derive", + "aptos-dkg", + "aptos-infallible", + "arbitrary", + "ark-bn254 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-groth16 0.5.0", + "ark-relations 0.5.1", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "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", + "lru 0.16.2", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-table-extension", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num-bigint 0.3.3", + "num-derive", + "num-traits", + "once_cell", + "passkey-types 0.2.0", + "poem-openapi", + "poem-openapi-derive", + "proptest", + "proptest-derive", + "quick_cache", + "rand 0.7.3", + "rapidhash 1.4.0", + "rayon", + "ref-cast", + "ring 0.16.20", + "rsa 0.9.9", + "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 = "aptos-vault-client" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-crypto", + "base64 0.13.1", + "chrono", + "native-tls", + "once_cell", + "serde", + "serde_json", + "thiserror 1.0.69", + "ureq", +] + +[[package]] +name = "aptos-vm" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "aptos-aggregator", + "aptos-block-executor", + "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 0.5.0", + "ark-groth16 0.5.0", + "bcs 0.1.4", + "bytes", + "claims", + "crossbeam-channel", + "derive_more 0.99.20", + "fail 0.5.1", + "futures", + "hex", + "itertools 0.13.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-metrics", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num_cpus", + "once_cell", + "ouroboros 0.15.6", + "rand 0.7.3", + "rayon", + "serde", + "triomphe", +] + +[[package]] +name = "aptos-vm-environment" +version = "0.0.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-framework", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-move-stdlib", + "aptos-native-interface", + "aptos-table-natives", + "aptos-types", + "aptos-vm-types", + "ark-bn254 0.5.0", + "ark-groth16 0.5.0", + "bcs 0.1.4", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "sha3 0.9.1", + "triomphe", +] + +[[package]] +name = "aptos-vm-genesis" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +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 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", "once_cell", - "rand 0.8.5", - "rustc_version_runtime", + "rand 0.7.3", "serde", - "serde_json", ] [[package]] -name = "anyhow" -version = "1.0.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +name = "aptos-vm-logging" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "aptos-crypto", + "aptos-logger", + "aptos-metrics-core", + "aptos-speculative-state-helper", + "aptos-types", + "arc-swap", + "once_cell", + "serde", +] + +[[package]] +name = "aptos-vm-types" +version = "0.0.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" dependencies = [ - "backtrace", + "ambassador", + "anyhow", + "aptos-aggregator", + "aptos-gas-algebra", + "aptos-gas-schedule", + "aptos-types", + "bcs 0.1.4", + "bytes", + "claims", + "derivative", + "either", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "rand 0.7.3", + "serde", + "triomphe", ] [[package]] @@ -361,6 +1702,15 @@ dependencies = [ "object 0.32.2", ] +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" +dependencies = [ + "derive_arbitrary", +] + [[package]] name = "arbitrary-int" version = "1.3.0" @@ -373,28 +1723,57 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c858caffa49edfc4ecc45a4bec37abd3e88041a2903816f10f990b7b41abc281" +[[package]] +name = "arc-swap" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" + +[[package]] +name = "ark-bls12-381" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3df4dcc01ff89867cd86b0da835f23c3f02738353aaee7dde7495af71363b8d5" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-bn254" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a22f4561524cd949590d78d7d4c5df8f592430d221f7f3c9497bbafd8972120f" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] +[[package]] +name = "ark-bn254" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d69eab57e8d2663efa5c63135b2af4f396d66424f88954c21104125ab6b3e6bc" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-crypto-primitives" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f3a13b34da09176a8baba701233fdffbaa7c1b1192ce031a3da4e55ce1f1a56" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", - "ark-relations", + "ark-relations 0.4.0", "ark-serialize 0.4.2", - "ark-snark", + "ark-snark 0.4.0", "ark-std 0.4.0", "blake2", "derivative", @@ -402,6 +1781,40 @@ dependencies = [ "sha2 0.10.9", ] +[[package]] +name = "ark-crypto-primitives" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0c292754729c8a190e50414fd1a37093c786c709899f29c9f7daccecfa855e" +dependencies = [ + "ahash 0.8.12", + "ark-crypto-primitives-macros", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-relations 0.5.1", + "ark-serialize 0.5.0", + "ark-snark 0.5.1", + "ark-std 0.5.0", + "blake2", + "derivative", + "digest 0.10.7", + "fnv", + "merlin", + "rayon", + "sha2 0.10.9", +] + +[[package]] +name = "ark-crypto-primitives-macros" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7e89fe77d1f0f4fe5b96dfc940923d88d17b6a773808124f21e764dfb063c6a" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "ark-ec" version = "0.4.2" @@ -409,7 +1822,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "defd9a439d56ac24968cca0571f598a61bc8c55f71d50a89cda591cb750670ba" dependencies = [ "ark-ff 0.4.2", - "ark-poly", + "ark-poly 0.4.2", "ark-serialize 0.4.2", "ark-std 0.4.0", "derivative", @@ -419,6 +1832,28 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43d68f2d516162846c1238e755a7c4d131b892b70cc70c471a8e3ca3ed818fce" +dependencies = [ + "ahash 0.8.12", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe 0.6.0", + "fnv", + "hashbrown 0.15.5", + "itertools 0.13.0", + "num-bigint 0.4.6", + "num-integer", + "num-traits", + "rayon", + "zeroize", +] + [[package]] name = "ark-ff" version = "0.3.0" @@ -467,13 +1902,14 @@ dependencies = [ "ark-ff-macros 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", - "arrayvec", + "arrayvec 0.7.6", "digest 0.10.7", "educe 0.6.0", "itertools 0.13.0", "num-bigint 0.4.6", "num-traits", "paste", + "rayon", "zeroize", ] @@ -551,15 +1987,31 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20ceafa83848c3e390f1cbf124bc3193b3e639b3f02009e0e290809a501b95fc" dependencies = [ - "ark-crypto-primitives", - "ark-ec", + "ark-crypto-primitives 0.4.0", + "ark-ec 0.4.2", "ark-ff 0.4.2", - "ark-poly", - "ark-relations", + "ark-poly 0.4.2", + "ark-relations 0.4.0", "ark-serialize 0.4.2", "ark-std 0.4.0", ] +[[package]] +name = "ark-groth16" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88f1d0f3a534bb54188b8dcc104307db6c56cdae574ddc3212aec0625740fc7e" +dependencies = [ + "ark-crypto-primitives 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-poly 0.5.0", + "ark-relations 0.5.1", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "rayon", +] + [[package]] name = "ark-poly" version = "0.4.2" @@ -573,6 +2025,22 @@ dependencies = [ "hashbrown 0.13.2", ] +[[package]] +name = "ark-poly" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "579305839da207f02b89cd1679e50e67b4331e2f9294a57693e5051b7703fe27" +dependencies = [ + "ahash 0.8.12", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "educe 0.6.0", + "fnv", + "hashbrown 0.15.5", + "rayon", +] + [[package]] name = "ark-relations" version = "0.4.0" @@ -584,13 +2052,25 @@ dependencies = [ "tracing", ] +[[package]] +name = "ark-relations" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec46ddc93e7af44bcab5230937635b06fb5744464dd6a7e7b083e80ebd274384" +dependencies = [ + "ark-ff 0.5.0", + "ark-std 0.5.0", + "tracing", + "tracing-subscriber 0.2.25", +] + [[package]] name = "ark-secp256k1" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c02e954eaeb4ddb29613fee20840c2bbc85ca4396d53e33837e11905363c5f2" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -601,7 +2081,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3975a01b0a6e3eae0f72ec7ca8598a6620fc72fa5981f6f5cca33b7cd788f633" dependencies = [ - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-std 0.4.0", ] @@ -622,7 +2102,7 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "adb7b85a02b83d2f22f89bd5cac66c9c89474240cb6207cb1efc16d098e822a5" dependencies = [ - "ark-serialize-derive", + "ark-serialize-derive 0.4.2", "ark-std 0.4.0", "digest 0.10.7", "num-bigint 0.4.6", @@ -634,10 +2114,12 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7" dependencies = [ + "ark-serialize-derive 0.5.0", "ark-std 0.5.0", - "arrayvec", + "arrayvec 0.7.6", "digest 0.10.7", "num-bigint 0.4.6", + "rayon", ] [[package]] @@ -651,6 +2133,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "ark-serialize-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "ark-snark" version = "0.4.0" @@ -658,11 +2151,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84d3cc6833a335bb8a600241889ead68ee89a3cf8448081fb7694c0fe503da63" dependencies = [ "ark-ff 0.4.2", - "ark-relations", + "ark-relations 0.4.0", "ark-serialize 0.4.2", "ark-std 0.4.0", ] +[[package]] +name = "ark-snark" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d368e2848c2d4c129ce7679a7d0d2d612b6a274d3ea6a13bad4445d61b381b88" +dependencies = [ + "ark-ff 0.5.0", + "ark-relations 0.5.1", + "ark-serialize 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-std" version = "0.3.0" @@ -691,6 +2196,29 @@ checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a" dependencies = [ "num-traits", "rand 0.8.5", + "rayon", +] + +[[package]] +name = "arr_macro" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c49336e062fa2ae8aca17a2f99c34d9c1a5d30827e8aff1cb4c294f253afe992" +dependencies = [ + "arr_macro_impl", + "proc-macro-hack", + "proc-macro-nested", +] + +[[package]] +name = "arr_macro_impl" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c6368f9ae5c6ec403ca910327ae0c9437b0a85255b6950c90d497e6177f6e5e" +dependencies = [ + "proc-macro-hack", + "quote", + "syn 1.0.109", ] [[package]] @@ -699,6 +2227,21 @@ version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" +[[package]] +name = "arrayvec" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" +dependencies = [ + "nodrop", +] + +[[package]] +name = "arrayvec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" + [[package]] name = "arrayvec" version = "0.7.6" @@ -755,9 +2298,9 @@ dependencies = [ [[package]] name = "async-compression" -version = "0.4.34" +version = "0.4.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e86f6d3dc9dc4352edeea6b8e499e13e3f5dc3b964d7ca5fd411415a3498473" +checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37" dependencies = [ "compression-codecs", "compression-core", @@ -805,6 +2348,17 @@ version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi 0.1.19", + "libc", + "winapi 0.3.9", +] + [[package]] name = "auto_impl" version = "1.3.0" @@ -830,11 +2384,38 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "axum" -version = "0.8.7" +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", + "http-body", + "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.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b098575ebe77cb6d14fc7f32749631a6e44edbef6b796f89b020e99ba20d425" +checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8" dependencies = [ - "axum-core", + "axum-core 0.5.5", "axum-macros", "base64 0.22.1", "bytes", @@ -864,6 +2445,26 @@ dependencies = [ "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", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", +] + [[package]] name = "axum-core" version = "0.5.5" @@ -893,6 +2494,12 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "az" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" + [[package]] name = "backtrace" version = "0.3.76" @@ -905,7 +2512,7 @@ dependencies = [ "miniz_oxide", "object 0.37.3", "rustc-demangle", - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -936,6 +2543,12 @@ dependencies = [ "match-lookup", ] +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + [[package]] name = "base64" version = "0.21.7" @@ -950,9 +2563,18 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a" + +[[package]] +name = "bcs" +version = "0.1.4" +source = "git+https://github.com/aptos-labs/bcs.git?rev=d31fab9d81748e2594be5cd5cdf845786a30562d#d31fab9d81748e2594be5cd5cdf845786a30562d" +dependencies = [ + "serde", + "thiserror 1.0.69", +] [[package]] name = "bcs" @@ -1101,7 +2723,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b30ed1d6f8437a487a266c8293aeb95b61a23261273e3e02912cdb8b68bf798b" dependencies = [ "bs58 0.4.0", - "hmac", + "hmac 0.12.1", "k256 0.11.6", "once_cell", "pbkdf2", @@ -1226,6 +2848,16 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "blake2-rfc" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" +dependencies = [ + "arrayvec 0.4.12", + "constant_time_eq 0.1.5", +] + [[package]] name = "blake2b_simd" version = "1.0.3" @@ -1233,8 +2865,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" dependencies = [ "arrayref", - "arrayvec", - "constant_time_eq", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", ] [[package]] @@ -1244,8 +2876,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" dependencies = [ "arrayref", - "arrayvec", - "constant_time_eq", + "arrayvec 0.7.6", + "constant_time_eq 0.3.1", ] [[package]] @@ -1267,6 +2899,15 @@ dependencies = [ "generic-array", ] +[[package]] +name = "block-buffer" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f" +dependencies = [ + "hybrid-array", +] + [[package]] name = "block-padding" version = "0.2.1" @@ -1282,6 +2923,28 @@ dependencies = [ "generic-array", ] +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "bls12_381" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7bc6d6292be3a19e6379786dac800f551e5865a5bb51ebbe3064ab80433f403" +dependencies = [ + "ff 0.13.1", + "group 0.13.0", + "pairing", + "rand_core 0.6.4", + "subtle", +] + [[package]] name = "blst" version = "0.3.16" @@ -1355,11 +3018,41 @@ dependencies = [ "tinyvec", ] +[[package]] +name = "bstr" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "bulletproofs" +version = "4.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40e698f1df446cc6246afd823afbe2d121134d089c9102c1dd26d1264991ba32" +dependencies = [ + "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 0.9.1", + "subtle-ng", + "thiserror 1.0.69", +] + [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" [[package]] name = "byte-slice-cast" @@ -1387,9 +3080,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.11.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" +checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" dependencies = [ "serde", ] @@ -1403,6 +3096,59 @@ dependencies = [ "bytes", ] +[[package]] +name = "bzip2-sys" +version = "0.1.13+1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" +dependencies = [ + "cc", + "pkg-config", +] + +[[package]] +name = "c_linked_list" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4964518bd3b4a8190e832886cdc0da9794f12e8e6c1613a9e90ff331c4c8724b" + +[[package]] +name = "camino" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa" +dependencies = [ + "camino", + "cargo-platform", + "semver 1.0.27", + "serde", + "serde_json", +] + +[[package]] +name = "cast" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" + [[package]] name = "cbc" version = "0.1.2" @@ -1414,9 +3160,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.47" +version = "1.2.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd405d82c84ff7f35739f175f67d8b9fb7687a0e84ccdc78bd3568839827cf07" +checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c" dependencies = [ "find-msvc-tools", "jobserver", @@ -1468,9 +3214,47 @@ dependencies = [ "num-traits", "serde", "wasm-bindgen", - "windows-link 0.2.1", + "windows-link", +] + +[[package]] +name = "chrono-tz" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" +dependencies = [ + "chrono", + "chrono-tz-build", + "phf 0.11.3", +] + +[[package]] +name = "chrono-tz" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3" +dependencies = [ + "chrono", + "phf 0.12.1", +] + +[[package]] +name = "chrono-tz-build" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" +dependencies = [ + "parse-zoneinfo", + "phf 0.11.3", + "phf_codegen", ] +[[package]] +name = "chunked_transfer" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901" + [[package]] name = "ciborium" version = "0.2.2" @@ -1495,7 +3279,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9" dependencies = [ "ciborium-io", - "half", + "half 2.7.1", ] [[package]] @@ -1504,10 +3288,19 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common", + "crypto-common 0.1.7", "inout", ] +[[package]] +name = "claims" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6995bbe186456c36307f8ea36be3eefe42f49d106896414e18efc4fb2f846b5" +dependencies = [ + "autocfg", +] + [[package]] name = "clang-sys" version = "1.8.1" @@ -1519,6 +3312,21 @@ dependencies = [ "libloading", ] +[[package]] +name = "clap" +version = "2.34.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" +dependencies = [ + "ansi_term", + "atty", + "bitflags 1.3.2", + "strsim 0.8.0", + "textwrap 0.11.0", + "unicode-width", + "vec_map", +] + [[package]] name = "clap" version = "4.5.53" @@ -1560,6 +3368,15 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" +[[package]] +name = "clear_on_drop" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38508a63f4979f0048febc9966fadbd48e5dab31fd0ec6a3f151bbf4a74f7423" +dependencies = [ + "cc", +] + [[package]] name = "clipboard-win" version = "5.4.1" @@ -1660,9 +3477,9 @@ dependencies = [ [[package]] name = "compression-codecs" -version = "0.4.33" +version = "0.4.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "302266479cb963552d11bd042013a58ef1adc56768016c8b82b4199488f2d4ad" +checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2" dependencies = [ "brotli", "compression-core", @@ -1678,6 +3495,15 @@ version = "0.4.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d" +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "consensus-config" version = "0.1.0" @@ -1731,6 +3557,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "const-oid" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dabb6555f92fb9ee4140454eb5dcd14c7960e1225c6d1a6cc361f032947713e" + [[package]] name = "const-str" version = "0.4.3" @@ -1743,6 +3575,12 @@ version = "0.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3618cccc083bb987a415d85c02ca6c9994ea5b44731ec28b9ecf09658655fba9" +[[package]] +name = "const_fn" +version = "0.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f8a2ca5ac02d09563609681103aada9e1777d54fc57a5acd7a41404f9c93b6e" + [[package]] name = "const_format" version = "0.2.35" @@ -1772,6 +3610,12 @@ dependencies = [ "typewit", ] +[[package]] +name = "constant_time_eq" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" + [[package]] name = "constant_time_eq" version = "0.3.1" @@ -1793,6 +3637,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation" version = "0.9.4" @@ -1828,6 +3681,17 @@ dependencies = [ "memchr", ] +[[package]] +name = "core_affinity" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342" +dependencies = [ + "libc", + "num_cpus", + "winapi 0.3.9", +] + [[package]] name = "coset" version = "0.3.8" @@ -1865,6 +3729,55 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "criterion" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f" +dependencies = [ + "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 = "criterion-plot" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2673cc8207403546f45f5fd319a974b1e6983ad1a3ee7e6041650013be041876" +dependencies = [ + "cast", + "itertools 0.10.5", +] + +[[package]] +name = "crossbeam" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + [[package]] name = "crossbeam-channel" version = "0.5.15" @@ -1893,6 +3806,15 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "crossbeam-queue" +version = "0.3.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "crossbeam-utils" version = "0.8.21" @@ -1940,6 +3862,35 @@ dependencies = [ "typenum", ] +[[package]] +name = "crypto-common" +version = "0.2.0-rc.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "919bd05924682a5480aec713596b9e2aabed3a0a6022fab6847f85a99e5f190a" +dependencies = [ + "hybrid-array", +] + +[[package]] +name = "crypto-mac" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" +dependencies = [ + "generic-array", + "subtle", +] + +[[package]] +name = "crypto-mac" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6" +dependencies = [ + "generic-array", + "subtle", +] + [[package]] name = "csv" version = "1.4.0" @@ -1973,9 +3924,9 @@ dependencies = [ [[package]] name = "ctor" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ffc71fcdcdb40d6f087edddf7f8f1f8f79e6cf922f555a9ee8779752d4819bd" +checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e" dependencies = [ "ctor-proc-macro", "dtor", @@ -1991,9 +3942,33 @@ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" name = "ctr" version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835" +dependencies = [ + "cipher", +] + +[[package]] +name = "ctrlc" +version = "3.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790" +dependencies = [ + "dispatch2", + "nix 0.30.1", + "windows-sys 0.61.2", +] + +[[package]] +name = "curve25519-dalek" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" dependencies = [ - "cipher", + "byteorder", + "digest 0.9.0", + "rand_core 0.5.1", + "subtle", + "zeroize", ] [[package]] @@ -2005,6 +3980,7 @@ dependencies = [ "byteorder", "digest 0.9.0", "rand_core 0.6.4", + "serde", "subtle-ng", "zeroize", ] @@ -2182,6 +4158,34 @@ dependencies = [ "parking_lot_core 0.9.12", ] +[[package]] +name = "dashmap" +version = "6.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "hashbrown 0.14.5", + "lock_api", + "once_cell", + "parking_lot_core 0.9.12", +] + +[[package]] +name = "dashmap" +version = "7.0.0-rc2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4a1e35a65fe0538a60167f0ada6e195ad5d477f6ddae273943596d4a1a5730b" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "equivalent", + "hashbrown 0.15.5", + "lock_api", + "parking_lot_core 0.9.12", +] + [[package]] name = "data-encoding" version = "2.9.0" @@ -2208,6 +4212,15 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "dearbitrary" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "708ee6091d6965eb85c69f7a707303dcc48cc55fd937fb30e531909a10b314d4" +dependencies = [ + "derive_dearbitrary", +] + [[package]] name = "debugid" version = "0.8.0" @@ -2234,7 +4247,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ - "const-oid", + "const-oid 0.9.6", "pem-rfc7468 0.6.0", "zeroize", ] @@ -2245,11 +4258,21 @@ version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" dependencies = [ - "const-oid", + "const-oid 0.9.6", "pem-rfc7468 0.7.0", "zeroize", ] +[[package]] +name = "der" +version = "0.8.0-rc.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02c1d73e9668ea6b6a28172aa55f3ebec38507131ce179051c8033b5c6037653" +dependencies = [ + "const-oid 0.10.1", + "zeroize", +] + [[package]] name = "der-parser" version = "10.0.0" @@ -2296,6 +4319,28 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "derive_arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "derive_dearbitrary" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afdf9e6fb6c8a925c6b19b78ec3a80152e7a46dc7811be5f1fa64568e7c7b6c0" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "derive_more" version = "0.99.20" @@ -2320,11 +4365,11 @@ dependencies = [ [[package]] name = "derive_more" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl 2.0.1", + "derive_more-impl 2.1.1", ] [[package]] @@ -2342,22 +4387,36 @@ dependencies = [ [[package]] name = "derive_more-impl" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ + "convert_case 0.10.0", "proc-macro2", "quote", + "rustc_version 0.4.1", "syn 2.0.111", "unicode-xid", ] +[[package]] +name = "deunicode" +version = "1.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04" + [[package]] name = "diff" version = "0.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" +[[package]] +name = "difference" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198" + [[package]] name = "difflib" version = "0.4.0" @@ -2380,8 +4439,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", - "const-oid", - "crypto-common", + "const-oid 0.9.6", + "crypto-common 0.1.7", + "subtle", +] + +[[package]] +name = "digest" +version = "0.11.0-rc.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea390c940e465846d64775e55e3115d5dc934acb953de6f6e6360bc232fe2bf7" +dependencies = [ + "block-buffer 0.11.0", + "crypto-common 0.2.0-rc.5", "subtle", ] @@ -2412,7 +4482,7 @@ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" dependencies = [ "libc", "redox_users", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2423,7 +4493,19 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users", - "winapi", + "winapi 0.3.9", +] + +[[package]] +name = "dispatch2" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" +dependencies = [ + "bitflags 2.10.0", + "block2", + "libc", + "objc2", ] [[package]] @@ -2474,6 +4556,18 @@ version = "0.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" +[[package]] +name = "dudect-bencher" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5d065e1eac4fe9b4313fe81f692c7f589ce7b431719296a3392b85af4b73d38" +dependencies = [ + "clap 2.34.0", + "ctrlc", + "rand 0.8.5", + "rand_chacha 0.3.1", +] + [[package]] name = "dunce" version = "1.0.5" @@ -2532,6 +4626,16 @@ dependencies = [ "spki 0.7.3", ] +[[package]] +name = "ed25519" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" +dependencies = [ + "serde", + "signature 1.6.4", +] + [[package]] name = "ed25519" version = "2.2.3" @@ -2558,6 +4662,22 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ed25519-dalek" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" +dependencies = [ + "curve25519-dalek", + "ed25519 1.5.3", + "rand 0.7.3", + "rand_core 0.5.1", + "serde", + "serde_bytes", + "sha2 0.9.9", + "zeroize", +] + [[package]] name = "educe" version = "0.4.23" @@ -2674,7 +4794,7 @@ name = "enum-compat-util" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "serde_yaml", + "serde_yaml 0.8.26", ] [[package]] @@ -2732,6 +4852,19 @@ dependencies = [ "regex", ] +[[package]] +name = "env_logger" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +dependencies = [ + "humantime", + "is-terminal", + "log", + "regex", + "termcolor", +] + [[package]] name = "env_logger" version = "0.11.8" @@ -2810,6 +4943,15 @@ dependencies = [ "windows-sys 0.61.2", ] +[[package]] +name = "error-chain" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" +dependencies = [ + "version_check", +] + [[package]] name = "error-code" version = "3.3.2" @@ -2821,6 +4963,9 @@ name = "ethnum" version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca81e6b4777c89fd810c25a4be2b1bd93ea034fbe58e6a75216a34c6b82c539b" +dependencies = [ + "serde", +] [[package]] name = "eyre" @@ -2843,6 +4988,17 @@ dependencies = [ "rand 0.7.3", ] +[[package]] +name = "fail" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" +dependencies = [ + "log", + "once_cell", + "rand 0.8.5", +] + [[package]] name = "fastbloom" version = "0.14.0" @@ -2851,7 +5007,7 @@ checksum = "18c1ddb9231d8554c2d6bdf4cfaabf0c59251658c68b6c95cd52dd0c513a912a" dependencies = [ "getrandom 0.3.4", "libm", - "siphasher", + "siphasher 1.0.1", ] [[package]] @@ -2862,14 +5018,14 @@ dependencies = [ "aes", "aes-gcm", "aes-gcm-siv", - "ark-ec", + "ark-ec 0.4.2", "ark-ff 0.4.2", "ark-secp256k1", "ark-secp256r1", "ark-serialize 0.4.2", "auto_ops", "base64ct", - "bcs", + "bcs 0.1.6", "bech32", "bincode 1.3.3", "blake2", @@ -2887,7 +5043,7 @@ dependencies = [ "generic-array", "hex", "hex-literal", - "hkdf", + "hkdf 0.12.4", "lazy_static", "num-bigint 0.4.6", "once_cell", @@ -2895,7 +5051,7 @@ dependencies = [ "rand 0.8.5", "readonly", "rfc6979 0.4.0", - "rsa", + "rsa 0.8.2", "schemars 0.8.22", "secp256k1", "serde", @@ -2925,7 +5081,7 @@ name = "fastcrypto-tbls" version = "0.1.0" source = "git+https://github.com/MystenLabs/fastcrypto?rev=09f86974195ec85d8aae386b1909d341d3ccfe52#09f86974195ec85d8aae386b1909d341d3ccfe52" dependencies = [ - "bcs", + "bcs 0.1.6", "digest 0.10.7", "fastcrypto", "hex", @@ -2945,7 +5101,7 @@ name = "fastcrypto-vdf" version = "0.1.0" source = "git+https://github.com/MystenLabs/fastcrypto?rev=09f86974195ec85d8aae386b1909d341d3ccfe52#09f86974195ec85d8aae386b1909d341d3ccfe52" dependencies = [ - "bcs", + "bcs 0.1.6", "fastcrypto", "lazy_static", "num-bigint 0.4.6", @@ -2962,14 +5118,14 @@ name = "fastcrypto-zkp" version = "0.1.3" source = "git+https://github.com/MystenLabs/fastcrypto?rev=09f86974195ec85d8aae386b1909d341d3ccfe52#09f86974195ec85d8aae386b1909d341d3ccfe52" dependencies = [ - "ark-bn254", - "ark-ec", + "ark-bn254 0.4.0", + "ark-ec 0.4.2", "ark-ff 0.4.2", - "ark-groth16", - "ark-relations", + "ark-groth16 0.4.0", + "ark-relations 0.4.0", "ark-serialize 0.4.2", - "ark-snark", - "bcs", + "ark-snark 0.4.0", + "bcs 0.1.6", "byte-slice-cast", "derive_more 0.99.20", "fastcrypto", @@ -3000,7 +5156,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" dependencies = [ - "arrayvec", + "arrayvec 0.7.6", "auto_impl", "bytes", ] @@ -3011,7 +5167,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce8dba4714ef14b8274c371879b175aa55b16b30f269663f19d576f380018dc4" dependencies = [ - "arrayvec", + "arrayvec 0.7.6", "auto_impl", "bytes", ] @@ -3023,7 +5179,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" dependencies = [ "cfg-if", - "rustix", + "rustix 1.1.3", "windows-sys 0.59.0", ] @@ -3080,7 +5236,19 @@ dependencies = [ "cc", "lazy_static", "libc", - "winapi", + "winapi 0.3.9", +] + +[[package]] +name = "fixed" +version = "1.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "707070ccf8c4173548210893a0186e29c266901b71ed20cd9e2ca0193dfe95c3" +dependencies = [ + "az", + "bytemuck", + "half 2.7.1", + "typenum", ] [[package]] @@ -3129,6 +5297,22 @@ dependencies = [ "miniz_oxide", ] +[[package]] +name = "flexi_logger" +version = "0.27.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "469e584c031833564840fb0cdbce99bdfe946fd45480a188545e73a76f45461c" +dependencies = [ + "chrono", + "glob", + "is-terminal", + "lazy_static", + "log", + "nu-ansi-term 0.49.0", + "regex", + "thiserror 1.0.69", +] + [[package]] name = "float-cmp" version = "0.9.0" @@ -3193,9 +5377,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] +[[package]] +name = "fst" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ab85b9b05e3978cc9a9cf8fea7f01b494e1a09ed3037e16ba39edc7a29eb61a" + [[package]] name = "funty" version = "1.1.0" @@ -3312,6 +5502,12 @@ dependencies = [ "byteorder", ] +[[package]] +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" @@ -3324,6 +5520,28 @@ dependencies = [ "zeroize", ] +[[package]] +name = "get_if_addrs" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abddb55a898d32925f3148bd281174a68eeb68bbfd9a5938a57b18f506ee4ef7" +dependencies = [ + "c_linked_list", + "get_if_addrs-sys", + "libc", + "winapi 0.2.8", +] + +[[package]] +name = "get_if_addrs-sys" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d04f9fb746cf36b191c00f3ede8bde9c8e64f9f4b05ae2694a9ccf5e3f5ab48" +dependencies = [ + "gcc", + "libc", +] + [[package]] name = "getrandom" version = "0.1.16" @@ -3398,12 +5616,49 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "git2" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2994bee4a3a6a51eb90c218523be382fd7ea09b16380b9312e9dbe955ff7c7d1" +dependencies = [ + "bitflags 1.3.2", + "libc", + "libgit2-sys", + "log", + "url", +] + [[package]] name = "glob" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" +[[package]] +name = "globset" +version = "0.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3" +dependencies = [ + "aho-corasick", + "bstr", + "log", + "regex-automata", + "regex-syntax 0.8.8", +] + +[[package]] +name = "globwalk" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757" +dependencies = [ + "bitflags 2.10.0", + "ignore", + "walkdir", +] + [[package]] name = "governor" version = "0.6.3" @@ -3411,7 +5666,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68a7f542ee6b35af73b06abc0dad1c1bae89964e4e253bc4b587b91c9637867b" dependencies = [ "cfg-if", - "dashmap", + "dashmap 5.5.3", "futures", "futures-timer", "no-std-compat", @@ -3467,6 +5722,12 @@ dependencies = [ "tracing", ] +[[package]] +name = "half" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b43ede17f21864e81be2fa654110bf1e793774238d86ef8555c37e6519c0403" + [[package]] name = "half" version = "2.7.1" @@ -3483,6 +5744,9 @@ name = "hashbrown" version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash 0.7.8", +] [[package]] name = "hashbrown" @@ -3490,7 +5754,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash", + "ahash 0.8.12", ] [[package]] @@ -3499,7 +5763,7 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", + "ahash 0.8.12", "allocator-api2", ] @@ -3507,32 +5771,67 @@ dependencies = [ name = "hashbrown" version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", + "serde", + "serde_core", +] + +[[package]] +name = "hdrhistogram" +version = "7.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" +dependencies = [ + "byteorder", + "num-traits", +] + +[[package]] +name = "headers" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb" dependencies = [ - "allocator-api2", - "equivalent", - "foldhash 0.1.5", + "base64 0.22.1", + "bytes", + "headers-core", + "http", + "httpdate", + "mime", + "sha1", ] [[package]] -name = "hashbrown" -version = "0.16.1" +name = "headers-core" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4" dependencies = [ - "foldhash 0.2.0", - "serde", - "serde_core", + "http", ] [[package]] -name = "hdrhistogram" -version = "7.5.4" +name = "heck" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "765c9198f173dd59ce26ff9f95ef0aafd0a0fe01fb9d72841bc5066a4c06511d" +checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c" dependencies = [ - "byteorder", - "num-traits", + "unicode-segmentation", ] [[package]] @@ -3547,6 +5846,21 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + [[package]] name = "hermit-abi" version = "0.5.2" @@ -3568,13 +5882,43 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" +[[package]] +name = "hkdf" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" +dependencies = [ + "digest 0.9.0", + "hmac 0.10.1", +] + [[package]] name = "hkdf" version = "0.12.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" dependencies = [ - "hmac", + "hmac 0.12.1", +] + +[[package]] +name = "hmac" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" +dependencies = [ + "crypto-mac 0.8.0", + "digest 0.9.0", +] + +[[package]] +name = "hmac" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" +dependencies = [ + "crypto-mac 0.10.0", + "digest 0.9.0", ] [[package]] @@ -3586,6 +5930,26 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "hmac" +version = "0.13.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1c597ac7d6cc8143e30e83ef70915e7f883b18d8bec2e2b2bce47f5bbb06d57" +dependencies = [ + "digest 0.11.0-rc.4", +] + +[[package]] +name = "hmac-drbg" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" +dependencies = [ + "digest 0.9.0", + "generic-array", + "hmac 0.8.1", +] + [[package]] name = "hmac-sha512" version = "0.1.9" @@ -3603,13 +5967,24 @@ dependencies = [ [[package]] name = "hostname" -version = "0.4.1" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi 0.3.9", +] + +[[package]] +name = "hostname" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65" +checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd" dependencies = [ "cfg-if", "libc", - "windows-link 0.1.3", + "windows-link", ] [[package]] @@ -3663,12 +6038,30 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" +[[package]] +name = "humansize" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7" +dependencies = [ + "libm", +] + [[package]] name = "humantime" version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" +[[package]] +name = "hybrid-array" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f471e0a81b2f90ffc0cb2f951ae04da57de8baa46fa99112b062a5173a5088d0" +dependencies = [ + "typenum", +] + [[package]] name = "hyper" version = "1.8.1" @@ -3742,9 +6135,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" +checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ "base64 0.22.1", "bytes", @@ -3838,9 +6231,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ "icu_collections", "icu_locale_core", @@ -3852,9 +6245,9 @@ dependencies = [ [[package]] name = "icu_properties_data" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" @@ -3898,6 +6291,22 @@ dependencies = [ "icu_properties", ] +[[package]] +name = "ignore" +version = "0.4.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a" +dependencies = [ + "crossbeam-deque", + "globset", + "log", + "memchr", + "regex-automata", + "same-file", + "walkdir", + "winapi-util", +] + [[package]] name = "im" version = "15.1.0" @@ -3950,6 +6359,30 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "include_dir" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24b56e147e6187d61e9d0f039f10e070d0c0a887e24fe0bb9ca3f29bfde62cab" +dependencies = [ + "glob", + "include_dir_impl", + "proc-macro-hack", +] + +[[package]] +name = "include_dir_impl" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a0c890c85da4bab7bce4204c707396bbd3c6c8a681716a51c8814cfc2b682df" +dependencies = [ + "anyhow", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "indenter" version = "0.3.4" @@ -3997,14 +6430,15 @@ dependencies = [ [[package]] name = "insta" -version = "1.44.3" +version = "1.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5c943d4415edd8153251b6f197de5eb1640e56d84e8d9159bea190421c73698" +checksum = "b76866be74d68b1595eb8060cb9191dca9c021db2316558e52ddc5d55d41b66c" dependencies = [ "console", "once_cell", "serde", "similar", + "tempfile", ] [[package]] @@ -4016,6 +6450,19 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "internment" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ab388864246d58a276e60e7569a833d9cc4cd75c66e5ca77c177dad38e59996" +dependencies = [ + "ahash 0.7.8", + "dashmap 5.5.3", + "hashbrown 0.12.3", + "once_cell", + "parking_lot 0.12.5", +] + [[package]] name = "inventory" version = "0.3.21" @@ -4025,6 +6472,17 @@ dependencies = [ "rustversion", ] +[[package]] +name = "io-lifetimes" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" +dependencies = [ + "hermit-abi 0.3.9", + "libc", + "windows-sys 0.48.0", +] + [[package]] name = "ipnet" version = "2.11.0" @@ -4047,11 +6505,17 @@ version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi", + "hermit-abi 0.5.2", "libc", "windows-sys 0.61.2", ] +[[package]] +name = "is_debug" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fe266d2e243c931d8190177f20bf7f24eed45e96f39e87dc49a27b32d12d407" + [[package]] name = "is_terminal_polyfill" version = "1.70.2" @@ -4096,9 +6560,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010" [[package]] name = "jiff" @@ -4158,9 +6622,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.82" +version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65" +checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" dependencies = [ "once_cell", "wasm-bindgen", @@ -4342,6 +6806,20 @@ dependencies = [ "url", ] +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.7", + "pem 1.1.1", + "ring 0.16.20", + "serde", + "serde_json", + "simple_asn1", +] + [[package]] name = "k256" version = "0.11.6" @@ -4377,6 +6855,15 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "keccak" +version = "0.2.0-rc.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d546793a04a1d3049bd192856f804cfe96356e2cf36b54b4e575155babe9f41" +dependencies = [ + "cpufeatures", +] + [[package]] name = "keccak-asm" version = "0.1.4" @@ -4451,13 +6938,36 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" +[[package]] +name = "legacy-move-compiler" +version = "0.0.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "bcs 0.1.4", + "clap 4.5.53", + "codespan-reporting", + "hex", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "petgraph 0.6.5", + "regex", + "tempfile", +] + [[package]] name = "libafl" version = "0.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81e13655171e69ad9094dd1be1948950a36d228f01a7cb9f6d8477090d98c6e4" dependencies = [ - "ahash", + "ahash 0.8.12", "arbitrary-int 2.0.0", "backtrace", "bincode 2.0.1", @@ -4485,7 +6995,7 @@ dependencies = [ "typed-builder", "uuid", "wait-timeout", - "winapi", + "winapi 0.3.9", "windows", ] @@ -4495,12 +7005,12 @@ version = "0.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52cbae44f69156f035ae2196b135ad27ea95020767e6787bfe45e8c2438c67b9" dependencies = [ - "ahash", + "ahash 0.8.12", "backtrace", - "ctor 0.6.1", + "ctor 0.6.3", "erased-serde 0.4.9", "hashbrown 0.16.1", - "hostname", + "hostname 0.4.2", "libafl_derive", "libc", "log", @@ -4520,7 +7030,7 @@ dependencies = [ "uds", "uuid", "wide", - "winapi", + "winapi 0.3.9", "windows", "windows-core", "windows-result", @@ -4540,9 +7050,21 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.177" +version = "0.2.178" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" + +[[package]] +name = "libgit2-sys" +version = "0.14.2+1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" +checksum = "7f3d95f6b51075fe9810a7ae22c7095f12b98005ab364d8544797a825ce946a4" +dependencies = [ + "cc", + "libc", + "libz-sys", + "pkg-config", +] [[package]] name = "libloading" @@ -4551,7 +7073,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" dependencies = [ "cfg-if", - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -4561,37 +7083,113 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" [[package]] -name = "libmdbx-remote" -version = "0.4.2" +name = "libmdbx-remote" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d7a331de31c46c0c9dfaeb87c91bd41095f45ba3f47ef36bb361fd93ee4243d" +dependencies = [ + "async-stream", + "bitflags 2.10.0", + "byteorder", + "derive_more 1.0.0", + "indexmap 2.12.1", + "mdbx-remote-sys", + "parking_lot 0.12.5", + "serde", + "smallvec", + "tarpc", + "thiserror 1.0.69", + "tokio", + "tokio-stream", + "tracing", + "url", +] + +[[package]] +name = "libredox" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50" +dependencies = [ + "bitflags 2.10.0", + "libc", + "redox_syscall 0.6.0", +] + +[[package]] +name = "librocksdb-sys" +version = "0.17.3+10.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9" +dependencies = [ + "bindgen 0.72.1", + "bzip2-sys", + "cc", + "libc", + "libz-sys", + "lz4-sys", + "tikv-jemalloc-sys", + "zstd-sys", +] + +[[package]] +name = "libsecp256k1" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +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 = "libsecp256k1-core" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" +dependencies = [ + "crunchy", + "digest 0.9.0", + "subtle", +] + +[[package]] +name = "libsecp256k1-gen-ecmult" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3038c808c55c87e8a172643a7d87187fc6c4174468159cb3090659d55bcb4809" +dependencies = [ + "libsecp256k1-core", +] + +[[package]] +name = "libsecp256k1-gen-genmult" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d7a331de31c46c0c9dfaeb87c91bd41095f45ba3f47ef36bb361fd93ee4243d" +checksum = "3db8d6ba2cec9eacc40e6e8ccc98931840301f1006e95647ceb2dd5c3aa06f7c" dependencies = [ - "async-stream", - "bitflags 2.10.0", - "byteorder", - "derive_more 1.0.0", - "indexmap 2.12.1", - "mdbx-remote-sys", - "parking_lot 0.12.5", - "serde", - "smallvec", - "tarpc", - "thiserror 1.0.69", - "tokio", - "tokio-stream", - "tracing", - "url", + "libsecp256k1-core", ] [[package]] -name = "libredox" -version = "0.1.10" +name = "libz-sys" +version = "1.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" +checksum = "15d118bbf3771060e7311cc7bb0545b01d08a8b4a7de949198dec1fa0ca1c0f7" dependencies = [ - "bitflags 2.10.0", + "cc", "libc", - "redox_syscall 0.5.18", + "pkg-config", + "vcpkg", ] [[package]] @@ -4620,6 +7218,18 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "linux-raw-sys" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" + +[[package]] +name = "linux-raw-sys" +version = "0.4.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" + [[package]] name = "linux-raw-sys" version = "0.11.0" @@ -4643,11 +7253,11 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" dependencies = [ - "serde", + "serde_core", ] [[package]] @@ -4724,6 +7334,15 @@ dependencies = [ "hashbrown 0.15.5", ] +[[package]] +name = "lru" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f" +dependencies = [ + "hashbrown 0.16.1", +] + [[package]] name = "lru-slab" version = "0.1.2" @@ -4756,6 +7375,16 @@ dependencies = [ "url", ] +[[package]] +name = "lz4-sys" +version = "1.11.1+lz4-1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6" +dependencies = [ + "cc", + "libc", +] + [[package]] name = "mach2" version = "0.5.0" @@ -4782,12 +7411,33 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matchers" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +dependencies = [ + "regex-automata", +] + [[package]] name = "matchit" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73cbba799671b762df5a175adf59ce145165747bb891505c43d09aefbbf38beb" +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + [[package]] name = "matchit" version = "0.8.4" @@ -4810,7 +7460,7 @@ version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e7ec4dfcb2b4f2ac1305d2bc006407d446e093c9d38ff9e2ab2244f63687be2" dependencies = [ - "bcs", + "bcs 0.1.6", "bincode 2.0.1", "itertools 0.12.1", "libmdbx-remote", @@ -4845,7 +7495,7 @@ version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1dfd6c9d2bb0f1fcaf93690c819fca8af571c68b8a1919654456501b9bc04386" dependencies = [ - "bcs", + "bcs 0.1.6", "bincode 2.0.1", "libmdbx-remote", "serde_json", @@ -4909,6 +7559,17 @@ dependencies = [ "autocfg", ] +[[package]] +name = "merlin" +version = "3.0.0" +source = "git+https://github.com/aptos-labs/merlin#3454ccc85e37355c729ba40e6dac6e867ddf59f5" +dependencies = [ + "byteorder", + "keccak 0.1.5", + "rand_core 0.6.4", + "zeroize", +] + [[package]] name = "mime" version = "0.3.17" @@ -4925,6 +7586,21 @@ dependencies = [ "unicase", ] +[[package]] +name = "mini-moka" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c325dfab65f261f386debee8b0969da215b3fa0037e74c8a1234db7ba986d803" +dependencies = [ + "crossbeam-channel", + "crossbeam-utils", + "dashmap 5.5.3", + "skeptic", + "smallvec", + "tagptr", + "triomphe", +] + [[package]] name = "minimal-lexical" version = "0.2.1" @@ -4943,15 +7619,21 @@ dependencies = [ [[package]] name = "mio" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ "libc", "wasi 0.11.1+wasi-snapshot-preview1", "windows-sys 0.61.2", ] +[[package]] +name = "mirai-annotations" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9be0862c1b3f26a88803c4a49de6889c10e608b3ee9344e6ef5b45fb37ad3d1" + [[package]] name = "mockall" version = "0.11.4" @@ -4979,6 +7661,29 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "more-asserts" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fafa6961cabd9c63bcd77a45d7e3b7f3b552b70417831fb0f56db717e72407e" + +[[package]] +name = "move-abigen" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "bcs 0.1.4", + "heck 0.4.1", + "log", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", +] + [[package]] name = "move-abstract-interpreter" version = "0.1.0" @@ -4989,7 +7694,7 @@ name = "move-abstract-interpreter-v2" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "move-binary-format", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", ] [[package]] @@ -4997,6 +7702,20 @@ name = "move-abstract-stack" version = "0.0.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" +[[package]] +name = "move-asm" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "clap 4.5.53", + "codespan", + "codespan-reporting", + "either", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", +] + [[package]] name = "move-binary-format" version = "0.0.3" @@ -5006,34 +7725,80 @@ dependencies = [ "enum-compat-util", "indexmap 2.12.1", "move-abstract-interpreter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-proc-macros", "ref-cast", "serde", "variant_count", ] +[[package]] +name = "move-binary-format" +version = "0.0.3" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "backtrace", + "indexmap 2.12.1", + "move-bytecode-spec", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "ref-cast", + "serde", + "variant_count", +] + [[package]] name = "move-borrow-graph" version = "0.0.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" +[[package]] +name = "move-borrow-graph" +version = "0.0.1" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" + [[package]] name = "move-bytecode-source-map" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", - "move-binary-format", - "move-command-line-common", - "move-core-types", - "move-ir-types", - "move-symbol-pool", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "serde", "serde_json", ] +[[package]] +name = "move-bytecode-source-map" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "bcs 0.1.4", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", +] + +[[package]] +name = "move-bytecode-spec" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "once_cell", + "quote", + "syn 1.0.109", +] + [[package]] name = "move-bytecode-utils" version = "0.1.0" @@ -5041,10 +7806,21 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "anyhow", "indexmap 2.12.1", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "petgraph 0.8.3", - "serde-reflection", + "serde-reflection 0.5.1", +] + +[[package]] +name = "move-bytecode-utils" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "petgraph 0.6.5", ] [[package]] @@ -5054,22 +7830,36 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "move-abstract-interpreter", "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-regex-borrow-graph", "move-vm-config", "petgraph 0.8.3", ] +[[package]] +name = "move-bytecode-verifier" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "fail 0.5.1", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "petgraph 0.6.5", + "serde", + "typed-arena", +] + [[package]] name = "move-bytecode-verifier-meter" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", ] @@ -5080,10 +7870,10 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "move-abstract-interpreter-v2", "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "petgraph 0.8.3", ] @@ -5095,10 +7885,10 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "move-abstract-interpreter-v2", "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "petgraph 0.8.3", ] @@ -5110,10 +7900,10 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "move-abstract-interpreter-v2", "move-abstract-stack", - "move-binary-format", - "move-borrow-graph", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "petgraph 0.8.3", ] @@ -5124,13 +7914,13 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "colored", "dirs-next", "hex", "insta", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", "packed_struct", "serde", @@ -5139,30 +7929,47 @@ dependencies = [ "walkdir", ] +[[package]] +name = "move-command-line-common" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "difference", + "dirs-next", + "hex", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num-bigint 0.3.3", + "once_cell", + "serde", + "sha2 0.9.9", + "walkdir", +] + [[package]] name = "move-compiler" version = "0.0.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "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-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-ir-to-bytecode", - "move-ir-types", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-proc-macros", - "move-symbol-pool", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", "petgraph 0.8.3", "rayon", @@ -5175,20 +7982,55 @@ dependencies = [ "vfs", ] +[[package]] +name = "move-compiler-v2" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "abstract-domain-derive", + "anyhow", + "bcs 0.1.4", + "clap 4.5.53", + "codespan", + "codespan-reporting", + "colored", + "ethnum", + "flexi_logger", + "im", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-asm", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-borrow-graph 0.0.1 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num 0.4.3", + "once_cell", + "petgraph 0.6.5", + "serde_json", +] + [[package]] name = "move-core-types" version = "0.0.4" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "enum-compat-util", "ethnum", "hex", "indexmap 2.12.1", "leb128", "move-proc-macros", - "num", + "num 0.4.3", "once_cell", "primitive-types 0.10.1", "rand 0.8.5", @@ -5200,26 +8042,50 @@ dependencies = [ "uint", ] +[[package]] +name = "move-core-types" +version = "0.0.4" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "arbitrary", + "bcs 0.1.4", + "bytes", + "dearbitrary", + "ethnum", + "hashbrown 0.14.5", + "hex", + "num 0.4.3", + "once_cell", + "proptest", + "proptest-derive", + "rand 0.8.5", + "ref-cast", + "serde", + "serde_bytes", + "thiserror 1.0.69", +] + [[package]] name = "move-coverage" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "codespan", "colored", "indexmap 2.12.1", "lcov", "move-abstract-interpreter", - "move-binary-format", - "move-bytecode-source-map", - "move-bytecode-verifier", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", - "move-ir-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", "petgraph 0.8.3", "serde", @@ -5231,19 +8097,19 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "hex", "inline_colorization", "move-abstract-interpreter", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-coverage", - "move-ir-types", - "move-symbol-pool", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", ] [[package]] @@ -5252,23 +8118,54 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "clap", + "clap 4.5.53", "codespan", "codespan-reporting", "itertools 0.10.5", "log", - "move-binary-format", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", - "move-ir-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-model-2", - "move-symbol-pool", - "num", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "num 0.4.3", + "once_cell", + "regex", + "serde", +] + +[[package]] +name = "move-docgen" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "clap 4.5.53", + "codespan", + "codespan-reporting", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", "once_cell", "regex", "serde", ] +[[package]] +name = "move-errmapgen" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", +] + [[package]] name = "move-ir-to-bytecode" version = "0.1.0" @@ -5277,13 +8174,13 @@ dependencies = [ "anyhow", "codespan-reporting", "log", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-ir-to-bytecode-syntax", - "move-ir-types", - "move-symbol-pool", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "ouroboros 0.17.2", ] @@ -5294,10 +8191,10 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "anyhow", "hex", - "move-command-line-common", - "move-core-types", - "move-ir-types", - "move-symbol-pool", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", ] [[package]] @@ -5306,32 +8203,72 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "hex", - "move-command-line-common", - "move-core-types", - "move-symbol-pool", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "once_cell", + "serde", +] + +[[package]] +name = "move-ir-types" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "hex", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "serde", +] + +[[package]] +name = "move-model" +version = "0.1.0" +source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" +dependencies = [ + "anyhow", + "codespan", + "codespan-reporting", + "itertools 0.10.5", + "log", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-compiler", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-disassembler", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "num 0.4.3", "once_cell", + "regex", "serde", ] [[package]] name = "move-model" version = "0.1.0" -source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" dependencies = [ "anyhow", "codespan", "codespan-reporting", - "itertools 0.10.5", + "either", + "internment", + "itertools 0.13.0", + "legacy-move-compiler", "log", - "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", + "move-asm", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num 0.4.3", + "num-traits", "once_cell", "regex", "serde", @@ -5343,19 +8280,19 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "codespan", "codespan-reporting", "indexmap 2.12.1", - "move-binary-format", - "move-bytecode-source-map", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-disassembler", - "move-ir-types", - "move-symbol-pool", - "num", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "num 0.4.3", "pretty_simple", "serde", "vfs", @@ -5367,26 +8304,26 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "clap", + "clap 4.5.53", "colored", "dunce", "itertools 0.10.5", - "move-binary-format", - "move-bytecode-source-map", - "move-bytecode-utils", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-disassembler", - "move-docgen", + "move-docgen 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-model-2", - "move-symbol-pool", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "named-lock", "once_cell", "petgraph 0.8.3", "regex", "serde", - "serde_yaml", + "serde_yaml 0.8.26", "sha2 0.9.9", "tempfile", "toml 0.5.11", @@ -5397,6 +8334,40 @@ dependencies = [ "whoami", ] +[[package]] +name = "move-package" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "clap 4.5.53", + "colored", + "itertools 0.13.0", + "legacy-move-compiler", + "move-abigen", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-source-map 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-compiler-v2", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-docgen 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "named-lock", + "once_cell", + "petgraph 0.6.5", + "regex", + "serde", + "serde_yaml 0.8.26", + "sha2 0.9.9", + "tempfile", + "termcolor", + "toml 0.7.8", + "walkdir", + "whoami", +] + [[package]] name = "move-proc-macros" version = "0.1.0" @@ -5407,17 +8378,118 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "move-prover" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "atty", + "clap 4.5.53", + "codespan-reporting", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-abigen", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-compiler-v2", + "move-docgen 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-errmapgen", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "serde", + "toml 0.7.8", +] + +[[package]] +name = "move-prover-boogie-backend" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "async-trait", + "codespan", + "codespan-reporting", + "futures", + "itertools 0.13.0", + "legacy-move-compiler", + "log", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-prover-bytecode-pipeline", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num 0.4.3", + "once_cell", + "pretty", + "rand 0.7.3", + "regex", + "serde", + "tera", + "tokio", +] + +[[package]] +name = "move-prover-bytecode-pipeline" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "codespan-reporting", + "itertools 0.13.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", +] + +[[package]] +name = "move-prover-lab" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "chrono", + "clap 4.5.53", + "codespan-reporting", + "itertools 0.13.0", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-prover", + "move-prover-boogie-backend", + "move-prover-bytecode-pipeline", + "plotters", + "z3tracer", +] + [[package]] name = "move-regex-borrow-graph" version = "0.0.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "itertools 0.10.5", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "petgraph 0.8.3", ] +[[package]] +name = "move-resource-viewer" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "anyhow", + "hex", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "serde", +] + [[package]] name = "move-stackless-bytecode" version = "0.1.0" @@ -5429,26 +8501,48 @@ dependencies = [ "im", "itertools 0.10.5", "log", - "move-binary-format", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", - "move-model", - "num", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-model 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "num 0.4.3", "petgraph 0.8.3", "serde", ] +[[package]] +name = "move-stackless-bytecode" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "abstract-domain-derive", + "anyhow", + "codespan-reporting", + "ethnum", + "im", + "itertools 0.13.0", + "log", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-model 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "num 0.4.3", + "paste", + "petgraph 0.6.5", + "topological-sort", + "try_match", +] + [[package]] name = "move-stdlib-natives" version = "0.1.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "hex", - "move-binary-format", - "move-core-types", - "move-vm-runtime", - "move-vm-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "sha2 0.9.9", "sha3 0.9.1", "smallvec", @@ -5460,8 +8554,8 @@ version = "0.1.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "hex", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v0", "move-vm-types-v0", "sha2 0.9.9", @@ -5475,8 +8569,8 @@ version = "0.1.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "hex", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v1", "move-vm-types-v1", "sha2 0.9.9", @@ -5490,8 +8584,8 @@ version = "0.1.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "hex", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v2", "move-vm-types-v2", "sha2 0.9.9", @@ -5505,17 +8599,42 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "once_cell", - "phf", + "phf 0.11.3", + "serde", +] + +[[package]] +name = "move-symbol-pool" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "once_cell", "serde", ] +[[package]] +name = "move-table-extension" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "better_any", + "bytes", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "sha3 0.9.1", + "smallvec", + "triomphe", +] + [[package]] name = "move-trace-format" version = "0.0.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-stack", "serde", "serde_json", @@ -5527,10 +8646,19 @@ name = "move-vm-config" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "move-binary-format", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", ] +[[package]] +name = "move-vm-metrics" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "once_cell", + "prometheus", +] + [[package]] name = "move-vm-profiler" version = "0.1.0" @@ -5543,36 +8671,75 @@ dependencies = [ "tracing", ] +[[package]] +name = "move-vm-profiler" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", +] + [[package]] name = "move-vm-runtime" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "better_any", - "fail", - "move-binary-format", - "move-bytecode-verifier", - "move-core-types", + "fail 0.4.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", "move-vm-config", "move-vm-stack", - "move-vm-types", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", "parking_lot 0.11.2", "smallvec", "tracing", ] +[[package]] +name = "move-vm-runtime" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "ambassador", + "better_any", + "bitvec 1.0.1", + "bytes", + "cfg-if", + "claims", + "fail 0.5.1", + "fxhash", + "hashbrown 0.14.5", + "itertools 0.13.0", + "lazy_static", + "lru 0.16.2", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-metrics", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "once_cell", + "parking_lot 0.12.5", + "serde", + "triomphe", + "typed-arena", +] + [[package]] name = "move-vm-runtime-v0" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "better_any", - "fail", - "move-binary-format", + "fail 0.4.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-v0", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "move-vm-types-v0", "once_cell", @@ -5587,10 +8754,10 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "better_any", - "fail", - "move-binary-format", + "fail 0.4.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-v1", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "move-vm-types-v1", "once_cell", @@ -5605,10 +8772,10 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "better_any", - "fail", - "move-binary-format", + "fail 0.4.0", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-v2", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "move-vm-types-v2", "once_cell", @@ -5622,8 +8789,8 @@ name = "move-vm-stack" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "move-bytecode-verifier", - "move-vm-types", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", ] [[package]] @@ -5632,10 +8799,10 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "move-binary-format", - "move-core-types", - "move-vm-profiler", - "move-vm-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", "serde", ] @@ -5645,12 +8812,36 @@ name = "move-vm-types" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", - "move-vm-profiler", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "serde", + "smallvec", +] + +[[package]] +name = "move-vm-types" +version = "0.1.0" +source = "git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3#5033ff361583c59ccb0e4e9d835ee4712e60fcee" +dependencies = [ + "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 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "parking_lot 0.12.5", "serde", + "sha3 0.9.1", + "smallbitvec", "smallvec", + "triomphe", ] [[package]] @@ -5658,9 +8849,9 @@ name = "move-vm-types-v0" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "serde", "smallvec", ] @@ -5670,9 +8861,9 @@ name = "move-vm-types-v1" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "serde", "smallvec", ] @@ -5682,9 +8873,9 @@ name = "move-vm-types-v2" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "serde", "smallvec", ] @@ -5693,11 +8884,11 @@ dependencies = [ name = "movy" version = "0.0.1" dependencies = [ - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "color-eyre", "dotenvy", - "env_logger", + "env_logger 0.11.8", "glob", "itertools 0.14.0", "log", @@ -5728,6 +8919,71 @@ dependencies = [ [[package]] name = "movy-aptos" version = "0.0.1" +dependencies = [ + "alloy-primitives", + "anyhow", + "aptos-aggregator", + "aptos-cached-packages", + "aptos-config", + "aptos-crypto", + "aptos-db", + "aptos-dynamic-transaction-composer", + "aptos-executor", + "aptos-gas-schedule", + "aptos-keygen", + "aptos-native-interface", + "aptos-storage-interface", + "aptos-types", + "aptos-vm", + "aptos-vm-environment", + "aptos-vm-genesis", + "aptos-vm-logging", + "aptos-vm-types", + "auto_impl", + "bcs 0.1.6", + "bytes", + "chrono", + "color-eyre", + "const-hex", + "cynic", + "dashmap 6.1.0", + "env_logger 0.10.2", + "fastcrypto", + "itertools 0.14.0", + "libafl", + "libafl_bolts", + "log", + "mdbx-derive", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-table-extension", + "move-trace-format", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "move-vm-stack", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/aptos-core.git?rev=5033ff3)", + "movy-analysis", + "movy-sui", + "movy-types", + "prometheus", + "ptree", + "rand 0.9.2", + "reqwest", + "serde", + "serde_json", + "serde_json_any_key", + "serde_yaml 0.9.34+deprecated", + "sui-execution", + "sui-types", + "tempfile", + "tokio", + "tokio-stream", + "triomphe", + "z3", +] [[package]] name = "movy-fuzz" @@ -5742,13 +8998,13 @@ dependencies = [ "libafl", "libafl_bolts", "log", - "move-binary-format", - "move-core-types", - "move-model", - "move-stackless-bytecode", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-model 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", "move-vm-stack", - "move-vm-types", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "movy-analysis", "movy-replay", "movy-static-analysis", @@ -5776,7 +9032,7 @@ dependencies = [ "alloy-primitives", "anyhow", "auto_impl", - "bcs", + "bcs 0.1.6", "chrono", "color-eyre", "const-hex", @@ -5787,12 +9043,12 @@ dependencies = [ "libafl_bolts", "log", "mdbx-derive", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", - "move-vm-runtime", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-stack", - "move-vm-types", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "movy-analysis", "movy-sui", "movy-types", @@ -5819,10 +9075,10 @@ dependencies = [ "color-eyre", "itertools 0.14.0", "log", - "move-binary-format", - "move-core-types", - "move-model", - "move-stackless-bytecode", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-model 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-stackless-bytecode 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "movy-replay", "movy-types", "serde_json", @@ -5834,7 +9090,7 @@ name = "movy-sui" version = "0.0.1" dependencies = [ "auto_impl", - "bcs", + "bcs 0.1.6", "chrono", "color-eyre", "const-hex", @@ -5844,11 +9100,11 @@ dependencies = [ "itertools 0.14.0", "log", "mdbx-derive", - "move-binary-format", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-package", + "move-package 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", - "move-vm-runtime", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "movy-types", "prometheus", "rand 0.9.2", @@ -5866,7 +9122,7 @@ dependencies = [ "tempfile", "tokio", "tokio-stream", - "tonic", + "tonic 0.14.2", "url", ] @@ -5876,7 +9132,7 @@ version = "0.0.1" dependencies = [ "alloy-primitives", "anyhow", - "bcs", + "bcs 0.1.6", "bitflags 2.10.0", "color-eyre", "const-hex", @@ -5886,8 +9142,8 @@ dependencies = [ "libafl", "log", "mdbx-derive", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "object_store", "reqwest", "serde", @@ -5896,8 +9152,8 @@ dependencies = [ "sui-types", "thiserror 2.0.17", "tokio", - "toml 0.9.8", - "tonic", + "toml 0.9.10+spec-1.1.0", + "tonic 0.14.2", ] [[package]] @@ -5911,6 +9167,24 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "multer" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" +dependencies = [ + "bytes", + "encoding_rs", + "futures-util", + "http", + "httparse", + "memchr", + "mime", + "spin 0.9.8", + "tokio", + "version_check", +] + [[package]] name = "multiaddr" version = "0.17.1" @@ -5996,8 +9270,8 @@ version = "0.7.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "async-trait", - "axum", - "dashmap", + "axum 0.8.8", + "dashmap 5.5.3", "futures", "once_cell", "parking_lot 0.12.5", @@ -6019,7 +9293,7 @@ dependencies = [ "anemo", "anemo-tower", "async-stream", - "bcs", + "bcs 0.1.6", "bytes", "eyre", "fastcrypto", @@ -6040,7 +9314,7 @@ dependencies = [ "tokio", "tokio-rustls", "tokio-stream", - "tonic", + "tonic 0.14.2", "tonic-health", "tower 0.5.2", "tower-http 0.5.2", @@ -6058,7 +9332,7 @@ dependencies = [ "parking_lot 0.12.5", "thiserror 1.0.69", "widestring", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -6154,6 +9428,12 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + [[package]] name = "nom" version = "7.1.3" @@ -6182,6 +9462,47 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" +[[package]] +name = "ntapi" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "nu-ansi-term" +version = "0.49.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c073d3c1930d0751774acf49e66653acecb416c3a54c6ec095a9b11caddb5a68" +dependencies = [ + "windows-sys 0.48.0", +] + +[[package]] +name = "nu-ansi-term" +version = "0.50.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "num" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b7a8e9be5e039e2ff869df49155f1c06bd01ade2117ec783e56ab0932b67a8f" +dependencies = [ + "num-bigint 0.3.3", + "num-complex 0.3.1", + "num-integer", + "num-iter", + "num-rational 0.3.2", + "num-traits", +] + [[package]] name = "num" version = "0.4.3" @@ -6189,10 +9510,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" dependencies = [ "num-bigint 0.4.6", - "num-complex", + "num-complex 0.4.6", "num-integer", "num-iter", - "num-rational", + "num-rational 0.4.2", "num-traits", ] @@ -6205,6 +9526,7 @@ dependencies = [ "autocfg", "num-integer", "num-traits", + "rand 0.7.3", ] [[package]] @@ -6235,6 +9557,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "num-complex" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" +dependencies = [ + "num-traits", +] + [[package]] name = "num-complex" version = "0.4.6" @@ -6250,6 +9581,17 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +[[package]] +name = "num-derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + [[package]] name = "num-integer" version = "0.1.46" @@ -6297,6 +9639,18 @@ dependencies = [ "rand 0.8.5", ] +[[package]] +name = "num-rational" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" +dependencies = [ + "autocfg", + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + [[package]] name = "num-rational" version = "0.4.2" @@ -6324,7 +9678,7 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi", + "hermit-abi 0.5.2", "libc", ] @@ -6370,6 +9724,30 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "num_threads" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +dependencies = [ + "libc", +] + +[[package]] +name = "objc2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05" +dependencies = [ + "objc2-encode", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + [[package]] name = "object" version = "0.32.2" @@ -6406,10 +9784,10 @@ dependencies = [ "md-5", "parking_lot 0.12.5", "percent-encoding", - "quick-xml", + "quick-xml 0.37.5", "rand 0.8.5", "reqwest", - "ring", + "ring 0.17.14", "rustls-pemfile", "serde", "serde_json", @@ -6441,6 +9819,12 @@ version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" +[[package]] +name = "oorandom" +version = "11.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e" + [[package]] name = "opaque-debug" version = "0.3.1" @@ -6534,6 +9918,16 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "ouroboros" +version = "0.15.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1358bd1558bd2a083fed428ffeda486fbfb323e698cdda7794259d592ca72db" +dependencies = [ + "aliasable", + "ouroboros_macro 0.15.6", +] + [[package]] name = "ouroboros" version = "0.17.2" @@ -6556,6 +9950,19 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "ouroboros_macro" +version = "0.15.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f7d21ccd03305a674437ee1248f3ab5d4b1db095cf1caf49f1713ddf61956b7" +dependencies = [ + "Inflector", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "ouroboros_macro" version = "0.17.2" @@ -6660,7 +10067,7 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" dependencies = [ - "arrayvec", + "arrayvec 0.7.6", "bitvec 0.20.4", "byte-slice-cast", "impl-trait-for-tuples", @@ -6674,7 +10081,7 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" dependencies = [ - "arrayvec", + "arrayvec 0.7.6", "bitvec 1.0.1", "byte-slice-cast", "const_format", @@ -6740,7 +10147,7 @@ dependencies = [ "libc", "redox_syscall 0.2.16", "smallvec", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -6753,7 +10160,35 @@ dependencies = [ "libc", "redox_syscall 0.5.18", "smallvec", - "windows-link 0.2.1", + "windows-link", +] + +[[package]] +name = "parse-zoneinfo" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" +dependencies = [ + "regex", +] + +[[package]] +name = "passkey-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "499cff8432e71c5f8784d9645aac0f9fca604d67f59b68a606170b5e229c6538" +dependencies = [ + "bitflags 2.10.0", + "ciborium", + "coset", + "data-encoding", + "indexmap 2.12.1", + "rand 0.8.5", + "serde", + "serde_json", + "sha2 0.10.9", + "strum 0.25.0", + "typeshare", ] [[package]] @@ -6767,7 +10202,7 @@ dependencies = [ "coset", "data-encoding", "getrandom 0.2.16", - "hmac", + "hmac 0.12.1", "indexmap 2.12.1", "rand 0.8.5", "serde", @@ -6801,6 +10236,16 @@ version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +[[package]] +name = "pbjson" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "048f9ac93c1eab514f9470c4bc8d97ca2a0a236b84f45cc19d69a59fc11467f6" +dependencies = [ + "base64 0.13.1", + "serde", +] + [[package]] name = "pbkdf2" version = "0.11.0" @@ -6810,6 +10255,15 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + [[package]] name = "pem" version = "3.0.6" @@ -6854,6 +10308,39 @@ dependencies = [ "ucd-trie", ] +[[package]] +name = "pest_derive" +version = "2.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f" +dependencies = [ + "pest", + "pest_generator", +] + +[[package]] +name = "pest_generator" +version = "2.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625" +dependencies = [ + "pest", + "pest_meta", + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "pest_meta" +version = "2.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82" +dependencies = [ + "pest", + "sha2 0.10.9", +] + [[package]] name = "petgraph" version = "0.6.5" @@ -6884,7 +10371,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ "phf_macros", - "phf_shared", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" +dependencies = [ + "phf_shared 0.12.1", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator", + "phf_shared 0.11.3", ] [[package]] @@ -6893,7 +10399,7 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared", + "phf_shared 0.11.3", "rand 0.8.5", ] @@ -6904,7 +10410,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.11.3", "proc-macro2", "quote", "syn 2.0.111", @@ -6916,7 +10422,16 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" dependencies = [ - "siphasher", + "siphasher 1.0.1", +] + +[[package]] +name = "phf_shared" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" +dependencies = [ + "siphasher 1.0.1", ] [[package]] @@ -6932,80 +10447,244 @@ dependencies = [ name = "pin-project-internal" version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.111", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkcs1" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" +dependencies = [ + "der 0.6.1", + "pkcs8 0.9.0", + "spki 0.6.0", + "zeroize", +] + +[[package]] +name = "pkcs1" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" +dependencies = [ + "der 0.7.10", + "pkcs8 0.10.2", + "spki 0.7.3", +] + +[[package]] +name = "pkcs8" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" +dependencies = [ + "der 0.6.1", + "spki 0.6.0", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der 0.7.10", + "spki 0.7.3", +] + +[[package]] +name = "pkcs8" +version = "0.11.0-rc.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77089aec8290d0b7bb01b671b091095cf1937670725af4fd73d47249f03b12c0" +dependencies = [ + "der 0.8.0-rc.10", + "spki 0.8.0-rc.4", +] + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plotters" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747" +dependencies = [ + "num-traits", + "plotters-backend", + "plotters-svg", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "plotters-backend" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a" + +[[package]] +name = "plotters-svg" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670" +dependencies = [ + "plotters-backend", +] + +[[package]] +name = "poem" +version = "3.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f977080932c87287147dca052951c3e2696f8759863f6b4e4c0c9ffe7a4cc8b" +dependencies = [ + "bytes", + "futures-util", + "headers", + "http", + "http-body-util", + "hyper", + "hyper-util", + "mime", + "multer", + "nix 0.30.1", + "parking_lot 0.12.5", + "percent-encoding", + "pin-project-lite", + "poem-derive", + "quick-xml 0.36.2", + "regex", + "rfc7239", + "serde", + "serde_json", + "serde_urlencoded", + "serde_yaml 0.9.34+deprecated", + "smallvec", + "sync_wrapper", + "tempfile", + "thiserror 2.0.17", + "tokio", + "tokio-stream", + "tokio-util", + "tracing", + "wildmatch", +] + +[[package]] +name = "poem-derive" +version = "3.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "056e2fea6de1cb240ffe23cfc4fc370b629f8be83b5f27e16b7acd5231a72de4" dependencies = [ + "proc-macro-crate 3.4.0", "proc-macro2", "quote", "syn 2.0.111", ] [[package]] -name = "pin-project-lite" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "pkcs1" -version = "0.4.1" +name = "poem-openapi" +version = "5.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719" +checksum = "1ccbcc395bf4dd03df1da32da351b6b6732e4074ce27ddec315650e52a2be44c" dependencies = [ - "der 0.6.1", - "pkcs8 0.9.0", - "spki 0.6.0", - "zeroize", + "base64 0.22.1", + "bytes", + "derive_more 2.1.1", + "futures-util", + "indexmap 2.12.1", + "itertools 0.14.0", + "mime", + "num-traits", + "poem", + "poem-openapi-derive", + "quick-xml 0.36.2", + "regex", + "serde", + "serde_json", + "serde_urlencoded", + "serde_yaml 0.9.34+deprecated", + "thiserror 2.0.17", + "tokio", + "url", ] [[package]] -name = "pkcs8" -version = "0.9.0" +name = "poem-openapi-derive" +version = "5.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" +checksum = "41273b691a3d467a8c44d05506afba9f7b6bd56c9cdf80123de13fe52d7ec587" dependencies = [ - "der 0.6.1", - "spki 0.6.0", + "darling 0.20.11", + "http", + "indexmap 2.12.1", + "mime", + "proc-macro-crate 3.4.0", + "proc-macro2", + "quote", + "regex", + "syn 2.0.111", + "thiserror 2.0.17", ] [[package]] -name = "pkcs8" -version = "0.10.2" +name = "polyval" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ - "der 0.7.10", - "spki 0.7.3", + "cfg-if", + "cpufeatures", + "opaque-debug", + "universal-hash", ] [[package]] -name = "pkg-config" -version = "0.3.32" +name = "pomelo" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +checksum = "76dd249f63dbbc68c8caa9b5fd16b32c7ba5da56df93d40a9552c91ebfd2a1cd" +dependencies = [ + "pomelo-impl", +] [[package]] -name = "polyval" -version = "0.6.2" +name = "pomelo-impl" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" +checksum = "597c3287a549da151aca6ada2795ecde089c7527bd5093114e8e0e1c3f0e52b1" dependencies = [ - "cfg-if", - "cpufeatures", - "opaque-debug", - "universal-hash", + "proc-macro2", + "quote", + "syn 1.0.109", ] [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd" [[package]] name = "portable-atomic-util" @@ -7109,6 +10788,16 @@ dependencies = [ "termtree", ] +[[package]] +name = "pretty" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad9940b913ee56ddd94aec2d3cd179dd47068236f42a1a6415ccf9d880ce2a61" +dependencies = [ + "arrayvec 0.5.2", + "typed-arena", +] + [[package]] name = "pretty_simple" version = "0.1.3" @@ -7167,7 +10856,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit 0.23.7", + "toml_edit 0.23.10+spec-1.0.0", ] [[package]] @@ -7194,6 +10883,18 @@ dependencies = [ "version_check", ] +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + [[package]] name = "proc-macro2" version = "1.0.103" @@ -7216,6 +10917,21 @@ dependencies = [ "yansi", ] +[[package]] +name = "procfs" +version = "0.14.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1de8dacb0873f77e6aefc6d71e044761fcc68060290f5b1089fcdf84626bb69" +dependencies = [ + "bitflags 1.3.2", + "byteorder", + "chrono", + "flate2", + "hex", + "lazy_static", + "rustix 0.36.17", +] + [[package]] name = "prometheus" version = "0.13.4" @@ -7271,6 +10987,16 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "prost" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" +dependencies = [ + "bytes", + "prost-derive 0.13.5", +] + [[package]] name = "prost" version = "0.14.1" @@ -7278,7 +11004,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7231bd9b3d3d33c86b58adbac74b5ec0ad9f496b19d22801d773636feaa95f3d" dependencies = [ "bytes", - "prost-derive", + "prost-derive 0.14.1", +] + +[[package]] +name = "prost-derive" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.111", ] [[package]] @@ -7294,13 +11033,22 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "prost-types" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" +dependencies = [ + "prost 0.13.5", +] + [[package]] name = "prost-types" version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9b4db3d6da204ed77bb26ba83b6122a73aeb2e87e25fbf7ad2e84c4ccbf8f72" dependencies = [ - "prost", + "prost 0.14.1", ] [[package]] @@ -7331,6 +11079,26 @@ dependencies = [ "serde", ] +[[package]] +name = "pulldown-cmark" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b" +dependencies = [ + "bitflags 2.10.0", + "memchr", + "unicase", +] + +[[package]] +name = "qstring" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e" +dependencies = [ + "percent-encoding", +] + [[package]] name = "quanta" version = "0.12.6" @@ -7343,7 +11111,7 @@ dependencies = [ "raw-cpuid", "wasi 0.11.1+wasi-snapshot-preview1", "web-sys", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -7352,6 +11120,16 @@ version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" +[[package]] +name = "quick-xml" +version = "0.36.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe" +dependencies = [ + "memchr", + "serde", +] + [[package]] name = "quick-xml" version = "0.37.5" @@ -7362,6 +11140,18 @@ dependencies = [ "serde", ] +[[package]] +name = "quick_cache" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb55a1aa7668676bb93926cd4e9cdfe60f03bb866553bcca9112554911b6d3dc" +dependencies = [ + "ahash 0.8.12", + "equivalent", + "hashbrown 0.14.5", + "parking_lot 0.12.5", +] + [[package]] name = "quinn" version = "0.11.9" @@ -7393,7 +11183,7 @@ dependencies = [ "getrandom 0.3.4", "lru-slab", "rand 0.9.2", - "ring", + "ring 0.17.14", "rustc-hash 2.1.1", "rustls", "rustls-pki-types", @@ -7548,6 +11338,12 @@ dependencies = [ "serde", ] +[[package]] +name = "rand_core" +version = "0.10.0-rc-3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f66ee92bc15280519ef199a274fe0cafff4245d31bc39aaa31c011ad56cb1f05" + [[package]] name = "rand_hc" version = "0.2.0" @@ -7584,6 +11380,21 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rapidhash" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9813f789f95ee4fe6b4d01834404d7cccacbc3f6c029343af910b3c2835eb9f1" + +[[package]] +name = "rapidhash" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2988730ee014541157f48ce4dcc603940e00915edc3c7f9a8d78092256bb2493" +dependencies = [ + "rustversion", +] + [[package]] name = "raw-cpuid" version = "11.6.0" @@ -7619,8 +11430,8 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2" dependencies = [ - "pem", - "ring", + "pem 3.0.6", + "ring 0.17.14", "rustls-pki-types", "time", "yasna", @@ -7655,6 +11466,15 @@ dependencies = [ "bitflags 2.10.0", ] +[[package]] +name = "redox_syscall" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5" +dependencies = [ + "bitflags 2.10.0", +] + [[package]] name = "redox_users" version = "0.4.6" @@ -7723,9 +11543,9 @@ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" [[package]] name = "reqwest" -version = "0.12.24" +version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ "base64 0.22.1", "bytes", @@ -7760,7 +11580,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower 0.5.2", - "tower-http 0.6.7", + "tower-http 0.6.8", "tower-service", "url", "wasm-bindgen", @@ -7777,7 +11597,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" dependencies = [ "crypto-bigint 0.4.9", - "hmac", + "hmac 0.12.1", "zeroize", ] @@ -7787,10 +11607,34 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ - "hmac", + "hmac 0.12.1", "subtle", ] +[[package]] +name = "rfc7239" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a82f1d1e38e9a85bb58ffcfadf22ed6f2c94e8cd8581ec2b0f80a2a6858350f" +dependencies = [ + "uncased", +] + +[[package]] +name = "ring" +version = "0.16.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" +dependencies = [ + "cc", + "libc", + "once_cell", + "spin 0.5.2", + "untrusted 0.7.1", + "web-sys", + "winapi 0.3.9", +] + [[package]] name = "ring" version = "0.17.14" @@ -7801,7 +11645,7 @@ dependencies = [ "cfg-if", "getrandom 0.2.16", "libc", - "untrusted", + "untrusted 0.9.0", "windows-sys 0.52.0", ] @@ -7814,6 +11658,15 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "rlimit" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7043b63bd0cd1aaa628e476b80e6d4023a3b50eb32789f2728908107bd0c793a" +dependencies = [ + "libc", +] + [[package]] name = "rlp" version = "0.5.2" @@ -7836,14 +11689,24 @@ dependencies = [ [[package]] name = "roaring" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f08d6a905edb32d74a5d5737a0c9d7e950c312f3c46cb0ca0a2ca09ea11878a0" +checksum = "8ba9ce64a8f45d7fc86358410bb1a82e8c987504c0d4900e9141d69a9f26c885" dependencies = [ "bytemuck", "byteorder", ] +[[package]] +name = "rocksdb" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f" +dependencies = [ + "libc", + "librocksdb-sys", +] + [[package]] name = "route-recognizer" version = "0.3.1" @@ -7862,7 +11725,7 @@ dependencies = [ "num-integer", "num-iter", "num-traits", - "pkcs1", + "pkcs1 0.4.1", "pkcs8 0.9.0", "rand_core 0.6.4", "sha2 0.10.9", @@ -7871,6 +11734,26 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rsa" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40a0376c50d0358279d9d643e4bf7b7be212f1f4ff1da9070a7b54d22ef75c88" +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 = "ruint" version = "1.17.0" @@ -7968,14 +11851,41 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "0.36.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" +dependencies = [ + "bitflags 1.3.2", + "errno", + "io-lifetimes", + "libc", + "linux-raw-sys 0.1.4", + "windows-sys 0.45.0", +] + +[[package]] +name = "rustix" +version = "0.38.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" +dependencies = [ + "bitflags 2.10.0", + "errno", + "libc", + "linux-raw-sys 0.4.15", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustix" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ "bitflags 2.10.0", "errno", "libc", - "linux-raw-sys", + "linux-raw-sys 0.11.0", "windows-sys 0.61.2", ] @@ -7987,7 +11897,7 @@ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" dependencies = [ "log", "once_cell", - "ring", + "ring 0.17.14", "rustls-pki-types", "rustls-webpki", "subtle", @@ -8017,9 +11927,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.13.0" +version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a" +checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282" dependencies = [ "web-time", "zeroize", @@ -8058,9 +11968,9 @@ version = "0.103.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" dependencies = [ - "ring", + "ring 0.17.14", "rustls-pki-types", - "untrusted", + "untrusted 0.9.0", ] [[package]] @@ -8105,9 +12015,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.20" +version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea" [[package]] name = "safe_arch" @@ -8345,6 +12255,10 @@ name = "semver" version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +dependencies = [ + "serde", + "serde_core", +] [[package]] name = "semver-parser" @@ -8384,6 +12298,24 @@ dependencies = [ "serde", ] +[[package]] +name = "serde-generate" +version = "0.20.6" +source = "git+https://github.com/aptos-labs/serde-reflection?rev=73b6bbf748334b71ff6d7d09d06a29e3062ca075#73b6bbf748334b71ff6d7d09d06a29e3062ca075" +dependencies = [ + "bcs 0.1.6", + "bincode 1.3.3", + "heck 0.3.3", + "include_dir", + "maplit", + "serde", + "serde-reflection 0.3.5", + "serde_bytes", + "serde_yaml 0.8.26", + "structopt", + "textwrap 0.13.4", +] + [[package]] name = "serde-name" version = "0.2.1" @@ -8394,6 +12326,16 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "serde-reflection" +version = "0.3.5" +source = "git+https://github.com/aptos-labs/serde-reflection?rev=73b6bbf748334b71ff6d7d09d06a29e3062ca075#73b6bbf748334b71ff6d7d09d06a29e3062ca075" +dependencies = [ + "once_cell", + "serde", + "thiserror 1.0.69", +] + [[package]] name = "serde-reflection" version = "0.5.1" @@ -8418,6 +12360,16 @@ dependencies = [ "serde_core", ] +[[package]] +name = "serde_cbor" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" +dependencies = [ + "half 1.8.3", + "serde", +] + [[package]] name = "serde_core" version = "1.0.228" @@ -8451,9 +12403,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.146" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "217ca874ae0207aac254aa02c957ded05585a90892cc8d87f9e5fa49669dadd8" dependencies = [ "indexmap 2.12.1", "itoa", @@ -8473,6 +12425,17 @@ dependencies = [ "serde_json", ] +[[package]] +name = "serde_merge" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "606e91878516232ac3b16c12e063d4468d762f16d77e7aef14a1f2326c5f409b" +dependencies = [ + "serde", + "serde_json", + "thiserror 1.0.69", +] + [[package]] name = "serde_path_to_error" version = "0.1.20" @@ -8506,9 +12469,9 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" dependencies = [ "serde_core", ] @@ -8527,9 +12490,9 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.16.0" +version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10574371d41b0d9b2cff89418eda27da52bcaff2cc8741db26382a77c29131f1" +checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7" dependencies = [ "base64 0.22.1", "chrono", @@ -8546,9 +12509,9 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.16.0" +version = "3.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a72d8216842fdd57820dc78d840bef99248e35fb2554ff923319e60f2d686b" +checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c" dependencies = [ "darling 0.21.3", "proc-macro2", @@ -8568,6 +12531,19 @@ dependencies = [ "yaml-rust", ] +[[package]] +name = "serde_yaml" +version = "0.9.34+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" +dependencies = [ + "indexmap 2.12.1", + "itoa", + "ryu", + "serde", + "unsafe-libyaml", +] + [[package]] name = "serial_test" version = "3.2.0" @@ -8614,6 +12590,7 @@ dependencies = [ "cpufeatures", "digest 0.9.0", "opaque-debug", + "sha2-asm", ] [[package]] @@ -8627,6 +12604,26 @@ dependencies = [ "digest 0.10.7", ] +[[package]] +name = "sha2" +version = "0.11.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19d43dc0354d88b791216bb5c1bfbb60c0814460cc653ae0ebd71f286d0bd927" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest 0.11.0-rc.4", +] + +[[package]] +name = "sha2-asm" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b845214d6175804686b2bd482bcffe96651bb2d1200742b712003504a2dac1ab" +dependencies = [ + "cc", +] + [[package]] name = "sha3" version = "0.9.1" @@ -8635,7 +12632,7 @@ checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" dependencies = [ "block-buffer 0.9.0", "digest 0.9.0", - "keccak", + "keccak 0.1.5", "opaque-debug", ] @@ -8646,7 +12643,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" dependencies = [ "digest 0.10.7", - "keccak", + "keccak 0.1.5", +] + +[[package]] +name = "sha3" +version = "0.11.0-rc.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2103ca0e6f4e9505eae906de5e5883e06fc3b2232fb5d6914890c7bbcb62f478" +dependencies = [ + "digest 0.11.0-rc.4", + "keccak 0.2.0-rc.0", ] [[package]] @@ -8659,6 +12666,19 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "shadow-rs" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c0ea0c68418544f725eba5401a5b965a2263254c92458d04aeae74e9d88ff4e" +dependencies = [ + "const_format", + "git2", + "is_debug", + "time", + "tzdb", +] + [[package]] name = "sharded-slab" version = "0.1.7" @@ -8673,7 +12693,7 @@ name = "shared-crypto" version = "0.0.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "eyre", "fastcrypto", "serde", @@ -8715,11 +12735,20 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "signature" +version = "3.0.0-rc.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a0251c9d6468f4ba853b6352b190fb7c1e405087779917c238445eb03993826" +dependencies = [ + "rand_core 0.10.0-rc-3", +] + [[package]] name = "simd-adler32" -version = "0.3.7" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" [[package]] name = "similar" @@ -8733,6 +12762,24 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "16e78919e05c9b8e123d435a4ad104b488ad1585631830e413830985c214086e" +[[package]] +name = "simple_asn1" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb" +dependencies = [ + "num-bigint 0.4.6", + "num-traits", + "thiserror 2.0.17", + "time", +] + +[[package]] +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" @@ -8749,12 +12796,46 @@ dependencies = [ "typenum", ] +[[package]] +name = "skeptic" +version = "0.13.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8" +dependencies = [ + "bytecount", + "cargo_metadata", + "error-chain", + "glob", + "pulldown-cmark", + "tempfile", + "walkdir", +] + [[package]] name = "slab" version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +[[package]] +name = "slh-dsa" +version = "0.2.0-rc.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5fbbd4f50bdf1b836e995e2fb4f404e1d7dcea34b7718bdb7769aca8b95e1c" +dependencies = [ + "const-oid 0.10.1", + "digest 0.11.0-rc.4", + "hmac 0.13.0-rc.3", + "hybrid-array", + "pkcs8 0.11.0-rc.8", + "rand_core 0.10.0-rc-3", + "sha2 0.11.0-rc.3", + "sha3 0.11.0-rc.3", + "signature 3.0.0-rc.5", + "typenum", + "zerocopy", +] + [[package]] name = "slip10_ed25519" version = "0.1.3" @@ -8764,12 +12845,46 @@ dependencies = [ "hmac-sha512", ] +[[package]] +name = "slug" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724" +dependencies = [ + "deunicode", + "wasm-bindgen", +] + +[[package]] +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 = [ + "fst", + "num 0.3.1", + "pomelo", + "structopt", +] + [[package]] name = "snafu" version = "0.8.9" @@ -8833,6 +12948,12 @@ dependencies = [ "sha1", ] +[[package]] +name = "spin" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" + [[package]] name = "spin" version = "0.9.8" @@ -8877,6 +12998,16 @@ dependencies = [ "der 0.7.10", ] +[[package]] +name = "spki" +version = "0.8.0-rc.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80" +dependencies = [ + "base64ct", + "der 0.8.0-rc.10", +] + [[package]] name = "stable_deref_trait" version = "1.2.1" @@ -8932,7 +13063,7 @@ dependencies = [ "starlark_syntax", "static_assertions", "strsim 0.10.0", - "textwrap", + "textwrap 0.11.0", "thiserror 1.0.69", ] @@ -8992,6 +13123,16 @@ 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 = [ + "ansi-escapes", + "atty", +] + [[package]] name = "string_cache" version = "0.8.9" @@ -9000,10 +13141,16 @@ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" dependencies = [ "new_debug_unreachable", "parking_lot 0.12.5", - "phf_shared", + "phf_shared 0.11.3", "precomputed-hash", ] +[[package]] +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + [[package]] name = "strsim" version = "0.10.0" @@ -9016,6 +13163,30 @@ 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 = [ + "clap 2.34.0", + "lazy_static", + "structopt-derive", +] + +[[package]] +name = "structopt-derive" +version = "0.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0" +dependencies = [ + "heck 0.3.3", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "strum" version = "0.25.0" @@ -9077,20 +13248,20 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "indexmap 2.12.1", "leb128", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-regex-borrow-graph", "move-trace-format", "move-vm-config", - "move-vm-profiler", - "move-vm-runtime", - "move-vm-types", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "mysten-common", "mysten-metrics", "parking_lot 0.12.5", @@ -9110,15 +13281,15 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "leb128", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v0", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", - "move-vm-profiler", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v0", "move-vm-types-v0", "once_cell", @@ -9138,15 +13309,15 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "leb128", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v1", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", - "move-vm-profiler", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v1", "move-vm-types-v1", "parking_lot 0.12.5", @@ -9165,15 +13336,15 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "leb128", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v2", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", - "move-vm-profiler", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v2", "move-vm-types-v2", "parking_lot 0.12.5", @@ -9193,8 +13364,8 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "anemo", "anyhow", - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "consensus-config", "csv", "dirs", @@ -9210,7 +13381,7 @@ dependencies = [ "serde", "serde_json", "serde_with", - "serde_yaml", + "serde_yaml 0.8.26", "starlark", "sui-keys", "sui-protocol-config", @@ -9224,7 +13395,7 @@ name = "sui-enum-compat-util" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "serde_yaml", + "serde_yaml 0.8.26", ] [[package]] @@ -9234,19 +13405,19 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "move-abstract-interpreter", "move-abstract-interpreter-v2", - "move-binary-format", - "move-bytecode-verifier", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "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 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-runtime-v0", "move-vm-runtime-v1", "move-vm-runtime-v2", - "move-vm-types", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-types-v0", "move-vm-types-v1", "move-vm-types-v2", @@ -9271,9 +13442,9 @@ name = "sui-framework" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", - "move-binary-format", - "move-core-types", + "bcs 0.1.6", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "once_cell", "serde", "sui-types", @@ -9286,7 +13457,7 @@ version = "1.60.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "bin-version", "serde", "serde_json", @@ -9321,11 +13492,11 @@ version = "0.0.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "fastcrypto", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "schemars 0.8.22", "serde", "serde_json", @@ -9358,18 +13529,18 @@ version = "0.0.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "bcs", + "bcs 0.1.6", "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-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-disassembler", - "move-ir-types", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "mysten-metrics", "schemars 0.8.22", "serde", @@ -9393,7 +13564,7 @@ dependencies = [ "anyhow", "async-trait", "base64 0.21.7", - "bcs", + "bcs 0.1.6", "bip32", "colored", "fastcrypto", @@ -9429,17 +13600,17 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "anyhow", "fastcrypto", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", - "move-command-line-common", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-compiler", - "move-core-types", - "move-ir-types", - "move-package", - "move-symbol-pool", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-ir-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-package 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "mysten-common", - "serde-reflection", + "serde-reflection 0.5.1", "sui-package-management", "sui-protocol-config", "sui-types", @@ -9452,17 +13623,17 @@ name = "sui-move-natives-latest" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "better_any", "fastcrypto", "fastcrypto-vdf", "fastcrypto-zkp", "indexmap 2.12.1", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-stdlib-natives", - "move-vm-runtime", - "move-vm-types", + "move-vm-runtime 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-vm-types 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "rand 0.8.5", "smallvec", "sui-protocol-config", @@ -9475,13 +13646,13 @@ name = "sui-move-natives-v0" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "better_any", "fastcrypto", "fastcrypto-zkp", "linked-hash-map", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-stdlib-natives-v0", "move-vm-runtime-v0", "move-vm-types-v0", @@ -9496,13 +13667,13 @@ name = "sui-move-natives-v1" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "better_any", "fastcrypto", "fastcrypto-zkp", "linked-hash-map", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-stdlib-natives-v1", "move-vm-runtime-v1", "move-vm-types-v1", @@ -9517,13 +13688,13 @@ name = "sui-move-natives-v2" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "better_any", "fastcrypto", "fastcrypto-zkp", "indexmap 2.12.1", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-stdlib-natives-v2", "move-vm-runtime-v2", "move-vm-types-v2", @@ -9538,7 +13709,7 @@ name = "sui-open-rpc" version = "1.60.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "bcs", + "bcs 0.1.6", "schemars 0.8.22", "serde", "serde_json", @@ -9564,9 +13735,9 @@ version = "1.60.1" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "anyhow", - "move-core-types", - "move-package", - "move-symbol-pool", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-package 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-symbol-pool 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "sui-framework-snapshot", "sui-json-rpc-types", "sui-protocol-config", @@ -9582,12 +13753,12 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "async-trait", - "bcs", + "bcs 0.1.6", "eyre", "lru 0.10.1", - "move-binary-format", - "move-command-line-common", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-command-line-common 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "serde", "sui-types", "thiserror 1.0.69", @@ -9611,10 +13782,10 @@ name = "sui-protocol-config" version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ - "clap", + "clap 4.5.53", "fastcrypto", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "schemars 0.8.22", "serde", @@ -9640,18 +13811,18 @@ version = "0.0.8" source = "git+https://github.com/MystenLabs/sui-rust-sdk.git?rev=fb62af78b30f5dc64eeaec0094ab95b5ce5b7ce2#fb62af78b30f5dc64eeaec0094ab95b5ce5b7ce2" dependencies = [ "base64 0.22.1", - "bcs", + "bcs 0.1.6", "bytes", "futures", "http", - "prost", - "prost-types", + "prost 0.14.1", + "prost-types 0.14.1", "serde", "serde_json", "sui-sdk-types", "tap", "tokio", - "tonic", + "tonic 0.14.2", "tonic-prost", ] @@ -9663,14 +13834,14 @@ dependencies = [ "anyhow", "async-trait", "base64 0.21.7", - "bcs", - "clap", + "bcs 0.1.6", + "clap 4.5.53", "colored", "fastcrypto", "futures", "futures-core", "jsonrpsee", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "reqwest", "serde", "serde_json", @@ -9694,19 +13865,19 @@ version = "0.0.8" source = "git+https://github.com/MystenLabs/sui-rust-sdk.git?rev=fb62af78b30f5dc64eeaec0094ab95b5ce5b7ce2#fb62af78b30f5dc64eeaec0094ab95b5ce5b7ce2" dependencies = [ "base64ct", - "bcs", + "bcs 0.1.6", "blake2", "bnum", "bs58 0.5.1", "bytes", "bytestring", "itertools 0.14.0", - "roaring 0.11.2", + "roaring 0.11.3", "serde", "serde_derive", "serde_json", "serde_with", - "winnow", + "winnow 0.7.14", ] [[package]] @@ -9716,10 +13887,10 @@ source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe dependencies = [ "anyhow", "async-trait", - "bcs", + "bcs 0.1.6", "futures", - "move-binary-format", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "sui-json", "sui-json-rpc-types", "sui-protocol-config", @@ -9735,7 +13906,7 @@ dependencies = [ "anyhow", "async-trait", "base64 0.21.7", - "bcs", + "bcs 0.1.6", "better_any", "bincode 1.3.3", "byteorder", @@ -9754,11 +13925,11 @@ dependencies = [ "indexmap 2.12.1", "itertools 0.13.0", "lru 0.10.1", - "move-binary-format", - "move-bytecode-utils", - "move-core-types", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-trace-format", - "move-vm-profiler", + "move-vm-profiler 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-test-utils", "mysten-common", "mysten-metrics", @@ -9770,12 +13941,12 @@ dependencies = [ "once_cell", "p384", "parking_lot 0.12.5", - "passkey-types", + "passkey-types 0.4.0", "prometheus", "proptest", "proptest-derive", - "prost", - "prost-types", + "prost 0.14.1", + "prost-types 0.14.1", "rand 0.8.5", "roaring 0.10.12", "rustls-pemfile", @@ -9796,7 +13967,7 @@ dependencies = [ "sui-sdk-types", "tap", "thiserror 1.0.69", - "tonic", + "tonic 0.14.2", "tracing", "typed-store-error", "x509-parser", @@ -9808,11 +13979,11 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", - "move-bytecode-verifier", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-verifier 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "sui-protocol-config", "sui-types", @@ -9824,11 +13995,11 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v0", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "sui-protocol-config", "sui-types", @@ -9840,11 +14011,11 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v1", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "sui-types", ] @@ -9855,11 +14026,11 @@ version = "0.1.0" source = "git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz#bed1a2317f3f2fe2595d6f80767865a17363bf95" dependencies = [ "move-abstract-stack", - "move-binary-format", - "move-bytecode-utils", + "move-binary-format 0.0.3 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", + "move-bytecode-utils 0.1.0 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-bytecode-verifier-meter", "move-bytecode-verifier-v2", - "move-core-types", + "move-core-types 0.0.4 (git+https://github.com/wtdcode/sui?branch=v1.60.1-fuzz)", "move-vm-config", "sui-protocol-config", "sui-types", @@ -9942,6 +14113,21 @@ dependencies = [ "syn 2.0.111", ] +[[package]] +name = "sysinfo" +version = "0.28.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4c2f3ca6693feb29a89724516f016488e9aafc7f37264f898593ee4b942f31b" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "rayon", + "winapi 0.3.9", +] + [[package]] name = "system-configuration" version = "0.6.1" @@ -9987,6 +14173,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "tagptr" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" + [[package]] name = "tap" version = "1.0.1" @@ -10037,10 +14229,32 @@ dependencies = [ "fastrand", "getrandom 0.3.4", "once_cell", - "rustix", + "rustix 1.1.3", "windows-sys 0.61.2", ] +[[package]] +name = "tera" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8004bca281f2d32df3bacd59bc67b312cb4c70cea46cbd79dbe8ac5ed206722" +dependencies = [ + "chrono", + "chrono-tz 0.9.0", + "globwalk", + "humansize", + "lazy_static", + "percent-encoding", + "pest", + "pest_derive", + "rand 0.8.5", + "regex", + "serde", + "serde_json", + "slug", + "unicode-segmentation", +] + [[package]] name = "term" version = "0.7.0" @@ -10049,7 +14263,7 @@ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" dependencies = [ "dirs-next", "rustversion", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -10067,7 +14281,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix", + "rustix 1.1.3", "windows-sys 0.60.2", ] @@ -10086,6 +14300,27 @@ dependencies = [ "unicode-width", ] +[[package]] +name = "textwrap" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" +dependencies = [ + "smawk", + "unicode-width", +] + +[[package]] +name = "textwrap" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7b3e525a49ec206798b40326a44121291b530c963cfb01018f63e135bac543d" +dependencies = [ + "smawk", + "unicode-linebreak", + "unicode-width", +] + [[package]] name = "thiserror" version = "1.0.69" @@ -10144,6 +14379,26 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "tikv-jemalloc-sys" +version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "tikv-jemallocator" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" +dependencies = [ + "libc", + "tikv-jemalloc-sys", +] + [[package]] name = "time" version = "0.3.44" @@ -10152,7 +14407,9 @@ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" dependencies = [ "deranged", "itoa", + "libc", "num-conv", + "num_threads", "powerfmt", "serde", "time-core", @@ -10182,7 +14439,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861" dependencies = [ "anyhow", - "hmac", + "hmac 0.12.1", "once_cell", "pbkdf2", "rand 0.8.5", @@ -10213,6 +14470,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" @@ -10342,17 +14609,29 @@ dependencies = [ [[package]] name = "toml" -version = "0.9.8" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", + "toml_edit 0.19.15", +] + +[[package]] +name = "toml" +version = "0.9.10+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8" +checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48" dependencies = [ "indexmap 2.12.1", "serde_core", - "serde_spanned 1.0.3", - "toml_datetime 0.7.3", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", "toml_writer", - "winnow", + "winnow 0.7.14", ] [[package]] @@ -10365,12 +14644,25 @@ dependencies = [ ] [[package]] -name = "toml_datetime" -version = "0.7.3" +name = "toml_datetime" +version = "0.7.5+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "serde_core", + "indexmap 2.12.1", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.11", + "winnow 0.5.40", ] [[package]] @@ -10384,28 +14676,28 @@ dependencies = [ "serde_spanned 0.6.9", "toml_datetime 0.6.11", "toml_write", - "winnow", + "winnow 0.7.14", ] [[package]] name = "toml_edit" -version = "0.23.7" +version = "0.23.10+spec-1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" +checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ "indexmap 2.12.1", - "toml_datetime 0.7.3", + "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", - "winnow", + "winnow 0.7.14", ] [[package]] name = "toml_parser" -version = "1.0.4" +version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" +checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" dependencies = [ - "winnow", + "winnow 0.7.14", ] [[package]] @@ -10416,9 +14708,44 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" [[package]] name = "toml_writer" -version = "1.0.4" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" + +[[package]] +name = "tonic" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2" +checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" +dependencies = [ + "async-stream", + "async-trait", + "axum 0.7.9", + "base64 0.22.1", + "bytes", + "flate2", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "prost 0.13.5", + "rustls-native-certs", + "rustls-pemfile", + "socket2 0.5.10", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower 0.4.13", + "tower-layer", + "tower-service", + "tracing", + "zstd", +] [[package]] name = "tonic" @@ -10427,7 +14754,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb7613188ce9f7df5bfe185db26c5814347d110db17920415cf2fbcad85e7203" dependencies = [ "async-trait", - "axum", + "axum 0.8.8", "base64 0.22.1", "bytes", "h2", @@ -10458,10 +14785,10 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2a82868bf299e0a1d2e8dce0dc33a46c02d6f045b2c1f1d6cc8dc3d0bf1812ef" dependencies = [ - "prost", + "prost 0.14.1", "tokio", "tokio-stream", - "tonic", + "tonic 0.14.2", "tonic-prost", ] @@ -10472,10 +14799,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "66bd50ad6ce1252d87ef024b3d64fe4c3cf54a86fb9ef4c631fdd0ded7aeaa67" dependencies = [ "bytes", - "prost", - "tonic", + "prost 0.14.1", + "tonic 0.14.2", +] + +[[package]] +name = "tonic-reflection" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "878d81f52e7fcfd80026b7fdb6a9b578b3c3653ba987f87f0dce4b64043cba27" +dependencies = [ + "prost 0.13.5", + "prost-types 0.13.5", + "tokio", + "tokio-stream", + "tonic 0.12.3", ] +[[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" @@ -10550,9 +14896,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.7" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cf146f99d442e8e68e585f5d798ccd3cad9a7835b917e09728880a862706456" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" dependencies = [ "bitflags 2.10.0", "bytes", @@ -10580,9 +14926,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", @@ -10592,9 +14938,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", @@ -10603,9 +14949,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", "valuable", @@ -10618,7 +14964,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db" dependencies = [ "tracing", - "tracing-subscriber", + "tracing-subscriber 0.3.22", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", ] [[package]] @@ -10631,18 +14988,47 @@ dependencies = [ "opentelemetry", "tracing", "tracing-core", - "tracing-subscriber", + "tracing-subscriber 0.3.22", +] + +[[package]] +name = "tracing-serde" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" +dependencies = [ + "serde", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.2.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e0d2eaa99c3c2e41547cfa109e910a68ea03823cccad4a0525dcbc9b01e8c71" +dependencies = [ + "tracing-core", ] [[package]] name = "tracing-subscriber" -version = "0.3.20" +version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" +checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" dependencies = [ + "matchers", + "nu-ansi-term 0.50.3", + "once_cell", + "regex-automata", + "serde", + "serde_json", "sharded-slab", + "smallvec", "thread_local", + "tracing", "tracing-core", + "tracing-log", + "tracing-serde", ] [[package]] @@ -10662,12 +15048,42 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7f741b240f1a48843f9b8e0444fb55fb2a4ff67293b50a9179dfd5ea67f8d41" +[[package]] +name = "triomphe" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39" +dependencies = [ + "serde", + "stable_deref_trait", +] + [[package]] name = "try-lock" 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.111", +] + [[package]] name = "tungstenite" version = "0.28.0" @@ -10691,6 +15107,12 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "141fb9f71ee586d956d7d6e4d5a9ef8e946061188520140f7591b668841d502e" +[[package]] +name = "typed-arena" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" + [[package]] name = "typed-builder" version = "0.22.0" @@ -10746,9 +15168,9 @@ dependencies = [ [[package]] name = "typeshare-annotation" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a615d6c2764852a2e88a4f16e9ce1ea49bb776b5872956309e170d63a042a34f" +checksum = "621963e302416b389a1ec177397e9e62de849a78bd8205d428608553def75350" dependencies = [ "quote", "syn 2.0.111", @@ -10760,6 +15182,36 @@ version = "1.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8c1ae7cc0fdb8b842d65d127cb981574b0d2b249b74d1c7a2986863dc134f71" +[[package]] +name = "tz-rs" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33851b15c848fad2cf4b105c6bb66eb9512b6f6c44a4b13f57c53c73c707e2b4" +dependencies = [ + "const_fn", +] + +[[package]] +name = "tzdb" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c420cf38925a5a6a3dc56e1c8f56f17a5b7755edd5adeb7cdab8b847e1fbe2af" +dependencies = [ + "iana-time-zone", + "tz-rs", + "tzdb_data", + "utcnow", +] + +[[package]] +name = "tzdb_data" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "310d19de36af75a78ec83fdb325bf4e3a13ab0ab77b7b1a13fabbd059e9b525b" +dependencies = [ + "tz-rs", +] + [[package]] name = "ucd-trie" version = "0.1.7" @@ -10793,6 +15245,15 @@ 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 = "unescape" version = "0.1.0" @@ -10811,6 +15272,12 @@ version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" +[[package]] +name = "unicode-linebreak" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f" + [[package]] name = "unicode-normalization" version = "0.1.25" @@ -10844,16 +15311,28 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common", + "crypto-common 0.1.7", "subtle", ] +[[package]] +name = "unsafe-libyaml" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" + [[package]] name = "unsigned-varint" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" +[[package]] +name = "untrusted" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" + [[package]] name = "untrusted" version = "0.9.0" @@ -10866,6 +15345,23 @@ version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" +[[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" @@ -10878,6 +15374,23 @@ dependencies = [ "serde", ] +[[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" @@ -10898,14 +15411,14 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.18.1" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" dependencies = [ "getrandom 0.3.4", "js-sys", "rand 0.9.2", - "serde", + "serde_core", "wasm-bindgen", ] @@ -10932,6 +15445,12 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + [[package]] name = "version_check" version = "0.9.5" @@ -11017,9 +15536,9 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b" [[package]] name = "wasm-bindgen" -version = "0.2.105" +version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60" +checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" dependencies = [ "cfg-if", "once_cell", @@ -11030,9 +15549,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.55" +version = "0.4.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0" +checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" dependencies = [ "cfg-if", "js-sys", @@ -11043,9 +15562,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.105" +version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2" +checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -11053,9 +15572,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.105" +version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc" +checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" dependencies = [ "bumpalo", "proc-macro2", @@ -11066,9 +15585,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" -version = "0.2.105" +version = "0.2.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76" +checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" dependencies = [ "unicode-ident", ] @@ -11088,9 +15607,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.82" +version = "0.3.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1" +checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" dependencies = [ "js-sys", "wasm-bindgen", @@ -11160,6 +15679,18 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" +[[package]] +name = "wildmatch" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68" + +[[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" @@ -11220,7 +15751,7 @@ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", - "windows-link 0.2.1", + "windows-link", "windows-result", "windows-strings", ] @@ -11232,7 +15763,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ "windows-core", - "windows-link 0.2.1", + "windows-link", "windows-threading", ] @@ -11258,12 +15789,6 @@ dependencies = [ "syn 2.0.111", ] -[[package]] -name = "windows-link" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" - [[package]] name = "windows-link" version = "0.2.1" @@ -11277,7 +15802,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ "windows-core", - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -11286,7 +15811,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-link 0.2.1", + "windows-link", "windows-result", "windows-strings", ] @@ -11297,7 +15822,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -11306,7 +15831,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -11318,6 +15843,15 @@ dependencies = [ "windows-targets 0.42.2", ] +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + [[package]] name = "windows-sys" version = "0.52.0" @@ -11351,7 +15885,7 @@ version = "0.61.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -11369,6 +15903,21 @@ dependencies = [ "windows_x86_64_msvc 0.42.2", ] +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + [[package]] name = "windows-targets" version = "0.52.6" @@ -11391,7 +15940,7 @@ version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ - "windows-link 0.2.1", + "windows-link", "windows_aarch64_gnullvm 0.53.1", "windows_aarch64_msvc 0.53.1", "windows_i686_gnu 0.53.1", @@ -11408,7 +15957,7 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ - "windows-link 0.2.1", + "windows-link", ] [[package]] @@ -11417,6 +15966,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + [[package]] name = "windows_aarch64_gnullvm" version = "0.52.6" @@ -11435,6 +15990,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + [[package]] name = "windows_aarch64_msvc" version = "0.52.6" @@ -11453,6 +16014,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + [[package]] name = "windows_i686_gnu" version = "0.52.6" @@ -11483,6 +16050,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + [[package]] name = "windows_i686_msvc" version = "0.52.6" @@ -11501,6 +16074,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + [[package]] name = "windows_x86_64_gnu" version = "0.52.6" @@ -11519,6 +16098,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + [[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" @@ -11537,6 +16122,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + [[package]] name = "windows_x86_64_msvc" version = "0.52.6" @@ -11551,9 +16142,18 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" -version = "0.7.13" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" +checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829" dependencies = [ "memchr", ] @@ -11585,6 +16185,16 @@ dependencies = [ "tap", ] +[[package]] +name = "x25519-dalek" +version = "1.2.0" +source = "git+https://github.com/aptos-labs/x25519-dalek?rev=b9cdbaf36bf2a83438d9f660e5a708c82ed60d8e#b9cdbaf36bf2a83438d9f660e5a708c82ed60d8e" +dependencies = [ + "curve25519-dalek", + "rand_core 0.5.1", + "zeroize", +] + [[package]] name = "x509-parser" version = "0.17.0" @@ -11597,7 +16207,7 @@ dependencies = [ "lazy_static", "nom", "oid-registry", - "ring", + "ring 0.17.14", "rusticata-macros", "thiserror 2.0.17", "time", @@ -11663,7 +16273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39c595f59bb8d2e0314a5ed34d0c14c262e7af153472cc23eb3d0fd69da3ea6d" dependencies = [ "log", - "num", + "num 0.4.3", "z3-sys", ] @@ -11677,20 +16287,31 @@ dependencies = [ "pkg-config", ] +[[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]] name = "zerocopy" -version = "0.8.30" +version = "0.8.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea879c944afe8a2b25fef16bb4ba234f47c694565e97383b36f3a878219065c" +checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.30" +version = "0.8.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf955aa904d6040f70dc8e9384444cb1030aed272ba3cb09bbc4ab9e7c1f34f5" +checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 5b39c9b..1a34fe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,6 +59,12 @@ petgraph = "0.8" glob = "0.3.3" tonic = "0.14" url = "2.5.7" +dashmap = "6.1.0" +bytes = "=1.10.1" + +poem = { version = "3.1.3", features = ["anyhow", "compression", "rustls"] } +poem-openapi = { version = "5.1.2", features = ["swagger-ui", "url"] } +poem-openapi-derive = "5.1.1" # Sui dependencies move-binary-format = {git = "https://github.com/wtdcode/sui", branch = "v1.60.1-fuzz"} @@ -117,6 +123,33 @@ fastcrypto = { git = "https://github.com/MystenLabs/fastcrypto", rev = "09f86974 # Aptos dependencies +aptos-config = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-crypto = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-db = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-executor = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-storage-interface = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-types = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-vm = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-vm-genesis = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-vm-environment = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-vm-logging = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-vm-types = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-aggregator = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-move-table-extension = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-table-extension"} +aptos-move-core-types = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-core-types"} +aptos-move-binary-format = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-binary-format" } +aptos-move-vm-types = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-vm-types" } +aptos-move-vm-runtime = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-vm-runtime" } +aptos-native-interface = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-gas-schedule = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-cached-packages = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-dynamic-transaction-composer = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3"} +aptos-move-model = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-model"} +aptos-move-stackless-bytecode = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-stackless-bytecode"} +aptos-move-bytecode-source-map = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-bytecode-source-map"} +aptos-move-ir-types = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-ir-types"} +aptos-move-command-line-common = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "move-command-line-common"} +aptos-keygen = { git = "https://github.com/wtdcode/aptos-core.git", rev = "5033ff3", package = "aptos-keygen"} movy = { version = "0.0.1", default-features = false, path = "crates/movy"} movy-sui = {version = "0.0.1", default-features = false, path = "crates/movy-sui"} @@ -128,4 +161,9 @@ movy-static-analysis = {version = "0.0.1", default-features = false, path = "cra [profile.dev.build-override] -opt-level = 3 \ No newline at end of file +opt-level = 3 + +# 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/movy-aptos/Cargo.toml b/crates/movy-aptos/Cargo.toml index 26b00c2..db7ae17 100644 --- a/crates/movy-aptos/Cargo.toml +++ b/crates/movy-aptos/Cargo.toml @@ -8,3 +8,76 @@ homepage.workspace = true repository.workspace = true [dependencies] +triomphe = "0.1.14" +anyhow = {workspace = true} +auto_impl = {workspace = true} +sui-types = {workspace = true} +log = {workspace = true} +env_logger = "0.10" +move-trace-format ={workspace = true} +move-binary-format = {workspace = true} +move-core-types = {workspace = true} +move-vm-runtime = {workspace = true, features = ["tracing"]} +move-vm-types = {workspace = true} +color-eyre = {workspace = true} +sui-execution.workspace = true +prometheus.workspace = true +ptree.workspace = true +itertools.workspace = true +reqwest.workspace = true +fastcrypto.workspace = true +cynic = {workspace = true, features = ["http-reqwest"] } +tokio = {workspace = true} +serde.workspace = true +bcs.workspace = true +chrono.workspace = true +serde_json.workspace = true +serde_json_any_key.workspace = true +rand.workspace = true +libafl = {workspace = true} +libafl_bolts = {workspace = true} +alloy-primitives = {workspace = true} +const-hex = {workspace = true} +move-vm-stack = { workspace = true } +mdbx-derive = {workspace = true} +z3 = {workspace = true} +tokio-stream = {workspace = true} +tempfile = {workspace = true} + +movy-analysis = {workspace = true} +movy-types = {workspace = true} +movy-sui = {workspace = true} + +aptos-config = { workspace = true } +aptos-crypto = { 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 } +aptos-move-vm-types = { workspace = true } +aptos-move-vm-runtime = { workspace = true } +aptos-native-interface = { workspace = true } +aptos-gas-schedule = { workspace = true } +aptos-cached-packages = { workspace = true } +aptos-dynamic-transaction-composer = { workspace = true } +aptos-keygen = { workspace = true } +bytes = { workspace = true } + +serde_yaml = "0.9" +dashmap = { workspace = true } + + +[build-dependencies] +tempfile.workspace = true +serde_json.workspace = true +movy-sui = {workspace = true} +movy-types = {workspace = true} diff --git a/crates/movy-aptos/examples/simple_test.rs b/crates/movy-aptos/examples/simple_test.rs new file mode 100644 index 0000000..f872447 --- /dev/null +++ b/crates/movy-aptos/examples/simple_test.rs @@ -0,0 +1,105 @@ +use aptos_move_core_types::{ + account_address::AccountAddress, + identifier::Identifier, + language_storage::ModuleId, +}; +use aptos_move_vm_runtime::execution_tracing::{TraceRecorder, MoveTracer}; +use aptos_move_vm_types::instr::Instruction; +use aptos_move_vm_runtime::LoadedFunction; +use aptos_move_core_types::function::ClosureMask; +use aptos_move_vm_runtime::execution_tracing::Trace; +use aptos_types::transaction::{EntryFunction, TransactionPayload}; + +use movy_aptos::{AptosMoveExecutor, aptos_custom_state::AptosCustomState}; + +/// The simplest tracer implementation +#[derive(Debug, Default)] +pub struct NoOpTracer; + +impl MoveTracer for NoOpTracer {} + +impl TraceRecorder for NoOpTracer { + fn is_enabled(&self) -> bool { + false + } + + fn finish(self) -> Trace { + Trace::default() + } + + fn record_successful_instruction(&mut self, _instruction: &Instruction) {} + fn record_branch_outcome(&mut self, _outcome: bool) {} + fn record_entrypoint(&mut self, _function: &LoadedFunction) {} + fn record_call_closure(&mut self, _function: &LoadedFunction, _mask: ClosureMask) {} +} + +fn main() { + println!("=== Simple test of AptosMoveExecutor::execute_transaction ===\n"); + + // 1. Create executor + println!("1. Creating AptosMoveExecutor..."); + let mut executor = AptosMoveExecutor::new(); + println!(" ✓ Executor created successfully\n"); + + // 2. Create state + println!("2. Creating AptosCustomState..."); + let state = AptosCustomState::default(); + println!(" ✓ State created successfully"); + println!(" - Loaded modules count: {}", state.module_bytes().len()); + println!(" - Total bytecode instructions: {}", state.total_bytecode_instructions()); + println!(" - Total possible edges: {}\n", state.total_possible_edges()); + + // 3. Create tracer + println!("3. Creating tracer..."); + let tracer = NoOpTracer; + println!(" ✓ Tracer created successfully\n"); + + // 4. Test execute_transaction function + println!("4. Testing execute_transaction function..."); + + // Create a simple transaction payload + let payload = TransactionPayload::EntryFunction(EntryFunction::new( + ModuleId::new( + AccountAddress::ONE, + Identifier::new("aptos_account").unwrap(), + ), + Identifier::new("create_account").unwrap(), + vec![], + vec![bcs::to_bytes(&AccountAddress::from_hex_literal("0x42").unwrap()).unwrap()], + )); + + println!(" Calling executor.execute_transaction()..."); + let result = executor.execute_transaction(payload, &state, tracer); + + println!(" Execution result:"); + match &result { + Ok(traced_results) => { + println!(" - Success: true"); + println!(" - VM status: {:?}", traced_results.results.vm_status); + } + Err(error) => { + println!(" - Success: false"); + println!(" - Error: {}", error); + } + } + + // 5. Analyze results + println!("\n5. Result analysis:"); + match result { + Ok(traced_results) => { + println!(" ✓ Transaction executed successfully!"); + println!(" VM status details: {:?}", traced_results.results.vm_status); + } + Err(error) => { + println!(" ⚠ Transaction execution failed: {}", error); + println!(" This may be due to:"); + println!(" - Missing on-chain configuration (e.g., gas schedule)"); + println!(" - Incomplete account state"); + println!(" - Or other VM configuration issues"); + println!(" However, this does not mean the execute_transaction function itself is problematic."); + } + } + + println!("\n=== Test completed ==="); + println!("AptosMoveExecutor::execute_transaction function has been successfully called and returned results."); +} \ No newline at end of file diff --git a/crates/movy-aptos/src/aptos_custom_state.rs b/crates/movy-aptos/src/aptos_custom_state.rs new file mode 100644 index 0000000..1313014 --- /dev/null +++ b/crates/movy-aptos/src/aptos_custom_state.rs @@ -0,0 +1,653 @@ +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_cached_packages::head_release_bundle; +use aptos_gas_schedule::{MiscGasParameters, NativeGasParameters}; +use aptos_move_binary_format::access::ModuleAccess; +use aptos_move_binary_format::control_flow_graph::{ControlFlowGraph, VMControlFlowGraph}; +use aptos_move_binary_format::errors::{PartialVMError, PartialVMResult, VMResult}; +use aptos_move_binary_format::file_format::CompiledScript; +use aptos_move_binary_format::CompiledModule; +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, NoOpLayoutCache}; +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_native_interface::SafeNativeBuilder; +use aptos_types::chain_id::ChainId; +use aptos_types::error::{PanicError, PanicOr}; +use aptos_types::on_chain_config::{ConfigStorage, Features, TimedFeaturesBuilder}; +use aptos_types::state_store::errors::StateViewError; +use aptos_types::state_store::state_key::inner::StateKeyInner; +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_types::state_store::StateViewId; +use aptos_types::write_set::{TransactionWrite, WriteSet}; +use aptos_vm::move_vm_ext::{AptosMoveResolver, AsExecutorView, AsResourceGroupView, ResourceGroupResolver}; +use aptos_vm_environment::natives::aptos_natives_with_builder; +use aptos_vm_environment::prod_configs::{aptos_default_ty_builder, aptos_prod_vm_config}; +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; +use dashmap::DashMap; + +#[derive(Clone)] +pub struct AptosCustomState { + kv_state: HashMap, + tables: HashMap<(TableHandle, Vec), Bytes>, + modules: HashMap, + scripts_deser: DashMap<[u8; 32], Arc>, + scripts_verified: DashMap<[u8; 32], Arc