diff --git a/Cargo.lock b/Cargo.lock index 8b6486ba4e..f159901efa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,15 +12,6 @@ dependencies = [ "regex", ] -[[package]] -name = "addr2line" -version = "0.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" -dependencies = [ - "gimli 0.27.3", -] - [[package]] name = "addr2line" version = "0.25.1" @@ -42,7 +33,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ - "crypto-common 0.1.6", + "crypto-common 0.1.7", "generic-array 0.14.7", ] @@ -121,7 +112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom 0.3.3", + "getrandom 0.3.4", "once_cell", "version_check", "zerocopy", @@ -129,9 +120,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] @@ -142,147 +133,204 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" +[[package]] +name = "alloy-consensus" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f16daaf7e1f95f62c6c3bf8a3fc3d78b08ae9777810c0bb5e94966c7cd57ef0" +dependencies = [ + "alloy-eips", + "alloy-primitives 1.6.1", + "alloy-rlp", + "alloy-trie", + "alloy-tx-macros", + "auto_impl", + "derive_more 2.1.1", + "either", + "once_cell", + "thiserror 2.0.18", +] + [[package]] name = "alloy-core" -version = "1.4.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "575053cea24ea8cb7e775e39d5c53c33b19cfd0ca1cf6c0fd653f3d8c682095f" +checksum = "e8421a5ee9019b6d89f92935d0f8facd9f6ca088b41d7cc47244a02ccde4545f" dependencies = [ - "alloy-dyn-abi", - "alloy-json-abi", - "alloy-primitives 1.5.3", + "alloy-primitives 1.6.1", "alloy-rlp", "alloy-sol-types", ] [[package]] -name = "alloy-dyn-abi" -version = "1.4.1" +name = "alloy-eip2124" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdff496dd4e98a81f4861e66f7eaf5f2488971848bb42d9c892f871730245c8" +checksum = "741bdd7499908b3aa0b159bba11e71c8cddd009a2c2eb7a06e825f1ec87900a5" dependencies = [ - "alloy-json-abi", - "alloy-primitives 1.5.3", - "alloy-sol-type-parser", - "alloy-sol-types", - "itoa", - "serde", - "serde_json", - "winnow 0.7.13", + "alloy-primitives 1.6.1", + "alloy-rlp", + "crc", + "thiserror 2.0.18", ] [[package]] -name = "alloy-json-abi" -version = "1.5.3" +name = "alloy-eip2930" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dad32d0724b70717ce15a76b48f11a4438010b85a90f728f476e99d5a6b06379" +checksum = "9441120fa82df73e8959ae0e4ab8ade03de2aaae61be313fbf5746277847ce25" dependencies = [ - "alloy-primitives 1.5.3", - "alloy-sol-type-parser", - "serde", - "serde_json", + "alloy-primitives 1.6.1", + "alloy-rlp", +] + +[[package]] +name = "alloy-eip7702" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2919c5a56a1007492da313e7a3b6d45ef5edc5d33416fdec63c0d7a2702a0d20" +dependencies = [ + "alloy-primitives 1.6.1", + "alloy-rlp", + "k256", + "thiserror 2.0.18", +] + +[[package]] +name = "alloy-eip7928" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b827a6d7784fe3eb3489d40699407a4cdcce74271421a01bdffe60cf573bb16" +dependencies = [ + "alloy-primitives 1.6.1", + "alloy-rlp", + "once_cell", + "thiserror 2.0.18", +] + +[[package]] +name = "alloy-eips" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6ef28c9fdad22d4eec52d894f5f2673a0895f1e5ef196734568e68c0f6caca8" +dependencies = [ + "alloy-eip2124", + "alloy-eip2930", + "alloy-eip7702", + "alloy-eip7928", + "alloy-primitives 1.6.1", + "alloy-rlp", + "auto_impl", + "derive_more 2.1.1", + "either", + "sha2 0.10.9", ] [[package]] name = "alloy-primitives" -version = "0.8.25" +version = "0.8.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c77490fe91a0ce933a1f219029521f20fc28c2c0ca95d53fa4da9c00b8d9d4e" +checksum = "777d58b30eb9a4db0e5f59bc30e8c2caef877fee7dc8734cf242a51a60f22e05" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", - "derive_more 2.0.1", + "derive_more 2.1.1", "foldhash 0.1.5", - "indexmap 2.11.4", + "indexmap 2.14.0", "itoa", "k256", "keccak-asm", "paste", "proptest", - "rand 0.8.6", + "rand 0.8.7", "ruint", - "rustc-hash 2.1.1", + "rustc-hash 2.1.3", "serde", - "sha3 0.10.8", + "sha3 0.10.9", "tiny-keccak", ] [[package]] name = "alloy-primitives" -version = "1.5.3" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1841ce147fa6cfdeb6b7751e2583b605bb8eef4238a2d3e0880b5cb3aba0e83" +checksum = "f007e257069855bdf21d27762fd3f3705a613f805c9a08309bf353503f081d71" 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.0", - "indexmap 2.11.4", + "hashbrown 0.17.1", "itoa", "k256", - "keccak-asm", "paste", - "proptest", - "rand 0.9.4", - "rapidhash", "ruint", - "rustc-hash 2.1.1", - "serde", - "sha3 0.10.8", + "sha3 0.11.0", ] [[package]] name = "alloy-rlp" -version = "0.3.12" +version = "0.3.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f70d83b765fdc080dbcd4f4db70d8d23fe4761f2f02ebfa9146b833900634b4" +checksum = "24671b1f62edcf0f9b62994c7bf72cd621a04a4b99f5020ece1a647b40e2f103" dependencies = [ - "arrayvec 0.7.6", + "alloy-rlp-derive", + "arrayvec 0.7.8", "bytes", ] +[[package]] +name = "alloy-rlp-derive" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d4311c03125e8a18296504560b9de3d75ecbd0dcda7f71e6cf2a196d57e6fba" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + [[package]] name = "alloy-sol-macro" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "840128ed2b2971d6d4668a553fe403a82683d3acc646c73e75887e7157408033" +checksum = "b5655c38d5f84955bf727b2eeb62fddd91ebb98fd1d7ae6eb77f73ea88f9b9cf" dependencies = [ "alloy-sol-macro-expander", "alloy-sol-macro-input", - "proc-macro-error2", + "proc-macro-error3", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "alloy-sol-macro-expander" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63ec265e5d65d725175f6ca7711c970824c90ef9c0d1f1973711d4150ee612dd" +checksum = "6277c780e07b76951e09a59788dde230d1582612324177d11a43a61e21a6bb83" dependencies = [ "alloy-sol-macro-input", "const-hex", "heck 0.5.0", - "indexmap 2.11.4", - "proc-macro-error2", + "indexmap 2.14.0", + "proc-macro-error3", "proc-macro2", "quote", "sha3 0.11.0", - "syn 2.0.106", + "syn 2.0.119", "syn-solidity", ] [[package]] name = "alloy-sol-macro-input" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89bf01077f18650876cfa682eb1f949967b5cde03f1a51c955c469d2c9b4aa67" +checksum = "9762b2ad3e5a0c09886de54fe549ab0056681df843cb082e2df7e1c0eb270d30" dependencies = [ "const-hex", "dunce", @@ -290,30 +338,45 @@ dependencies = [ "macro-string", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", "syn-solidity", ] [[package]] -name = "alloy-sol-type-parser" -version = "1.6.0" +name = "alloy-sol-types" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "857b470ecdd2ed38beaf82ad1a38c516a8ff75266750f38b9eeed001d575241b" +checksum = "d96e74d6213180f78dbdccddce8af02a639c160c94b0a543fa35c77c58b8a7fc" dependencies = [ - "serde", - "winnow 1.0.3", + "alloy-primitives 1.6.1", + "alloy-sol-macro", ] [[package]] -name = "alloy-sol-types" -version = "1.5.3" +name = "alloy-trie" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67a8a2c35dbb545c6945b933957556693839df252c712194bf201c9e528670a3" +checksum = "3f14b5d9b2c2173980202c6ff470d96e7c5e202c65a9f67884ad565226df7fbb" dependencies = [ - "alloy-json-abi", - "alloy-primitives 1.5.3", - "alloy-sol-macro", - "serde", + "alloy-primitives 1.6.1", + "alloy-rlp", + "derive_more 2.1.1", + "nybbles", + "smallvec", + "thiserror 2.0.18", + "tracing", +] + +[[package]] +name = "alloy-tx-macros" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d69722eddcdf1ce096c3ab66cf8116999363f734eb36fe94a148f4f71c85da84" +dependencies = [ + "darling 0.23.0", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -342,15 +405,15 @@ dependencies = [ "hex", "hmac 0.10.1", "pbkdf2 0.7.5", - "rand 0.8.6", + "rand 0.8.7", "sha2 0.9.9", ] [[package]] name = "anstream" -version = "0.6.21" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" dependencies = [ "anstyle", "anstyle-parse", @@ -363,44 +426,44 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" [[package]] name = "anstyle-parse" -version = "0.2.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.4" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.10" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "anyhow" -version = "1.0.100" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" +checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "approx" @@ -422,9 +485,15 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" + [[package]] name = "ark-bls12-377" version = "0.4.0" @@ -436,16 +505,28 @@ dependencies = [ "ark-std 0.4.0", ] +[[package]] +name = "ark-bls12-377" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfedac3173d12820a5e0d6cd4de31b49719a74f4a41dc09b6652d0276a3b2cd4" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-bls12-377-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20c7021f180a0cbea0380eba97c2af3c57074cdaffe0eef7e840e1c9f2841e55" +checksum = "07208c7ea9e7abfe8fb01e190eba611f6e7c3cdbdef4a5473c9297d396495d1b" dependencies = [ - "ark-bls12-377", - "ark-ec 0.4.2", + "ark-bls12-377 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", "ark-models-ext", - "ark-std 0.4.0", + "ark-std 0.5.0", ] [[package]] @@ -474,41 +555,52 @@ dependencies = [ [[package]] name = "ark-bls12-381-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1dc4b3d08f19e8ec06e949712f95b8361e43f1391d94f65e4234df03480631c" +checksum = "8a83d59f25570c846b9cfc430539a150e9634c9db6949f87b12f3cbc53149b17" dependencies = [ - "ark-bls12-381 0.4.0", - "ark-ec 0.4.2", - "ark-ff 0.4.2", + "ark-bls12-381 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", "ark-models-ext", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-serialize 0.5.0", + "ark-std 0.5.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-bw6-761" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e0605daf0cc5aa2034b78d008aaf159f56901d92a52ee4f6ecdfdac4f426700" +checksum = "1cc9cae367e0c3c0b52e3ef13371122752654f45d0212ec7306fb0c1c012cd98" dependencies = [ - "ark-bls12-377", - "ark-ec 0.4.2", - "ark-ff 0.4.2", - "ark-std 0.4.0", + "ark-bls12-377 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", ] [[package]] name = "ark-bw6-761-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccee5fba47266f460067588ee1bf070a9c760bf2050c1c509982c5719aadb4f2" +checksum = "60f7fc87dfb5699c1c5a12e8d4f13564c174a5224b5702002587ca67205a9ca7" dependencies = [ "ark-bw6-761", - "ark-ec 0.4.2", - "ark-ff 0.4.2", + "ark-ec 0.5.0", + "ark-ff 0.5.0", "ark-models-ext", - "ark-std 0.4.0", + "ark-std 0.5.0", ] [[package]] @@ -545,7 +637,6 @@ dependencies = [ "hashbrown 0.13.2", "itertools 0.10.5", "num-traits", - "rayon", "zeroize", ] @@ -567,44 +658,33 @@ dependencies = [ "num-bigint", "num-integer", "num-traits", + "rayon", "zeroize", ] [[package]] name = "ark-ed-on-bls12-377" -version = "0.4.0" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b10d901b9ac4b38f9c32beacedfadcdd64e46f8d7f8e88c1ae1060022cf6f6c6" +checksum = "ebbf817b2db27d2787009b2ff76304a5b90b4b01bb16aa8351701fd40f5f37b2" dependencies = [ - "ark-bls12-377", - "ark-ec 0.4.2", - "ark-ff 0.4.2", - "ark-std 0.4.0", + "ark-bls12-377 0.5.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", ] [[package]] name = "ark-ed-on-bls12-377-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524a4fb7540df2e1a8c2e67a83ba1d1e6c3947f4f9342cc2359fc2e789ad731d" +checksum = "93170025f4679342661d00f27c9a1586ccf053d29ad78b072d5be11649cae02c" dependencies = [ - "ark-ec 0.4.2", + "ark-ec 0.5.0", "ark-ed-on-bls12-377", - "ark-ff 0.4.2", + "ark-ff 0.5.0", "ark-models-ext", - "ark-std 0.4.0", -] - -[[package]] -name = "ark-ed-on-bls12-381-bandersnatch" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9cde0f2aa063a2a5c28d39b47761aa102bda7c13c84fc118a61b87c7b2f785c" -dependencies = [ - "ark-bls12-381 0.4.0", - "ark-ec 0.4.2", - "ark-ff 0.4.2", - "ark-std 0.4.0", + "ark-std 0.5.0", ] [[package]] @@ -621,15 +701,15 @@ dependencies = [ [[package]] name = "ark-ed-on-bls12-381-bandersnatch-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d15185f1acb49a07ff8cbe5f11a1adc5a93b19e211e325d826ae98e98e124346" +checksum = "ee7e1fb880811e22d4fc8ffe83eaa260e39a4deb0f345dcc8ffb663d3e034e7a" dependencies = [ - "ark-ec 0.4.2", - "ark-ed-on-bls12-381-bandersnatch 0.4.0", - "ark-ff 0.4.2", + "ark-ec 0.5.0", + "ark-ed-on-bls12-381-bandersnatch", + "ark-ff 0.5.0", "ark-models-ext", - "ark-std 0.4.0", + "ark-std 0.5.0", ] [[package]] @@ -680,7 +760,7 @@ dependencies = [ "ark-ff-macros 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "digest 0.10.7", "educe", "itertools 0.13.0", @@ -690,6 +770,23 @@ dependencies = [ "zeroize", ] +[[package]] +name = "ark-ff" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7a806ac6c8307b929df4645776290a50ee2aac754ad09d8bdf73391309e43af" +dependencies = [ + "ark-ff-asm 0.6.0", + "ark-ff-macros 0.6.0", + "ark-serialize 0.6.0", + "ark-std 0.6.0", + "digest 0.10.7", + "educe", + "num-bigint", + "num-traits", + "zeroize", +] + [[package]] name = "ark-ff-asm" version = "0.3.0" @@ -717,7 +814,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" dependencies = [ "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "ark-ff-asm" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1479009684adc073dff49a1025d3a7065b317a9ead25aaaca38cdc70058ba8a2" +dependencies = [ + "quote", + "syn 2.0.119", ] [[package]] @@ -755,22 +862,60 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "ark-ff-macros" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a0691ed21ef00ef89c1e9bda832eba493dda3ec2f8d892fb25b705f73f06bb8" +dependencies = [ + "num-bigint", + "num-traits", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] name = "ark-models-ext" -version = "0.4.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9eab5d4b5ff2f228b763d38442adc9b084b0a465409b059fac5c2308835ec2" +checksum = "6294fd6ddc4996910adf2a9d3b56e3aa6a1f605ea315952169d2ddebc304dc4c" dependencies = [ - "ark-ec 0.4.2", - "ark-ff 0.4.2", - "ark-serialize 0.4.2", - "ark-std 0.4.0", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", "derivative", ] +[[package]] +name = "ark-pallas" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c676d42c65f0b2d334fc0ae72a422de2e62ed75beb3022050c0e8a81f6ccc0f" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-std 0.5.0", +] + +[[package]] +name = "ark-pallas-ext" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6906648fb42b7c83fc40ea43b12fbf75b704532057d71a467a25ec4afc239b6" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-models-ext", + "ark-pallas", + "ark-serialize 0.5.0", + "ark-std 0.5.0", +] + [[package]] name = "ark-poly" version = "0.4.2" @@ -817,29 +962,15 @@ dependencies = [ ] [[package]] -name = "ark-relations" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00796b6efc05a3f48225e59cb6a2cda78881e7c390872d5786aaf112f31fb4f0" -dependencies = [ - "ark-ff 0.4.2", - "ark-std 0.4.0", - "tracing", - "tracing-subscriber 0.2.25", -] - -[[package]] -name = "ark-scale" -version = "0.0.11" +name = "ark-relations" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" +checksum = "00796b6efc05a3f48225e59cb6a2cda78881e7c390872d5786aaf112f31fb4f0" dependencies = [ - "ark-ec 0.4.2", "ark-ff 0.4.2", - "ark-serialize 0.4.2", "ark-std 0.4.0", - "parity-scale-codec", - "scale-info", + "tracing", + "tracing-subscriber 0.2.25", ] [[package]] @@ -862,6 +993,8 @@ version = "0.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "985c81a9c7b23a72f62b7b20686d5326d2a9956806f37de9ee35cb1238faf0c0" dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", "parity-scale-codec", @@ -898,9 +1031,23 @@ checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7" dependencies = [ "ark-serialize-derive 0.5.0", "ark-std 0.5.0", - "arrayvec 0.7.6", + "arrayvec 0.7.8", + "digest 0.10.7", + "num-bigint", + "rayon", +] + +[[package]] +name = "ark-serialize" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a74dd304fd536fb95d0a328e72be759209cc496a9da094c5bc56e5fea4f9e86b" +dependencies = [ + "ark-serialize-derive 0.6.0", + "ark-std 0.6.0", "digest 0.10.7", "num-bigint", + "serde_with", ] [[package]] @@ -922,7 +1069,18 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "ark-serialize-derive" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f153690697a2b91e5e1251ff98411ee5371500a111a0fd317a70e588eb300f9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -944,7 +1102,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1df2c09229cbc5a028b1d70e00fdb2acee28b1055dfb5ca73eea49c5a25c4e7c" dependencies = [ "num-traits", - "rand 0.8.6", + "rand 0.8.7", ] [[package]] @@ -954,8 +1112,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand 0.8.6", - "rayon", + "rand 0.8.7", ] [[package]] @@ -965,7 +1122,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a" dependencies = [ "num-traits", - "rand 0.8.6", + "rand 0.8.7", + "rayon", +] + +[[package]] +name = "ark-std" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "367c9c827ed431bff6868b7aa926e05b16eb46603cc8b6e768e4a5553fa1d155" +dependencies = [ + "num-traits", + "rand 0.8.7", ] [[package]] @@ -979,25 +1147,70 @@ dependencies = [ "ark-std 0.5.0", "digest 0.10.7", "rand_core 0.6.4", - "sha3 0.10.8", + "sha3 0.10.9", +] + +[[package]] +name = "ark-vesta" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3a6d658e5e7380af710828550b2dc2c7b033c9f3103d2690711cb07d5a62df6" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-pallas", + "ark-std 0.5.0", +] + +[[package]] +name = "ark-vesta-ext" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27dfabb2b731180273184366ebf57b1793600889e9c7b548916433dd19fb8932" +dependencies = [ + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-models-ext", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "ark-vesta", ] [[package]] name = "ark-vrf" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9501da18569b2afe0eb934fb7afd5a247d238b94116155af4dd068f319adfe6d" +checksum = "0d63e9780640021b74d02b32895d8cec1b4abe8e5547b560a6bda6b14b78c6da" dependencies = [ "ark-bls12-381 0.5.0", "ark-ec 0.5.0", - "ark-ed-on-bls12-381-bandersnatch 0.5.0", + "ark-ed-on-bls12-381-bandersnatch", "ark-ff 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", "digest 0.10.7", "rand_chacha 0.3.1", "sha2 0.10.9", - "w3f-ring-proof", + "w3f-ring-proof 0.0.2", + "zeroize", +] + +[[package]] +name = "ark-vrf" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b9bd02dbd2f282fe742d51f681adb2745a79dc8a025bc8d16cac9b255d55bf7" +dependencies = [ + "ark-bls12-381 0.5.0", + "ark-ec 0.5.0", + "ark-ed-on-bls12-381-bandersnatch", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "ark-std 0.5.0", + "digest 0.10.7", + "generic-array 0.14.7", + "sha2 0.10.9", + "w3f-ring-proof 0.0.8", "zeroize", ] @@ -1014,7 +1227,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "27d55334c98d756b32dcceb60248647ab34f027690f87f9a362fd292676ee927" dependencies = [ "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -1034,9 +1247,9 @@ dependencies = [ [[package]] name = "arrayvec" -version = "0.7.6" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" [[package]] name = "asn1-rs" @@ -1047,7 +1260,7 @@ dependencies = [ "asn1-rs-derive 0.5.1", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", "thiserror 1.0.69", @@ -1056,17 +1269,17 @@ dependencies = [ [[package]] name = "asn1-rs" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" +checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8" dependencies = [ "asn1-rs-derive 0.6.0", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", ] @@ -1078,8 +1291,8 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -1090,8 +1303,8 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -1102,7 +1315,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -1111,10 +1324,41 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" +[[package]] +name = "asset-test-utils" +version = "35.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "assets-common", + "cumulus-pallet-parachain-system", + "cumulus-pallet-xcmp-queue", + "cumulus-primitives-core", + "frame-support", + "frame-system", + "pallet-asset-conversion", + "pallet-assets", + "pallet-balances", + "pallet-collator-selection", + "pallet-session", + "pallet-timestamp", + "pallet-xcm", + "pallet-xcm-bridge-hub-router", + "parachains-common", + "parachains-runtimes-test-utils", + "parity-scale-codec", + "sp-io", + "sp-runtime", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", + "xcm-runtime-apis", +] + [[package]] name = "assets-common" -version = "0.22.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.33.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "ethereum-standards", @@ -1129,6 +1373,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", + "serde", "sp-api", "sp-core", "sp-runtime", @@ -1163,59 +1408,27 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.13.3" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8" +checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" dependencies = [ "async-task", "concurrent-queue", - "fastrand 2.3.0", - "futures-lite 2.6.1", + "fastrand", + "futures-lite", "pin-project-lite", "slab", ] -[[package]] -name = "async-fs" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279cf904654eeebfa37ac9bb1598880884924aab82e290aa65c9e77a0e142e06" -dependencies = [ - "async-lock 2.8.0", - "autocfg", - "blocking", - "futures-lite 1.13.0", -] - [[package]] name = "async-fs" version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" dependencies = [ - "async-lock 3.4.1", + "async-lock", "blocking", - "futures-lite 2.6.1", -] - -[[package]] -name = "async-io" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" -dependencies = [ - "async-lock 2.8.0", - "autocfg", - "cfg-if", - "concurrent-queue", - "futures-lite 1.13.0", - "log", - "parking", - "polling 2.8.0", - "rustix 0.37.28", - "slab", - "socket2 0.4.10", - "waker-fn", + "futures-lite", ] [[package]] @@ -1228,71 +1441,34 @@ dependencies = [ "cfg-if", "concurrent-queue", "futures-io", - "futures-lite 2.6.1", + "futures-lite", "parking", - "polling 3.11.0", - "rustix 1.1.2", + "polling", + "rustix 1.1.4", "slab", "windows-sys 0.61.2", ] [[package]] name = "async-lock" -version = "2.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" -dependencies = [ - "event-listener 2.5.3", -] - -[[package]] -name = "async-lock" -version = "3.4.1" +version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ "event-listener 5.4.1", "event-listener-strategy", "pin-project-lite", ] -[[package]] -name = "async-net" -version = "1.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f" -dependencies = [ - "async-io 1.13.0", - "blocking", - "futures-lite 1.13.0", -] - [[package]] name = "async-net" version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b948000fad4873c1c9339d60f2623323a0cfd3816e5181033c6a5cb68b2accf7" dependencies = [ - "async-io 2.6.0", - "blocking", - "futures-lite 2.6.1", -] - -[[package]] -name = "async-process" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" -dependencies = [ - "async-io 1.13.0", - "async-lock 2.8.0", - "async-signal", + "async-io", "blocking", - "cfg-if", - "event-listener 3.1.0", - "futures-lite 1.13.0", - "rustix 0.38.44", - "windows-sys 0.48.0", + "futures-lite", ] [[package]] @@ -1302,30 +1478,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" dependencies = [ "async-channel 2.5.0", - "async-io 2.6.0", - "async-lock 3.4.1", + "async-io", + "async-lock", "async-signal", "async-task", "blocking", "cfg-if", "event-listener 5.4.1", - "futures-lite 2.6.1", - "rustix 1.1.2", + "futures-lite", + "rustix 1.1.4", ] [[package]] name = "async-signal" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c" +checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485" dependencies = [ - "async-io 2.6.0", - "async-lock 3.4.1", + "async-io", + "async-lock", "atomic-waker", "cfg-if", "futures-core", "futures-io", - "rustix 1.1.2", + "rustix 1.1.4", "signal-hook-registry", "slab", "windows-sys 0.61.2", @@ -1345,7 +1521,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -1406,6 +1582,16 @@ dependencies = [ "url", ] +[[package]] +name = "aurora-engine-modexp" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "518bc5745a6264b5fd7b09dffb9667e400ee9e2bbe18555fac75e1fe9afa0df9" +dependencies = [ + "hex", + "num", +] + [[package]] name = "auto_impl" version = "1.3.0" @@ -1414,14 +1600,14 @@ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "autocfg" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" [[package]] name = "backtrace" @@ -1429,7 +1615,7 @@ version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line 0.25.1", + "addr2line", "cfg-if", "libc", "miniz_oxide", @@ -1461,16 +1647,16 @@ dependencies = [ ] [[package]] -name = "base58" -version = "0.2.0" +name = "base45" +version = "3.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" +checksum = "240e56f4d3c453c36faacb695c535a4d5f8c7d23dac175014f32eb0a71012a03" [[package]] -name = "base64" -version = "0.13.1" +name = "base58" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" +checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" [[package]] name = "base64" @@ -1486,9 +1672,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.8.0" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "basic-udev" @@ -1498,42 +1684,30 @@ checksum = "5a45f9771ced8a774de5e5ebffbe520f52e3943bf5a9a6baa3a5d14a5de1afe6" [[package]] name = "binary-merkle-tree" -version = "16.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "hash-db", "log", "parity-scale-codec", ] -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - [[package]] name = "bindgen" -version = "0.65.1" +version = "0.72.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.13.1", "cexpr", "clang-sys", - "lazy_static", - "lazycell", - "peeking_take_while", - "prettyplease", + "itertools 0.13.0", "proc-macro2", "quote", "regex", - "rustc-hash 1.1.0", - "shlex", - "syn 2.0.106", + "rustc-hash 2.1.3", + "shlex 1.3.0", + "syn 2.0.119", ] [[package]] @@ -1555,12 +1729,12 @@ dependencies = [ [[package]] name = "bip39" -version = "2.2.0" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43d193de1f7487df1914d3a568b772458861d33f9c54249612cc2893d6915054" +checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc" dependencies = [ - "bitcoin_hashes 0.13.0", - "rand 0.8.6", + "bitcoin_hashes", + "rand 0.8.7", "rand_core 0.6.4", "serde", "unicode-normalization", @@ -1582,35 +1756,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" [[package]] -name = "bitcoin-internals" -version = "0.2.0" +name = "bitcoin-consensus-encoding" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" +checksum = "207311705279250ba465076a1bac4b1ac982855fff73fc5f67e22158ac58cdc9" +dependencies = [ + "bitcoin-internals", + "hex-conservative 1.2.0", + "serde", +] [[package]] -name = "bitcoin-io" -version = "0.1.3" +name = "bitcoin-internals" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" +checksum = "d573f4cf32996a8dce612e4348cece65a241f1882ed594047c9ba348e8869fa5" [[package]] -name = "bitcoin_hashes" -version = "0.13.0" +name = "bitcoin-io" +version = "0.1.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" +checksum = "bb5de036369d1ac59d3c1819ebc4d850f89466f5401c571a285b6ed564a4cb78" dependencies = [ - "bitcoin-internals", - "hex-conservative 0.1.2", + "bitcoin-consensus-encoding", ] [[package]] name = "bitcoin_hashes" -version = "0.14.0" +version = "0.14.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +checksum = "bca4c7abb40c8817d77403c880988cfd484f23ab2365726afb2f798363e2c4a2" dependencies = [ "bitcoin-io", - "hex-conservative 0.2.1", + "hex-conservative 0.2.2", ] [[package]] @@ -1621,9 +1799,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.9.4" +version = "2.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" +checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" [[package]] name = "bittensor-core" @@ -1636,7 +1814,7 @@ dependencies = [ "bs58", "chacha20poly1305", "fernet", - "frame-metadata 23.0.0", + "frame-metadata", "getrandom 0.2.17", "hex", "hidapi", @@ -1657,6 +1835,7 @@ dependencies = [ "sha2 0.10.9", "sodiumoxide", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "subtensor-macros", "tle", "twox-hash 2.1.2", @@ -1689,9 +1868,9 @@ dependencies = [ [[package]] name = "bitvec" -version = "1.0.1" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" dependencies = [ "funty", "radium", @@ -1733,37 +1912,27 @@ dependencies = [ [[package]] name = "blake2b_simd" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" -dependencies = [ - "arrayref", - "arrayvec 0.7.6", - "constant_time_eq 0.3.1", -] - -[[package]] -name = "blake2s_simd" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" +checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3" dependencies = [ "arrayref", - "arrayvec 0.7.6", - "constant_time_eq 0.3.1", + "arrayvec 0.7.8", + "constant_time_eq 0.4.2", ] [[package]] name = "blake3" -version = "1.8.2" +version = "1.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0" +checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" dependencies = [ "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "cc", "cfg-if", - "constant_time_eq 0.3.1", + "constant_time_eq 0.4.2", + "cpufeatures 0.3.0", ] [[package]] @@ -1790,7 +1959,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" dependencies = [ - "hybrid-array 0.4.10", + "hybrid-array 0.4.13", ] [[package]] @@ -1808,31 +1977,32 @@ dependencies = [ "async-channel 2.5.0", "async-task", "futures-io", - "futures-lite 2.6.1", + "futures-lite", "piper", ] [[package]] name = "borsh" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1da5ab77c1437701eeff7c88d968729e7766172279eab0676857b3d63af7a6f" +checksum = "a88b7ea17d208c4193f2c1e6de3c35fe71f98c96982d5ced308bdcc749ff6e1f" dependencies = [ "borsh-derive", - "cfg_aliases 0.2.1", + "bytes", + "cfg_aliases 0.2.2", ] [[package]] name = "borsh-derive" -version = "1.6.0" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0686c856aa6aac0c4498f936d7d6a02df690f614c03e4d906d1018062b5c5e2c" +checksum = "d8f347189c62a579b8cd5f80714efa178f52e461dc2e6d701d264f5ff22e566c" dependencies = [ "once_cell", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -1848,10 +2018,11 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.2.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ad8a0bed7827f0b07a5d23cec2e58cc02038a99e4ca81616cb2bb2025f804d" +checksum = "dee8eddd066a8825ec5570528e6880471210fd5d88cb6abbe1cfdd51ca249c33" dependencies = [ + "jam-codec", "log", "parity-scale-codec", "scale-info", @@ -1869,8 +2040,8 @@ dependencies = [ [[package]] name = "bp-header-chain" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1886,8 +2057,8 @@ dependencies = [ [[package]] name = "bp-messages" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1902,8 +2073,8 @@ dependencies = [ [[package]] name = "bp-parachains" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1919,8 +2090,8 @@ dependencies = [ [[package]] name = "bp-polkadot-core" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-messages", "bp-runtime", @@ -1935,8 +2106,8 @@ dependencies = [ [[package]] name = "bp-relayers" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-messages", @@ -1953,14 +2124,13 @@ dependencies = [ [[package]] name = "bp-runtime" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", "hash-db", "impl-trait-for-tuples", - "log", "num-traits", "parity-scale-codec", "scale-info", @@ -1971,13 +2141,14 @@ dependencies = [ "sp-state-machine", "sp-std", "sp-trie", + "tracing", "trie-db", ] [[package]] name = "bp-test-utils" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1996,8 +2167,8 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub" -version = "0.7.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.14.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-messages", "bp-runtime", @@ -2013,8 +2184,8 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" -version = "0.18.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.25.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -2025,8 +2196,8 @@ dependencies = [ [[package]] name = "bridge-hub-common" -version = "0.14.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.22.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2044,8 +2215,8 @@ dependencies = [ [[package]] name = "bridge-runtime-common" -version = "0.22.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.30.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-messages", @@ -2055,7 +2226,6 @@ dependencies = [ "bp-runtime", "frame-support", "frame-system", - "log", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", @@ -2070,6 +2240,7 @@ dependencies = [ "sp-trie", "sp-weights", "staging-xcm", + "tracing", "tuplex", ] @@ -2085,13 +2256,13 @@ dependencies = [ [[package]] name = "bstr" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab" +checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530" dependencies = [ "memchr", - "regex-automata", - "serde", + "regex-automata 0.4.16", + "serde_core", ] [[package]] @@ -2105,9 +2276,12 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" +dependencies = [ + "allocator-api2", +] [[package]] name = "byte-slice-cast" @@ -2145,9 +2319,9 @@ dependencies = [ [[package]] name = "bytemuck" -version = "1.24.0" +version = "1.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4" +checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424" [[package]] name = "byteorder" @@ -2160,9 +2334,6 @@ name = "bytes" version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" -dependencies = [ - "serde", -] [[package]] name = "bzip2-sys" @@ -2186,9 +2357,9 @@ dependencies = [ [[package]] name = "camino" -version = "1.2.1" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" +checksum = "5f2d30e4173c4026932d51d31d6b0613b1fd3014bf3f9f8943d4ba139c437ba0" dependencies = [ "serde_core", ] @@ -2210,7 +2381,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.27", + "semver 1.0.28", "serde", "serde_json", "thiserror 1.0.69", @@ -2224,14 +2395,14 @@ checksum = "fd6c0e7b807d60291f42f33f58480c0bfafe28ed08286446f45e463728cf9c1c" [[package]] name = "cc" -version = "1.2.40" +version = "1.2.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1d05d92f4b1fd76aad469d46cdd858ca761576082cd37df81416691e50199fb" +checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38" dependencies = [ "find-msvc-tools", "jobserver", "libc", - "shlex", + "shlex 2.0.1", ] [[package]] @@ -2246,7 +2417,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -2260,9 +2431,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -2272,9 +2443,9 @@ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] name = "cfg_aliases" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" [[package]] name = "chacha" @@ -2299,13 +2470,13 @@ dependencies = [ [[package]] name = "chacha20" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601" +checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" dependencies = [ "cfg-if", "cpufeatures 0.3.0", - "rand_core 0.10.0", + "rand_core 0.10.1", ] [[package]] @@ -2323,9 +2494,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" dependencies = [ "iana-time-zone", "js-sys", @@ -2337,26 +2508,12 @@ dependencies = [ [[package]] name = "cid" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" -dependencies = [ - "core2", - "multibase", - "multihash 0.17.0", - "serde", - "unsigned-varint 0.7.2", -] - -[[package]] -name = "cid" -version = "0.11.1" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" +checksum = "21a304f95f84d169a6f31c4d0a30d784643aaa0bbc9c1e449a2c23e963ec4971" dependencies = [ - "core2", "multibase", - "multihash 0.19.3", + "multihash", "unsigned-varint 0.8.0", ] @@ -2375,7 +2532,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common 0.1.6", + "crypto-common 0.1.7", "inout", "zeroize", ] @@ -2388,14 +2545,13 @@ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", - "libloading", ] [[package]] name = "clap" -version = "4.5.48" +version = "4.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae" +checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011" dependencies = [ "clap_builder", "clap_derive", @@ -2403,9 +2559,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.48" +version = "4.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9" +checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b" dependencies = [ "anstream", "anstyle", @@ -2416,42 +2572,51 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.47" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "clap_lex" -version = "0.7.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "coarsetime" -version = "0.1.36" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91849686042de1b41cd81490edc83afbcb0abe5a9b6f2c4114f23ce8cca1bcf4" +checksum = "e58eb270476aa4fc7843849f8a35063e8743b4dbcdf6dd0f8ea0886980c204c2" dependencies = [ "libc", "wasix", "wasm-bindgen", ] +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror 2.0.18", +] + [[package]] name = "codespan-reporting" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" +checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" dependencies = [ "serde", "termcolor", - "unicode-width 0.2.2", + "unicode-width", ] [[package]] @@ -2469,17 +2634,17 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "692186b5ebe54007e45a59aea47ece9eb4108e141326c304cdc91699a7118a22" dependencies = [ - "nom", + "nom 7.1.3", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "colorchoice" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" [[package]] name = "combine" @@ -2493,12 +2658,12 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.2.1" +version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b03b7db8e0b4b2fdad6c551e634134e99ec000e5c8c3b6856c65e8bbaded7a3b" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ "unicode-segmentation", - "unicode-width 0.2.2", + "unicode-width", ] [[package]] @@ -2518,22 +2683,32 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "unicode-width 0.1.14", - "windows-sys 0.52.0", + "once_cell", + "unicode-width", + "windows-sys 0.59.0", +] + +[[package]] +name = "const-crypto" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c06f1eb05f06cf2e380fdded278fbf056a38974299d77960555a311dcf91a52" +dependencies = [ + "keccak-const", + "sha2-const-stable", ] [[package]] name = "const-hex" -version = "1.16.0" +version = "1.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6407bff74dea37e0fa3dc1c1c974e5d46405f0c987bf9997a0762adce71eda6" +checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558" dependencies = [ "cfg-if", "cpufeatures 0.2.17", @@ -2547,6 +2722,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "const-random" version = "0.1.18" @@ -2575,11 +2756,12 @@ checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" [[package]] name = "const_format" -version = "0.2.35" +version = "0.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad" +checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e" dependencies = [ "const_format_proc_macros", + "konst", ] [[package]] @@ -2601,9 +2783,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" [[package]] name = "convert_case" @@ -2611,6 +2793,24 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" +[[package]] +name = "convert_case" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +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" @@ -2637,20 +2837,11 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" -[[package]] -name = "core2" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" -dependencies = [ - "memchr", -] - [[package]] name = "cpp_demangle" -version = "0.3.5" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" +checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ "cfg-if", ] @@ -2683,118 +2874,158 @@ dependencies = [ "libc", ] +[[package]] +name = "cranelift-assembler-x64" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cd990d8a6304475bbad64534a0d418f5572f44d5f011437e6b9f1ee7d5c2570" +dependencies = [ + "cranelift-assembler-x64-meta", +] + +[[package]] +name = "cranelift-assembler-x64-meta" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccabe4636007296721080e02d7dab46d4319638ec4e3f6f7402fcb46dc5122c6" +dependencies = [ + "cranelift-srcgen", +] + [[package]] name = "cranelift-bforest" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" +checksum = "da7ed173c870c0aea202a9830880156905a028a88df076e35ce383a8acbf90a7" dependencies = [ "cranelift-entity", ] +[[package]] +name = "cranelift-bitset" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "800cc586df98b12c502e76707c96565e40629a5322eaa15aaa34ba05f5721e31" +dependencies = [ + "serde", + "serde_derive", +] + [[package]] name = "cranelift-codegen" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6e8c31ad3b2270e9aeec38723888fe1b0ace3bea2b06b3f749ccf46661d3220" +checksum = "ae93f863f9094ae34d2567f9edb0ae2c41d35228b286598354dd78b198868ebd" dependencies = [ "bumpalo", + "cranelift-assembler-x64", "cranelift-bforest", + "cranelift-bitset", "cranelift-codegen-meta", "cranelift-codegen-shared", + "cranelift-control", "cranelift-entity", "cranelift-isle", - "gimli 0.27.3", - "hashbrown 0.13.2", + "gimli 0.32.3", + "hashbrown 0.15.5", "log", - "regalloc2 0.6.1", + "pulley-interpreter", + "regalloc2 0.12.2", + "rustc-hash 2.1.3", + "serde", "smallvec", - "target-lexicon", + "target-lexicon 0.13.5", + "wasmtime-internal-math", ] [[package]] name = "cranelift-codegen-meta" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8ac5ac30d62b2d66f12651f6b606dbdfd9c2cfd0908de6b387560a277c5c9da" +checksum = "38c505162bcf77dcb859905b3eac56a1917fc3cf326424fb06e7732031e3a8ae" dependencies = [ + "cranelift-assembler-x64-meta", "cranelift-codegen-shared", + "cranelift-srcgen", + "heck 0.5.0", + "pulley-interpreter", ] [[package]] name = "cranelift-codegen-shared" -version = "0.95.1" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3b786958bcb79bdb5fbae095af58f0c2da7d7895c475c991f6a6bb5a9c7e6d9" + +[[package]] +name = "cranelift-control" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" +checksum = "2faf9a5009bce7f725ce2af7a08c4883ebac6af933e7e0aa7d84f976f4e6deb5" +dependencies = [ + "arbitrary", +] [[package]] name = "cranelift-entity" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40099d38061b37e505e63f89bab52199037a72b931ad4868d9089ff7268660b0" +checksum = "017271194ba5e101d626560d0d6767efd341468d1ba0f4d015f19fe64020b65b" dependencies = [ + "cranelift-bitset", "serde", + "serde_derive", ] [[package]] name = "cranelift-frontend" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" +checksum = "f80847f0929967f0cec82f9e0543b3901e0f0063690405891f22107b5a130fd8" dependencies = [ "cranelift-codegen", "log", "smallvec", - "target-lexicon", + "target-lexicon 0.13.5", ] [[package]] name = "cranelift-isle" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80de6a7d0486e4acbd5f9f87ec49912bf4c8fb6aea00087b989685460d4469ba" +checksum = "75904abbc0e7b46d20f7a49c8042c8a4481c0db4253b99889c723c566295d506" [[package]] name = "cranelift-native" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6b03e0e03801c4b3fd8ce0758a94750c07a44e7944cc0ffbf0d3f2e7c79b00" +checksum = "6e0135923540574362e16f01bf40000664263840991039ff3041ba717de6cf3a" dependencies = [ "cranelift-codegen", "libc", - "target-lexicon", + "target-lexicon 0.13.5", ] [[package]] -name = "cranelift-wasm" -version = "0.95.1" +name = "cranelift-srcgen" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" -dependencies = [ - "cranelift-codegen", - "cranelift-entity", - "cranelift-frontend", - "itertools 0.10.5", - "log", - "smallvec", - "wasmparser 0.102.0", - "wasmtime-types", -] +checksum = "93fb12f76c482e034f6ebefa843c914e74112f088215d8d36d33a649f9fab99b" [[package]] name = "crc" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" +checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" dependencies = [ "crc-catalog", ] [[package]] name = "crc-catalog" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" +checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" [[package]] name = "crc32fast" @@ -2813,18 +3044,18 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "crossbeam-channel" -version = "0.5.15" +version = "0.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -2832,27 +3063,27 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.18" +version = "0.9.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-queue" -version = "0.3.12" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.21" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" [[package]] name = "crunchy" @@ -2874,9 +3105,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", @@ -2889,7 +3120,7 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" dependencies = [ - "hybrid-array 0.4.10", + "hybrid-array 0.4.13", ] [[package]] @@ -2957,12 +3188,11 @@ dependencies = [ [[package]] name = "cumulus-client-bootnodes" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", - "cumulus-client-network", "cumulus-primitives-core", "cumulus-relay-chain-interface", "futures", @@ -2970,10 +3200,9 @@ dependencies = [ "ip_network", "log", "num-traits", - "parachains-common", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-network", "sc-service", "sp-consensus-babe", @@ -2983,8 +3212,8 @@ dependencies = [ [[package]] name = "cumulus-client-cli" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "clap", "parity-scale-codec", @@ -3000,8 +3229,8 @@ dependencies = [ [[package]] name = "cumulus-client-collator" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -3023,14 +3252,14 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-client-collator", "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", "cumulus-client-parachain-inherent", + "cumulus-client-proof-size-recording", "cumulus-primitives-aura", "cumulus-primitives-core", "cumulus-relay-chain-interface", @@ -3047,6 +3276,7 @@ dependencies = [ "sc-consensus-aura", "sc-consensus-babe", "sc-consensus-slots", + "sc-network-types", "sc-telemetry", "sc-utils", "schnellru", @@ -3057,6 +3287,7 @@ dependencies = [ "sp-consensus", "sp-consensus-aura", "sp-core", + "sp-externalities", "sp-inherents", "sp-keystore", "sp-runtime", @@ -3070,8 +3301,8 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -3100,25 +3331,10 @@ dependencies = [ "tracing", ] -[[package]] -name = "cumulus-client-consensus-proposer" -version = "0.20.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" -dependencies = [ - "anyhow", - "async-trait", - "cumulus-primitives-parachain-inherent", - "sp-consensus", - "sp-inherents", - "sp-runtime", - "sp-state-machine", - "thiserror 1.0.69", -] - [[package]] name = "cumulus-client-consensus-relay-chain" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -3140,8 +3356,8 @@ dependencies = [ [[package]] name = "cumulus-client-network" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -3153,6 +3369,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-parachain-primitives", "polkadot-primitives", + "polkadot-primitives-test-helpers", "sc-client-api", "sc-network", "sp-api", @@ -3167,8 +3384,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.18.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3178,7 +3395,8 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus-babe", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sc-network-types", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -3188,8 +3406,8 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3202,22 +3420,35 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-overseer", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "sc-client-api", "sc-consensus", "sc-network", "sp-api", "sp-consensus", + "sp-core", "sp-maybe-compressed-blob", "sp-runtime", "sp-version", "tracing", ] +[[package]] +name = "cumulus-client-proof-size-recording" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "parity-scale-codec", + "sc-client-api", + "sp-blockchain", + "sp-runtime", + "sp-trie", +] + [[package]] name = "cumulus-client-service" -version = "0.25.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.36.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-channel 1.9.0", "cumulus-client-cli", @@ -3225,6 +3456,7 @@ dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", "cumulus-client-pov-recovery", + "cumulus-client-proof-size-recording", "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "cumulus-relay-chain-inprocess-interface", @@ -3232,6 +3464,7 @@ dependencies = [ "cumulus-relay-chain-minimal-node", "cumulus-relay-chain-streams", "futures", + "polkadot-overseer", "polkadot-primitives", "prometheus", "sc-client-api", @@ -3243,21 +3476,24 @@ dependencies = [ "sc-service", "sc-sysinfo", "sc-telemetry", + "sc-tracing", "sc-transaction-pool", "sc-utils", "sp-api", "sp-blockchain", "sp-consensus", "sp-core", + "sp-crypto-ec-utils", "sp-io", "sp-runtime", "sp-transaction-pool", + "sp-trie", ] [[package]] name = "cumulus-pallet-aura-ext" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -3273,8 +3509,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -3290,14 +3526,17 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "array-bytes 6.2.3", "bytes", "cumulus-pallet-parachain-system-proc-macro", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", + "derive-where", + "docify", "environmental", "frame-benchmarking", "frame-support", @@ -3308,10 +3547,13 @@ dependencies = [ "pallet-message-queue", "parity-scale-codec", "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-parachains", "scale-info", + "sp-api", "sp-consensus-babe", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-externalities", "sp-inherents", "sp-io", @@ -3328,18 +3570,18 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.6.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "cumulus-pallet-session-benchmarking" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -3351,8 +3593,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-solo-to-para" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -3366,8 +3608,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-weight-reclaim" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "derive-where", @@ -3385,8 +3627,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" -version = "0.20.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -3400,16 +3642,16 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.30.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "approx", - "bounded-collections 0.2.4", + "bitflags 1.3.2", + "bounded-collections 0.3.2", "cumulus-primitives-core", "frame-benchmarking", "frame-support", "frame-system", - "log", "pallet-message-queue", "parity-scale-codec", "polkadot-runtime-common", @@ -3421,12 +3663,13 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] name = "cumulus-ping" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", @@ -3440,8 +3683,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" -version = "0.18.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.24.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "sp-api", "sp-consensus-aura", @@ -3449,8 +3692,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" -version = "0.19.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -3466,8 +3709,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.19.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3480,8 +3723,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.13.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.20.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -3490,8 +3733,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "12.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "20.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -3507,8 +3750,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.30.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -3524,8 +3767,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" -version = "0.25.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.36.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -3552,8 +3795,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3566,14 +3809,15 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-state-machine", + "sp-storage", "sp-version", "thiserror 1.0.69", ] [[package]] name = "cumulus-relay-chain-minimal-node" -version = "0.25.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.36.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -3608,30 +3852,24 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" -version = "0.24.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "cumulus-primitives-core", "cumulus-relay-chain-interface", - "either", "futures", "futures-timer", "jsonrpsee", "parity-scale-codec", - "pin-project", "polkadot-overseer", "prometheus", - "rand 0.8.6", "sc-client-api", - "sc-network", "sc-rpc-api", "sc-service", "schnellru", "serde", "serde_json", - "smoldot 0.11.0", - "smoldot-light 0.9.0", "sp-authority-discovery", "sp-consensus-babe", "sp-core", @@ -3640,17 +3878,15 @@ dependencies = [ "sp-storage", "sp-version", "substrate-prometheus-endpoint", - "thiserror 1.0.69", "tokio", - "tokio-util", "tracing", "url", ] [[package]] name = "cumulus-relay-chain-streams" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-relay-chain-interface", "futures", @@ -3663,12 +3899,16 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.20.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", "polkadot-primitives", + "sp-consensus-babe", + "sp-core", + "sp-io", + "sp-keyring", "sp-runtime", "sp-state-machine", "sp-trie", @@ -3698,7 +3938,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3716,9 +3956,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.186" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e9c4fe7f2f5dc5c62871a1b43992d197da6fa1394656a94276ac2894a90a6fe" +checksum = "00424da159cc5adcb4eeea7e7b5cb1d96df41f5fa695ec596922181bdc36232a" dependencies = [ "cc", "cxx-build", @@ -3731,50 +3971,49 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.186" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5cf2909d37d80633ddd208676fc27c2608a7f035fff69c882421168038b26dd" +checksum = "43e05269dbed4dab7072ae0f04ef31799ad189d52ce2ac12710c2997b754f86a" dependencies = [ "cc", "codespan-reporting", - "indexmap 2.11.4", + "indexmap 2.14.0", "proc-macro2", "quote", "scratch", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "cxxbridge-cmd" -version = "1.0.186" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "077f5ee3d3bfd8d27f83208fdaa96ddd50af7f096c77077cc4b94da10bfacefd" +checksum = "e2f017b07e0da7f425642339faff0edc9f0de6459a18180183d086d1f3381e89" dependencies = [ "clap", "codespan-reporting", - "indexmap 2.11.4", + "indexmap 2.14.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "cxxbridge-flags" -version = "1.0.186" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0108748615125b9f2e915dfafdffcbdabbca9b15102834f6d7e9a768f2f2864" +checksum = "293d267f43a5778bf3b89fff2a658f081166e7f152d9640e2ee3d917d065a5fc" [[package]] name = "cxxbridge-macro" -version = "1.0.186" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6e896681ef9b8dc462cfa6961d61909704bde0984b30bcb4082fe102b478890" +checksum = "72dd233dc128223fe85d2afa5c617c79743c0f47fb495b69234b5da680d4986a" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "proc-macro2", "quote", - "rustversion", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3808,7 +4047,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3821,7 +4060,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3832,7 +4071,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ "darling_core 0.20.11", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3843,7 +4082,7 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" dependencies = [ "darling_core 0.23.0", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3861,15 +4100,15 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.9.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" [[package]] name = "data-encoding-macro" -version = "0.1.18" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" +checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -3877,12 +4116,21 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.16" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" +checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" dependencies = [ "data-encoding", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", ] [[package]] @@ -3891,7 +4139,7 @@ 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", "zeroize", ] @@ -3904,7 +4152,7 @@ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ "asn1-rs 0.6.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -3916,9 +4164,9 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -3929,6 +4177,9 @@ name = "deranged" version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "serde_core", +] [[package]] name = "derivative" @@ -3949,18 +4200,18 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "derive-where" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f" +checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3969,11 +4220,11 @@ version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ - "convert_case", + "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version 0.4.1", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -3987,11 +4238,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]] @@ -4002,19 +4253,21 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", "unicode-xid", ] [[package]] name = "derive_more-impl" -version = "2.0.1" +version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" dependencies = [ + "convert_case 0.10.0", "proc-macro2", "quote", - "syn 2.0.106", + "rustc_version 0.4.1", + "syn 2.0.119", "unicode-xid", ] @@ -4043,8 +4296,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", - "const-oid", - "crypto-common 0.1.6", + "const-oid 0.9.6", + "crypto-common 0.1.7", "subtle 2.6.1", ] @@ -4055,6 +4308,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" dependencies = [ "block-buffer 0.12.1", + "const-oid 0.10.2", "crypto-common 0.2.2", ] @@ -4111,13 +4365,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -4141,9 +4395,9 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.106", + "syn 2.0.119", "termcolor", - "toml 0.8.23", + "toml", "walkdir", ] @@ -4167,9 +4421,9 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" [[package]] name = "dunce" @@ -4195,7 +4449,7 @@ checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -4255,13 +4509,13 @@ dependencies = [ [[package]] name = "ed25519-zebra" -version = "4.1.0" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0017d969298eec91e3db7a2985a8cab4df6341d86e6f3a6f5878b13fb7846bc9" +checksum = "775765289f7c6336c18d3d66127527820dd45ffd9eb3b6b8ee4708590e6c20f5" dependencies = [ "curve25519-dalek", "ed25519 2.2.3", - "hashbrown 0.15.5", + "hashbrown 0.16.1", "pkcs8", "rand_core 0.6.4", "sha2 0.10.9", @@ -4278,14 +4532,14 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "either" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" dependencies = [ "serde", ] @@ -4310,11 +4564,23 @@ dependencies = [ "zeroize", ] +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + [[package]] name = "encode_unicode" -version = "0.3.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "endian-cast" @@ -4322,7 +4588,7 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e02f7a506e5de77a3db9e56fdbed17fa6f3b8d27ede81545dde96107c3d6a1d2" dependencies = [ - "generic-array 1.3.5", + "generic-array 1.4.4", "typenum", ] @@ -4335,27 +4601,47 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "enum-display" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02058bb25d8d0605829af88230427dd5cd50661590bd2b09d1baf7c64c417f24" +dependencies = [ + "enum-display-macro", +] + +[[package]] +name = "enum-display-macro" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4be2cf2fe7b971b1865febbacd4d8df544aa6bd377cca011a6d69dcf4c60d94" +dependencies = [ + "convert_case 0.6.0", + "quote", + "syn 1.0.109", ] [[package]] name = "enum-ordinalize" -version = "4.3.0" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" +checksum = "07f808d588c10e464ea6f7d3eaed500049eff30aaac103460f61828c2d65b3eb" dependencies = [ "enum-ordinalize-derive", ] [[package]] name = "enum-ordinalize-derive" -version = "4.3.1" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" +checksum = "42e528e2d34ba8a67a1a650b86beae8ef69fc5fdb638016f386b973226590432" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -4375,7 +4661,7 @@ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -4386,30 +4672,17 @@ checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "env_filter" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" -dependencies = [ - "log", - "regex", -] - -[[package]] -name = "env_logger" -version = "0.10.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "humantime", - "is-terminal", "log", "regex", - "termcolor", ] [[package]] @@ -4431,7 +4704,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -4464,14 +4737,14 @@ dependencies = [ "rlp 0.6.1", "scale-info", "serde", - "sha3 0.10.8", + "sha3 0.10.9", "trie-root", ] [[package]] name = "ethereum-standards" -version = "0.1.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.1.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "alloy-core", ] @@ -4498,17 +4771,6 @@ version = "2.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" -[[package]] -name = "event-listener" -version = "3.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2" -dependencies = [ - "concurrent-queue", - "parking", - "pin-project-lite", -] - [[package]] name = "event-listener" version = "5.4.1" @@ -4548,7 +4810,7 @@ dependencies = [ "rlp 0.6.1", "scale-info", "serde", - "sha3 0.10.8", + "sha3 0.10.9", ] [[package]] @@ -4585,7 +4847,7 @@ dependencies = [ "environmental", "evm-core", "primitive-types 0.13.1", - "sha3 0.10.8", + "sha3 0.10.9", ] [[package]] @@ -4609,15 +4871,9 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] -[[package]] -name = "fallible-iterator" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" - [[package]] name = "fallible-iterator" version = "0.3.0" @@ -4625,19 +4881,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] -name = "fastrand" -version = "1.9.0" +name = "fastbloom" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" +checksum = "ef975e30683b2d965054bb0a836f8973857c4ebf6acf274fe46617cd285060d8" dependencies = [ - "instant", + "foldhash 0.2.0", + "libm", + "portable-atomic", + "siphasher 1.0.3", ] [[package]] name = "fastrand" -version = "2.3.0" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" [[package]] name = "fastrlp" @@ -4645,7 +4904,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "139834ddba373bbdd213dffe02c8d110508dcf1726c2be27e8d1f7d7e1856418" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "auto_impl", "bytes", ] @@ -4656,7 +4915,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce8dba4714ef14b8274c371879b175aa55b16b30f269663f19d576f380018dc4" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "auto_impl", "bytes", ] @@ -4678,11 +4937,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.11.4", - "proc-macro-crate 3.4.0", + "indexmap 2.14.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -4738,7 +4997,7 @@ dependencies = [ "sp-block-builder", "sp-consensus", "sp-runtime", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -4814,7 +5073,7 @@ dependencies = [ "pallet-evm", "parity-scale-codec", "prometheus", - "rand 0.9.4", + "rand 0.9.5", "rlp 0.6.1", "sc-client-api", "sc-network", @@ -4838,7 +5097,7 @@ dependencies = [ "sp-storage", "sp-trie", "substrate-prometheus-endpoint", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", ] @@ -4853,7 +5112,7 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", ] [[package]] @@ -4921,26 +5180,14 @@ dependencies = [ "winapi", ] -[[package]] -name = "file-per-thread-logger" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" -dependencies = [ - "env_logger", - "log", -] - [[package]] name = "filetime" -version = "0.2.26" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" +checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" dependencies = [ "cfg-if", "libc", - "libredox", - "windows-sys 0.60.2", ] [[package]] @@ -4961,9 +5208,9 @@ dependencies = [ [[package]] name = "find-msvc-tools" -version = "0.1.3" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0399f9d26e5191ce32c498bebd31e7a3ceabc2745f0ac54af3f335126c3f24b3" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" [[package]] name = "fixed-hash" @@ -4972,7 +5219,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", - "rand 0.8.6", + "rand 0.8.7", "rustc-hex", "static_assertions", ] @@ -4997,7 +5244,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ "futures-core", "futures-sink", - "spin 0.9.8", + "spin 0.9.9", ] [[package]] @@ -5035,8 +5282,8 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" -version = "13.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "12.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", ] @@ -5149,15 +5396,19 @@ dependencies = [ [[package]] name = "fragile" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" +checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9" +dependencies = [ + "futures-core", +] [[package]] name = "frame-benchmarking" -version = "41.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "anyhow", "frame-support", "frame-support-procedural", "frame-system", @@ -5179,15 +5430,17 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "49.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "58.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "Inflector", + "anyhow", "array-bytes 6.2.3", "chrono", "clap", "comfy-table", "cumulus-client-parachain-inherent", + "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "env_filter", "frame-benchmarking", @@ -5202,8 +5455,8 @@ dependencies = [ "parity-scale-codec", "polkadot-parachain-primitives", "polkadot-primitives", - "rand 0.8.6", - "rand_pcg", + "rand 0.8.7", + "rand_pcg 0.3.1", "sc-block-builder", "sc-chain-spec", "sc-cli", @@ -5215,12 +5468,14 @@ dependencies = [ "sc-runtime-utilities", "sc-service", "sc-sysinfo", + "sc-virtualization", "serde", "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-database", "sp-externalities", "sp-genesis-builder", @@ -5235,6 +5490,7 @@ dependencies = [ "sp-transaction-pool", "sp-trie", "sp-version", + "sp-virtualization", "sp-wasm-interface", "subxt", "subxt-signer", @@ -5244,8 +5500,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-pallet-pov" -version = "31.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "39.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -5258,33 +5514,35 @@ dependencies = [ [[package]] name = "frame-decode" -version = "0.7.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" +checksum = "c470df86cf28818dd3cd2fc4667b80dbefe2236c722c3dc1d09e7c6c82d6dfcd" dependencies = [ - "frame-metadata 21.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", + "scale-encode", "scale-info", "scale-type-resolver", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.18", ] [[package]] name = "frame-election-provider-solution-type" -version = "16.1.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "frame-election-provider-support" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -5300,8 +5558,8 @@ dependencies = [ [[package]] name = "frame-executive" -version = "41.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "aquamarine", "frame-support", @@ -5318,32 +5576,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "20.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", - "serde", -] - -[[package]] -name = "frame-metadata" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20dfd1d7eae1d94e32e869e2fb272d81f52dd8db57820a373adb83ea24d7d862" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", -] - -[[package]] -name = "frame-metadata" -version = "23.0.0" +version = "23.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c26fcb0454397c522c05fdad5380c4e622f8a875638af33bff5a320d1fc965" +checksum = "9ba5be0edbdb824843a0f9c6f0906ecfc66c5316218d74457003218b24909ed0" dependencies = [ "cfg-if", "parity-scale-codec", @@ -5353,8 +5588,8 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.9.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.16.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "const-hex", @@ -5369,8 +5604,8 @@ dependencies = [ [[package]] name = "frame-storage-access-test-runtime" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-pallet-parachain-system", "parity-scale-codec", @@ -5383,16 +5618,17 @@ dependencies = [ [[package]] name = "frame-support" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "aquamarine", "array-bytes 6.2.3", "binary-merkle-tree", "bitflags 1.3.2", + "derive-where", "docify", "environmental", - "frame-metadata 23.0.0", + "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -5424,22 +5660,22 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "34.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "40.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "Inflector", "cfg-expr", "derive-syn-parse", "docify", "expander", - "frame-support-procedural-tools 13.0.1", + "frame-support-procedural-tools 10.0.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "itertools 0.11.0", "macro_magic", "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.106", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "syn 2.0.119", ] [[package]] @@ -5448,23 +5684,23 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3363df38464c47a73eb521a4f648bfcc7537a82d70347ef8af3f73b6d019e910" dependencies = [ - "frame-support-procedural-tools-derive 11.0.0", - "proc-macro-crate 3.4.0", + "frame-support-procedural-tools-derive 11.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "frame-support-procedural-tools" -version = "13.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "10.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "frame-support-procedural-tools-derive 12.0.0", - "proc-macro-crate 3.4.0", + "frame-support-procedural-tools-derive 11.0.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -5475,23 +5711,23 @@ checksum = "68672b9ec6fe72d259d3879dc212c5e42e977588cdac830c76f54d9f492aeb58" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "frame-support-procedural-tools-derive" -version = "12.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "frame-system" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cfg-if", "docify", @@ -5509,8 +5745,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -5523,8 +5759,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "parity-scale-codec", @@ -5533,8 +5769,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.47.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.54.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "parity-scale-codec", @@ -5579,9 +5815,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" dependencies = [ "futures-channel", "futures-core", @@ -5604,9 +5840,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", "futures-sink", @@ -5614,20 +5850,19 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" [[package]] name = "futures-executor" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" dependencies = [ "futures-core", "futures-task", "futures-util", - "num_cpus", ] [[package]] @@ -5643,24 +5878,9 @@ dependencies = [ [[package]] name = "futures-io" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - -[[package]] -name = "futures-lite" -version = "1.13.0" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" -dependencies = [ - "fastrand 1.9.0", - "futures-core", - "futures-io", - "memchr", - "parking", - "pin-project-lite", - "waker-fn", -] +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" [[package]] name = "futures-lite" @@ -5668,7 +5888,7 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ - "fastrand 2.3.0", + "fastrand", "futures-core", "futures-io", "parking", @@ -5677,13 +5897,13 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -5699,27 +5919,31 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" [[package]] name = "futures-task" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" [[package]] name = "futures-timer" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968" +dependencies = [ + "gloo-timers", + "send_wrapper", +] [[package]] name = "futures-util" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-channel", "futures-core", @@ -5729,7 +5953,6 @@ dependencies = [ "futures-task", "memchr", "pin-project-lite", - "pin-utils", "slab", ] @@ -5742,6 +5965,19 @@ dependencies = [ "byteorder", ] +[[package]] +name = "fxprof-processed-profile" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd" +dependencies = [ + "bitflags 2.13.1", + "debugid", + "fxhash", + "serde", + "serde_json", +] + [[package]] name = "generic-array" version = "0.12.4" @@ -5764,9 +6000,9 @@ dependencies = [ [[package]] name = "generic-array" -version = "1.3.5" +version = "1.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eaf57c49a95fd1fe24b90b3033bee6dc7e8f1288d51494cb44e627c295e38542" +checksum = "ab4e5aa225bc56696909483320f0ff9b600f1a971b52e07a17d70f3d9b43254b" dependencies = [ "rustversion", "typenum", @@ -5791,36 +6027,34 @@ dependencies = [ "cfg-if", "js-sys", "libc", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", "wasm-bindgen", ] [[package]] name = "getrandom" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", - "js-sys", "libc", - "r-efi", - "wasi 0.14.7+wasi-0.2.4", - "wasm-bindgen", + "r-efi 5.3.0", + "wasip2", ] [[package]] name = "getrandom" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" dependencies = [ "cfg-if", + "js-sys", "libc", - "r-efi", - "rand_core 0.10.0", - "wasip2", - "wasip3", + "r-efi 6.0.0", + "rand_core 0.10.1", + "wasm-bindgen", ] [[package]] @@ -5829,7 +6063,7 @@ version = "0.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" dependencies = [ - "rand 0.8.6", + "rand 0.8.7", "rand_core 0.6.4", ] @@ -5843,24 +6077,13 @@ dependencies = [ "polyval", ] -[[package]] -name = "gimli" -version = "0.27.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" -dependencies = [ - "fallible-iterator 0.2.0", - "indexmap 1.9.3", - "stable_deref_trait", -] - [[package]] name = "gimli" version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ - "fallible-iterator 0.3.0", + "fallible-iterator", "stable_deref_trait", ] @@ -5869,6 +6092,11 @@ name = "gimli" version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" +dependencies = [ + "fallible-iterator", + "indexmap 2.14.0", + "stable_deref_trait", +] [[package]] name = "glob" @@ -5876,6 +6104,52 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" +[[package]] +name = "gloo-net" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580" +dependencies = [ + "futures-channel", + "futures-core", + "futures-sink", + "gloo-utils", + "http 1.4.2", + "js-sys", + "pin-project", + "serde", + "serde_json", + "thiserror 1.0.69", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "gloo-timers" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "482ce8a491a501da4cd806bd190275363d674f2845005c6ddbd5d3e1dd54495d" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "gloo-utils" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" +dependencies = [ + "js-sys", + "serde", + "serde_json", + "wasm-bindgen", + "web-sys", +] + [[package]] name = "governor" version = "0.6.3" @@ -5891,7 +6165,7 @@ dependencies = [ "parking_lot 0.12.5", "portable-atomic", "quanta", - "rand 0.8.6", + "rand 0.8.7", "smallvec", "spinning_top", ] @@ -5919,7 +6193,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.11.4", + "indexmap 2.14.0", "slab", "tokio", "tokio-util", @@ -5928,17 +6202,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.12" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.3.1", - "indexmap 2.11.4", + "http 1.4.2", + "indexmap 2.14.0", "slab", "tokio", "tokio-util", @@ -6006,7 +6280,6 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ "ahash 0.8.12", "allocator-api2", - "serde", ] [[package]] @@ -6018,18 +6291,29 @@ dependencies = [ "allocator-api2", "equivalent", "foldhash 0.1.5", + "serde", ] [[package]] name = "hashbrown" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" dependencies = [ "allocator-api2", "equivalent", "foldhash 0.2.0", - "serde", ] [[package]] @@ -6062,12 +6346,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[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" @@ -6085,17 +6363,20 @@ dependencies = [ [[package]] name = "hex-conservative" -version = "0.1.2" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" +checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f" +dependencies = [ + "arrayvec 0.7.8", +] [[package]] name = "hex-conservative" -version = "0.2.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" +checksum = "35431185f361ccf3ffc58254628af5f1f5d5f28531da2e02e5d6c82bbc282a10" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", ] [[package]] @@ -6120,7 +6401,7 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.8.6", + "rand 0.8.7", "socket2 0.5.10", "thiserror 1.0.69", "tinyvec", @@ -6145,9 +6426,9 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.9.4", + "rand 0.9.5", "ring 0.17.14", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tokio", "tracing", @@ -6167,7 +6448,7 @@ dependencies = [ "lru-cache", "once_cell", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "resolv-conf", "smallvec", "thiserror 1.0.69", @@ -6188,10 +6469,10 @@ dependencies = [ "moka", "once_cell", "parking_lot 0.12.5", - "rand 0.9.4", + "rand 0.9.5", "resolv-conf", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -6273,12 +6554,11 @@ dependencies = [ [[package]] name = "http" -version = "1.3.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -6295,24 +6575,24 @@ dependencies = [ [[package]] name = "http-body" -version = "1.0.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" dependencies = [ "bytes", - "http 1.3.1", + "http 1.4.2", ] [[package]] name = "http-body-util" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" dependencies = [ "bytes", "futures-core", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "pin-project-lite", ] @@ -6328,22 +6608,6 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" -[[package]] -name = "humantime" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424" - -[[package]] -name = "humantime-serde" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c" -dependencies = [ - "humantime", - "serde", -] - [[package]] name = "hybrid-array" version = "0.2.3" @@ -6355,9 +6619,9 @@ dependencies = [ [[package]] name = "hybrid-array" -version = "0.4.10" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3944cf8cf766b40e2a1a333ee5e9b563f854d5fa49d6a8ca2764e97c6eddb214" +checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" dependencies = [ "typenum", ] @@ -6388,22 +6652,21 @@ dependencies = [ [[package]] name = "hyper" -version = "1.7.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" dependencies = [ "atomic-waker", "bytes", "futures-channel", "futures-core", - "h2 0.4.12", - "http 1.3.1", - "http-body 1.0.1", + "h2 0.4.15", + "http 1.4.2", + "http-body 1.1.0", "httparse", "httpdate", "itoa", "pin-project-lite", - "pin-utils", "smallvec", "tokio", "want", @@ -6411,17 +6674,16 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.7" +version = "0.27.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" dependencies = [ - "http 1.3.1", - "hyper 1.7.0", + "http 1.4.2", + "hyper 1.10.1", "hyper-util", "log", "rustls", "rustls-native-certs", - "rustls-pki-types", "tokio", "tokio-rustls", "tower-service", @@ -6429,23 +6691,22 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.17" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ "base64 0.22.1", "bytes", "futures-channel", - "futures-core", "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "hyper 1.7.0", + "http 1.4.2", + "http-body 1.1.0", + "hyper 1.10.1", "ipnet", "libc", "percent-encoding", "pin-project-lite", - "socket2 0.6.0", + "socket2 0.6.5", "tokio", "tower-service", "tracing", @@ -6453,9 +6714,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.64" +version = "0.1.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -6477,12 +6738,13 @@ dependencies = [ [[package]] name = "icu_collections" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" dependencies = [ "displaydoc", "potential_utf", + "utf8_iter", "yoke", "zerofrom", "zerovec", @@ -6490,9 +6752,9 @@ dependencies = [ [[package]] name = "icu_locale_core" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" dependencies = [ "displaydoc", "litemap", @@ -6503,11 +6765,10 @@ dependencies = [ [[package]] name = "icu_normalizer" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" dependencies = [ - "displaydoc", "icu_collections", "icu_normalizer_data", "icu_properties", @@ -6518,42 +6779,38 @@ dependencies = [ [[package]] name = "icu_normalizer_data" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" [[package]] name = "icu_properties" -version = "2.0.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" dependencies = [ - "displaydoc", "icu_collections", "icu_locale_core", "icu_properties_data", "icu_provider", - "potential_utf", "zerotrie", "zerovec", ] [[package]] name = "icu_properties_data" -version = "2.0.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" [[package]] name = "icu_provider" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" dependencies = [ "displaydoc", "icu_locale_core", - "stable_deref_trait", - "tinystr", "writeable", "yoke", "zerofrom", @@ -6561,12 +6818,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "id-arena" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" - [[package]] name = "ident_case" version = "1.0.1" @@ -6586,9 +6837,9 @@ dependencies = [ [[package]] name = "idna_adapter" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" dependencies = [ "icu_normalizer", "icu_properties", @@ -6596,21 +6847,21 @@ dependencies = [ [[package]] name = "if-addrs" -version = "0.10.2" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" +checksum = "c0a05c691e1fae256cf7013d99dad472dc52d5543322761f83ec8d47eab40d2b" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] name = "if-watch" -version = "3.2.1" +version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdf9d64cfcf380606e64f9a0bcf493616b65331199f984151a6fa11a7b3cde38" +checksum = "71c02a5161c313f0cbdbadc511611893584a10a7b6153cb554bdf83ddce99ec2" dependencies = [ - "async-io 2.6.0", + "async-io", "core-foundation 0.9.4", "fnv", "futures", @@ -6624,7 +6875,7 @@ dependencies = [ "rtnetlink", "system-configuration", "tokio", - "windows 0.53.0", + "windows 0.62.2", ] [[package]] @@ -6640,7 +6891,7 @@ dependencies = [ "http 0.2.12", "hyper 0.14.32", "log", - "rand 0.8.6", + "rand 0.8.7", "tokio", "url", "xmltree", @@ -6701,7 +6952,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -6736,12 +6987,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.11.4" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" dependencies = [ "equivalent", - "hashbrown 0.16.0", + "hashbrown 0.17.1", "serde", "serde_core", ] @@ -6788,28 +7039,6 @@ dependencies = [ "num-traits", ] -[[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 = "io-uring" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" -dependencies = [ - "bitflags 2.9.4", - "cfg-if", - "libc", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -6818,47 +7047,48 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" [[package]] name = "ipconfig" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" dependencies = [ - "socket2 0.5.10", + "socket2 0.6.5", "widestring", - "windows-sys 0.48.0", - "winreg", + "windows-registry", + "windows-result", + "windows-sys 0.61.2", ] [[package]] name = "ipnet" -version = "2.11.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" [[package]] name = "is-terminal" -version = "0.4.16" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" +checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi 0.5.2", + "hermit-abi", "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "is_executable" -version = "1.0.5" +version = "1.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baabb8b4867b26294d818bf3f651a454b6901431711abb96e296245888d6e8c4" +checksum = "82cb6a9f675da968c63b6208c641b9dca58fc0133ae53375736b1767b0cab8bd" dependencies = [ - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itertools" @@ -6907,9 +7137,57 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "ittapi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1" +dependencies = [ + "anyhow", + "ittapi-sys", + "log", +] + +[[package]] +name = "ittapi-sys" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc" +dependencies = [ + "cc", +] + +[[package]] +name = "jam-codec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb948eace373d99de60501a02fb17125d30ac632570de20dccc74370cdd611b9" +dependencies = [ + "arrayvec 0.7.8", + "bitvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "jam-codec-derive", + "rustversion", + "serde", +] + +[[package]] +name = "jam-codec-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "319af585c4c8a6b5552a52b7787a1ab3e4d59df7614190b1f85b9b842488789d" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", +] [[package]] name = "jni" @@ -6920,7 +7198,7 @@ dependencies = [ "cesu8", "cfg-if", "combine", - "jni-sys", + "jni-sys 0.3.1", "log", "thiserror 1.0.69", "walkdir", @@ -6929,35 +7207,58 @@ dependencies = [ [[package]] name = "jni-sys" -version = "0.3.0" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" +dependencies = [ + "jni-sys 0.4.1", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.119", +] [[package]] name = "jobserver" -version = "0.1.34" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33" +checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.4.3", "libc", ] [[package]] name = "js-sys" -version = "0.3.81" +version = "0.3.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305" +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" dependencies = [ - "once_cell", + "cfg-if", + "futures-util", "wasm-bindgen", ] [[package]] name = "jsonrpsee" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b26c20e2178756451cfeb0661fb74c47dd5988cb7e3939de7e9241fd604d42" +checksum = "72c4b1f204b655b36b24dc4939af20366c649431d4711863bbbae5c495f3eeb4" dependencies = [ "jsonrpsee-client-transport", "jsonrpsee-core", @@ -6965,6 +7266,7 @@ dependencies = [ "jsonrpsee-proc-macros", "jsonrpsee-server", "jsonrpsee-types", + "jsonrpsee-wasm-client", "jsonrpsee-ws-client", "tokio", "tracing", @@ -6972,19 +7274,21 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bacb85abf4117092455e1573625e21b8f8ef4dec8aff13361140b2dc266cdff2" +checksum = "b3e1420b1792cff778e2a1ebaa44115f156ee62a94dd106eaa51163f037d2023" dependencies = [ "base64 0.22.1", + "futures-channel", "futures-util", - "http 1.3.1", + "gloo-net", + "http 1.4.2", "jsonrpsee-core", "pin-project", "rustls", "rustls-pki-types", "rustls-platform-verifier", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", "tokio", "tokio-rustls", @@ -6995,40 +7299,41 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456196007ca3a14db478346f58c7238028d55ee15c1df15115596e411ff27925" +checksum = "f49bfa9334963e1c85866b39dff3ffcc81f1c286eb23334267c5cb97677543a4" dependencies = [ "async-trait", "bytes", "futures-timer", "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", "jsonrpsee-types", "parking_lot 0.12.5", "pin-project", - "rand 0.8.6", - "rustc-hash 2.1.1", + "rand 0.8.7", + "rustc-hash 2.1.3", "serde", "serde_json", "thiserror 1.0.69", "tokio", "tokio-stream", "tracing", + "wasm-bindgen-futures", ] [[package]] name = "jsonrpsee-http-client" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c872b6c9961a4ccc543e321bb5b89f6b2d2c7fe8b61906918273a3333c95400c" +checksum = "c215647e43482d478a6c21f021a013b50d64cf63431c1176eda9ef925dc54ec8" dependencies = [ "async-trait", "base64 0.22.1", - "http-body 1.0.1", - "hyper 1.7.0", + "http-body 1.1.0", + "hyper 1.10.1", "hyper-rustls", "hyper-util", "jsonrpsee-core", @@ -7046,28 +7351,28 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e65763c942dfc9358146571911b0cd1c361c2d63e2d2305622d40d36376ca80" +checksum = "f5248249c016692f1465a753057ae8347681995dd490c2cb65c48b14b46215a8" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "jsonrpsee-server" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55e363146da18e50ad2b51a0a7925fc423137a0b1371af8235b1c231a0647328" +checksum = "c625c78b8d545478370b6e7a2a191b0d921f831a9eef38dc1e7efb57e7a5472f" dependencies = [ "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", - "hyper 1.7.0", + "hyper 1.10.1", "hyper-util", "jsonrpsee-core", "jsonrpsee-types", @@ -7075,7 +7380,7 @@ dependencies = [ "route-recognizer", "serde", "serde_json", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", "tokio", "tokio-stream", @@ -7086,23 +7391,34 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a8e70baf945b6b5752fc8eb38c918a48f1234daf11355e07106d963f860089" +checksum = "41d86fc943f81dab0ecdd6c0240b6e0f55ad57a2ea9ad8ad7efe8456fb9cc7a4" dependencies = [ - "http 1.3.1", + "http 1.4.2", "serde", "serde_json", "thiserror 1.0.69", ] +[[package]] +name = "jsonrpsee-wasm-client" +version = "0.24.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "735df2088674c87f7fecdf51c80878a7aa19a8116b32d703b000f5b1a7acf95a" +dependencies = [ + "jsonrpsee-client-transport", + "jsonrpsee-core", + "jsonrpsee-types", +] + [[package]] name = "jsonrpsee-ws-client" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b3323d890aa384f12148e8d2a1fd18eb66e9e7e825f9de4fa53bcc19b93eef" +checksum = "9df5bd5c38c0906a6e8b3a38c8c22cc8525fda25fd1a03a3fe010686aea66b70" dependencies = [ - "http 1.3.1", + "http 1.4.2", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -7144,14 +7460,20 @@ dependencies = [ [[package]] name = "keccak-asm" -version = "0.1.4" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "505d1856a39b200489082f90d897c3f07c455563880bc5952e38eabf731c83b6" +checksum = "dd5dc2c0d691cbf7595cde551ced329cca99c2387c2cbc97754c5d0cd045d3ee" dependencies = [ "digest 0.10.7", "sha3-asm", ] +[[package]] +name = "keccak-const" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d8d8ce877200136358e0bbff3a77965875db3af755a11e1fa6b1b3e2df13ea" + [[package]] name = "keccak-hash" version = "0.11.0" @@ -7178,6 +7500,21 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" +[[package]] +name = "konst" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb" +dependencies = [ + "konst_macro_rules", +] + +[[package]] +name = "konst_macro_rules" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" + [[package]] name = "kvdb" version = "0.13.0" @@ -7199,16 +7536,15 @@ dependencies = [ [[package]] name = "kvdb-rocksdb" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b644c70b92285f66bfc2032922a79000ea30af7bc2ab31902992a5dcb9b434f6" +checksum = "739ac938a308a9a8b6772fd1d840fd9c0078f9c74fe294feaf32faae727102cc" dependencies = [ "kvdb", "num_cpus", "parking_lot 0.12.5", "regex", "rocksdb", - "smallvec", ] [[package]] @@ -7228,15 +7564,9 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.9", ] -[[package]] -name = "lazycell" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" - [[package]] name = "leb128fmt" version = "0.1.0" @@ -7261,8 +7591,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83dc280ed78264020f986b2539e6a44e0720f98f66c99a48a2f52e4a441e99d8" dependencies = [ "endian-cast", - "generic-array 1.3.5", - "hashbrown 0.16.0", + "generic-array 1.4.4", + "hashbrown 0.17.1", "lencode-macros", "newt-hype", "ruint", @@ -7275,33 +7605,23 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c57df14b9005d1e4e8e56436e922e2c046ad0be55d7cfb062a303714857508" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "libc" -version = "0.2.176" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174" - -[[package]] -name = "libloading" -version = "0.8.9" +version = "0.2.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" -dependencies = [ - "cfg-if", - "windows-link", -] +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "libm" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libp2p" @@ -7332,7 +7652,7 @@ dependencies = [ "libp2p-upnp", "libp2p-websocket", "libp2p-yamux", - "multiaddr 0.18.2", + "multiaddr", "pin-project", "rw-stream-sink", "thiserror 1.0.69", @@ -7373,14 +7693,14 @@ dependencies = [ "futures", "futures-timer", "libp2p-identity", - "multiaddr 0.18.2", - "multihash 0.19.3", + "multiaddr", + "multihash", "multistream-select", "once_cell", "parking_lot 0.12.5", "pin-project", "quick-protobuf", - "rand 0.8.6", + "rand 0.8.7", "rw-stream-sink", "smallvec", "thiserror 1.0.69", @@ -7431,18 +7751,18 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3104e13b51e4711ff5738caa1fb54467c8604c2e94d607e27745bcf709068774" +checksum = "9525f3831544f7ae497bde79adf114ef127b0fbbb97edbbf692a80408636421c" dependencies = [ "bs58", "ed25519-dalek", "hkdf", - "multihash 0.19.3", - "quick-protobuf", - "rand 0.8.6", + "multihash", + "prost 0.14.4", + "rand 0.8.7", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", "zeroize", ] @@ -7453,7 +7773,7 @@ version = "0.46.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ced237d0bd84bbebb7c2cad4c073160dacb4fe40534963c32ed6d4c6bb7702a3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "asynchronous-codec 0.7.0", "bytes", "either", @@ -7466,7 +7786,7 @@ dependencies = [ "libp2p-swarm", "quick-protobuf", "quick-protobuf-codec", - "rand 0.8.6", + "rand 0.8.7", "sha2 0.10.9", "smallvec", "thiserror 1.0.69", @@ -7489,7 +7809,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.6", + "rand 0.8.7", "smallvec", "socket2 0.5.10", "tokio", @@ -7527,11 +7847,11 @@ dependencies = [ "futures", "libp2p-core", "libp2p-identity", - "multiaddr 0.18.2", - "multihash 0.19.3", + "multiaddr", + "multihash", "once_cell", "quick-protobuf", - "rand 0.8.6", + "rand 0.8.7", "sha2 0.10.9", "snow", "static_assertions", @@ -7553,7 +7873,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.6", + "rand 0.8.7", "tracing", "void", "web-time", @@ -7574,7 +7894,7 @@ dependencies = [ "libp2p-tls", "parking_lot 0.12.5", "quinn", - "rand 0.8.6", + "rand 0.8.7", "ring 0.17.14", "rustls", "socket2 0.5.10", @@ -7596,7 +7916,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.6", + "rand 0.8.7", "smallvec", "tracing", "void", @@ -7619,7 +7939,7 @@ dependencies = [ "lru 0.12.5", "multistream-select", "once_cell", - "rand 0.8.6", + "rand 0.8.7", "smallvec", "tokio", "tracing", @@ -7636,7 +7956,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -7705,7 +8025,7 @@ dependencies = [ "parking_lot 0.12.5", "pin-project-lite", "rw-stream-sink", - "soketto 0.8.1", + "soketto", "thiserror 1.0.69", "tracing", "url", @@ -7729,28 +8049,24 @@ dependencies = [ [[package]] name = "libredox" -version = "0.1.10" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" +checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" dependencies = [ - "bitflags 2.9.4", "libc", - "redox_syscall 0.5.18", ] [[package]] name = "librocksdb-sys" -version = "0.11.0+8.1.1" +version = "0.17.3+10.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e" +checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9" dependencies = [ "bindgen", "bzip2-sys", "cc", - "glob", "libc", "libz-sys", - "tikv-jemalloc-sys", ] [[package]] @@ -7766,7 +8082,7 @@ dependencies = [ "libsecp256k1-core", "libsecp256k1-gen-ecmult", "libsecp256k1-gen-genmult", - "rand 0.8.6", + "rand 0.8.7", "serde", "sha2 0.9.9", "typenum", @@ -7826,9 +8142,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.22" +version = "1.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" +checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9" dependencies = [ "cc", "pkg-config", @@ -7852,9 +8168,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linked_hash_set" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bae85b5be22d9843c80e5fc80e9b64c8a3b1f98f867c709956eca3efff4e92e2" +checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8" dependencies = [ "linked-hash-map", ] @@ -7868,18 +8184,6 @@ dependencies = [ "nalgebra", ] -[[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.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" - [[package]] name = "linux-raw-sys" version = "0.4.15" @@ -7888,9 +8192,9 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab" [[package]] name = "linux-raw-sys" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "lioness" @@ -7906,42 +8210,46 @@ dependencies = [ [[package]] name = "litemap" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" [[package]] name = "litep2p" -version = "0.9.5" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14fb10e63363204b89d91e1292df83322fd9de5d7fa76c3d5c78ddc2f8f3efa9" +checksum = "67508e7500fe69a99a038d2fba84fb30f23cac9d98bfeb7f5a1389ddd137b579" dependencies = [ "async-trait", "bs58", "bytes", - "cid 0.11.1", + "cid", "ed25519-dalek", + "enum-display", "futures", "futures-timer", "hickory-resolver 0.25.2", - "indexmap 2.11.4", + "indexmap 2.14.0", + "ip_network", "libc", "mockall", - "multiaddr 0.17.1", - "multihash 0.17.0", + "multiaddr", + "multihash", + "multihash-codetable", "network-interface", "parking_lot 0.12.5", "pin-project", "prost 0.13.5", - "prost-build", - "rand 0.8.6", + "prost-build 0.14.4", + "rand 0.8.7", + "ring 0.17.14", "serde", - "sha2 0.10.9", + "sha2 0.11.0", "simple-dns", "smallvec", "snow", "socket2 0.5.10", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-stream", "tokio-tungstenite", @@ -7968,15 +8276,18 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" [[package]] name = "lru" -version = "0.11.1" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a83fb7698b3643a0e34f9ae6f2e8f0178c0fd42f8b59d493aa271ff3a5bf21" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" +dependencies = [ + "hashbrown 0.12.3", +] [[package]] name = "lru" @@ -8022,10 +8333,10 @@ dependencies = [ ] [[package]] -name = "mach" -version = "0.3.2" +name = "mach2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" dependencies = [ "libc", ] @@ -8038,7 +8349,7 @@ checksum = "59a9dbbfc75d2688ed057456ce8a3ee3f48d12eec09229f560f3643b9f275653" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -8050,7 +8361,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -8064,7 +8375,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -8075,7 +8386,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -8086,34 +8397,34 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "match-lookup" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e" +checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.119", ] [[package]] name = "matchers" -version = "0.2.0" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" dependencies = [ - "regex-automata", + "regex-automata 0.1.10", ] [[package]] name = "matrixmultiply" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" +checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7" dependencies = [ "autocfg", "rawpointer", @@ -8121,9 +8432,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.6" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" [[package]] name = "memfd" @@ -8131,7 +8442,7 @@ version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" dependencies = [ - "rustix 1.1.2", + "rustix 1.1.4", ] [[package]] @@ -8145,22 +8456,13 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.8" +version = "0.9.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7" +checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" dependencies = [ "libc", ] -[[package]] -name = "memoffset" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" -dependencies = [ - "autocfg", -] - [[package]] name = "memoffset" version = "0.9.1" @@ -8189,7 +8491,7 @@ checksum = "a55738f9a2a91692acbdc68066e4b60d4101a8599a474e039dbd449cf2cff701" dependencies = [ "array-bytes 9.3.0", "blake3", - "frame-metadata 23.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", "scale-info", @@ -8224,13 +8526,13 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.4" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" dependencies = [ "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -8240,7 +8542,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "daa3eb39495d8e2e2947a1d862852c90cc6a4a8845f8b41c8829cb9fcc047f4a" dependencies = [ "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "bitflags 1.3.2", "blake2 0.10.6", "c2-chacha", @@ -8250,7 +8552,7 @@ dependencies = [ "lioness", "log", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_distr", "subtle 2.6.1", @@ -8260,21 +8562,21 @@ dependencies = [ [[package]] name = "ml-kem" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcaee19a45f916d98f24a551cc9a2cdae705a040e66f3cbc4f3a282ea6a2e982" +checksum = "8de49b3df74c35498c0232031bb7e85f9389f913e2796169c8ab47a53993a18f" dependencies = [ "hybrid-array 0.2.3", "kem", "rand_core 0.6.4", - "sha3 0.10.8", + "sha3 0.10.9", "zeroize", ] [[package]] name = "mmr-gadget" -version = "46.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "53.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "log", @@ -8292,8 +8594,8 @@ dependencies = [ [[package]] name = "mmr-rpc" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -8328,14 +8630,14 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "moka" -version = "0.12.11" +version = "0.12.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077" +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" dependencies = [ "crossbeam-channel", "crossbeam-epoch", @@ -8343,7 +8645,6 @@ dependencies = [ "equivalent", "parking_lot 0.12.5", "portable-atomic", - "rustc_version 0.4.1", "smallvec", "tagptr", "uuid", @@ -8355,25 +8656,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f" -[[package]] -name = "multiaddr" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" -dependencies = [ - "arrayref", - "byteorder", - "data-encoding", - "log", - "multibase", - "multihash 0.17.0", - "percent-encoding", - "serde", - "static_assertions", - "unsigned-varint 0.7.2", - "url", -] - [[package]] name = "multiaddr" version = "0.18.2" @@ -8385,7 +8667,7 @@ dependencies = [ "data-encoding", "libp2p-identity", "multibase", - "multihash 0.19.3", + "multihash", "percent-encoding", "serde", "static_assertions", @@ -8395,55 +8677,60 @@ dependencies = [ [[package]] name = "multibase" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77" +checksum = "7e0e4a371cbf1dfd666b658ba137763edb23c45beb43cfe369b5593cd6b437b6" dependencies = [ "base-x", "base256emoji", + "base45", "data-encoding", "data-encoding-macro", ] [[package]] name = "multihash" -version = "0.17.0" +version = "0.19.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" +checksum = "577c63b00ad74d57e8c9aa870b5fccebf2fd64a308a5aee9f1bb88e4aea19447" +dependencies = [ + "unsigned-varint 0.8.0", +] + +[[package]] +name = "multihash-codetable" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60384411b100398c5b2fdca476eed82e9898d09f2c60d1b1b66c5080ebe06118" dependencies = [ "blake2b_simd", - "blake2s_simd", - "blake3", - "core2", - "digest 0.10.7", + "digest 0.11.3", "multihash-derive", - "sha2 0.10.9", - "sha3 0.10.8", - "unsigned-varint 0.7.2", + "sha2 0.11.0", + "sha3 0.11.0", ] [[package]] -name = "multihash" -version = "0.19.3" +name = "multihash-derive" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" +checksum = "4723acdce756db211a53f01b3419dbdf63cb48cef5df86260f55309364735fbf" dependencies = [ - "core2", - "unsigned-varint 0.8.0", + "multihash", + "multihash-derive-impl", ] [[package]] -name = "multihash-derive" -version = "0.8.1" +name = "multihash-derive-impl" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db" +checksum = "f932556f78452e5604cef711349d337ec081a9aa3c96e67b3127c8f5df05d550" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro-error", + "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", - "synstructure 0.12.6", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -8468,9 +8755,9 @@ dependencies = [ [[package]] name = "nalgebra" -version = "0.33.2" +version = "0.33.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b" +checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd" dependencies = [ "approx", "matrixmultiply", @@ -8487,7 +8774,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" dependencies = [ - "rand 0.8.6", + "rand 0.8.7", ] [[package]] @@ -8498,9 +8785,9 @@ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" [[package]] name = "native-tls" -version = "0.2.14" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" dependencies = [ "libc", "log", @@ -8508,7 +8795,7 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "security-framework 2.11.1", + "security-framework", "security-framework-sys", "tempfile", ] @@ -8530,63 +8817,47 @@ dependencies = [ [[package]] name = "netlink-packet-core" -version = "0.7.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4" +checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" dependencies = [ - "anyhow", - "byteorder", - "netlink-packet-utils", + "paste", ] [[package]] name = "netlink-packet-route" -version = "0.17.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66" +checksum = "4ce3636fa715e988114552619582b530481fd5ef176a1e5c1bf024077c2c9445" dependencies = [ - "anyhow", - "bitflags 1.3.2", - "byteorder", + "bitflags 2.13.1", "libc", + "log", "netlink-packet-core", - "netlink-packet-utils", -] - -[[package]] -name = "netlink-packet-utils" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" -dependencies = [ - "anyhow", - "byteorder", - "paste", - "thiserror 1.0.69", ] [[package]] name = "netlink-proto" -version = "0.11.5" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60" +checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "netlink-sys" -version = "0.8.7" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16c903aa70590cb93691bf97a767c8d1d6122d2cc9070433deb3bbf36ce8bd23" +checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae" dependencies = [ "bytes", - "futures", + "futures-util", "libc", "log", "tokio", @@ -8594,13 +8865,13 @@ dependencies = [ [[package]] name = "network-interface" -version = "2.0.3" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07709a6d4eba90ab10ec170a0530b3aafc81cb8a2d380e4423ae41fc55fe5745" +checksum = "4ddcb8865ad3d9950f22f42ffa0ef0aecbfbf191867b3122413602b0a360b2a6" dependencies = [ "cc", "libc", - "thiserror 2.0.17", + "thiserror 2.0.18", "winapi", ] @@ -8610,26 +8881,15 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c8b7b69b0eafaa88ec8dc9fe7c3860af0a147517e5207cfbd0ecd21cd7cde18" -[[package]] -name = "nix" -version = "0.26.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" -dependencies = [ - "bitflags 1.3.2", - "cfg-if", - "libc", -] - [[package]] name = "nix" version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "cfg-if", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", ] @@ -8639,9 +8899,9 @@ version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "cfg-if", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", ] @@ -8651,12 +8911,6 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" -[[package]] -name = "no-std-net" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65" - [[package]] name = "node-subtensor" version = "4.0.0-dev" @@ -8684,7 +8938,7 @@ dependencies = [ "hex", "jsonrpsee", "log", - "memmap2 0.9.8", + "memmap2 0.9.11", "node-subtensor-runtime", "num-traits", "pallet-balances", @@ -8771,7 +9025,7 @@ dependencies = [ "frame-benchmarking", "frame-election-provider-support", "frame-executive", - "frame-metadata 23.0.0", + "frame-metadata", "frame-metadata-hash-extension", "frame-support", "frame-system", @@ -8895,6 +9149,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nonempty" version = "0.7.0" @@ -8909,20 +9172,21 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] name = "ntapi" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" dependencies = [ "winapi", ] [[package]] name = "nu-ansi-term" -version = "0.50.3" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" dependencies = [ - "windows-sys 0.59.0", + "overload", + "winapi", ] [[package]] @@ -8941,9 +9205,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" dependencies = [ "num-integer", "num-traits", @@ -8972,7 +9236,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -8981,7 +9245,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "itoa", ] @@ -8996,11 +9260,10 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.45" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" dependencies = [ - "autocfg", "num-integer", "num-traits", ] @@ -9032,15 +9295,15 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi 0.5.2", + "hermit-abi", "libc", ] [[package]] name = "num_enum" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" dependencies = [ "num_enum_derive", "rustversion", @@ -9048,26 +9311,25 @@ dependencies = [ [[package]] name = "num_enum_derive" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] -name = "object" -version = "0.30.4" +name = "nybbles" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +checksum = "0d49ff0c0d00d4a502b39df9af3a525e1efeb14b9dabb5bb83335284c1309210" dependencies = [ - "crc32fast", - "hashbrown 0.13.2", - "indexmap 1.9.3", - "memchr", + "cfg-if", + "ruint", + "smallvec", ] [[package]] @@ -9085,6 +9347,9 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ + "crc32fast", + "hashbrown 0.15.5", + "indexmap 2.14.0", "memchr", ] @@ -9103,14 +9368,14 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", ] [[package]] name = "once_cell" -version = "1.21.3" +version = "1.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" dependencies = [ "critical-section", "portable-atomic", @@ -9118,9 +9383,9 @@ dependencies = [ [[package]] name = "once_cell_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "opaque-debug" @@ -9140,7 +9405,7 @@ version = "0.10.81" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "cfg-if", "foreign-types", "libc", @@ -9156,20 +9421,20 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "openssl-probe" -version = "0.1.6" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" [[package]] name = "openssl-src" -version = "300.5.4+3.5.4" +version = "300.6.1+3.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507b3792995dae9b0df8a1c1e3771e8418b7c2d9f0baeba32e6fe8b06c7cb72" +checksum = "46eb8fb9fb3b61ce1c0f8a026c4c1a0714d3a9e138e7fbde78753ce2babc3846" dependencies = [ "cc", ] @@ -9217,15 +9482,47 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43dfaf083aef571385fccfdc3a2f8ede8d0a1863160455d4f2b014d8f7d04a3f" dependencies = [ "expander", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.11.0", "petgraph 0.6.5", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "p256" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.9", +] + +[[package]] +name = "pallet-accumulate-and-forward" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + [[package]] name = "pallet-admin-utils" version = "4.0.0-dev" @@ -9262,8 +9559,8 @@ dependencies = [ [[package]] name = "pallet-alliance" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "frame-benchmarking", @@ -9275,7 +9572,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-runtime", ] @@ -9298,8 +9595,8 @@ dependencies = [ [[package]] name = "pallet-asset-conversion" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9316,8 +9613,8 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-ops" -version = "0.9.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9332,10 +9629,25 @@ dependencies = [ "sp-runtime", ] +[[package]] +name = "pallet-asset-conversion-precompiles" +version = "0.5.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-support", + "frame-system", + "pallet-asset-conversion", + "pallet-revive", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-runtime", +] + [[package]] name = "pallet-asset-conversion-tx-payment" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9349,8 +9661,8 @@ dependencies = [ [[package]] name = "pallet-asset-rate" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9363,8 +9675,8 @@ dependencies = [ [[package]] name = "pallet-asset-rewards" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9381,8 +9693,8 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9390,23 +9702,20 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "scale-info", - "serde", "sp-io", "sp-runtime", ] [[package]] name = "pallet-assets" -version = "43.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "ethereum-standards", "frame-benchmarking", "frame-support", "frame-system", "impl-trait-for-tuples", "log", - "pallet-revive", "parity-scale-codec", "scale-info", "sp-core", @@ -9415,8 +9724,8 @@ dependencies = [ [[package]] name = "pallet-assets-freezer" -version = "0.8.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "pallet-assets", @@ -9427,23 +9736,45 @@ dependencies = [ [[package]] name = "pallet-assets-holder" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.12.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-assets", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + +[[package]] +name = "pallet-assets-precompiles" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "const-crypto", + "ethereum-standards", "frame-benchmarking", "frame-support", "frame-system", "log", "pallet-assets", + "pallet-revive", + "pallet-timestamp", "parity-scale-codec", "scale-info", + "sp-core", + "sp-io", "sp-runtime", + "staging-xcm", ] [[package]] name = "pallet-atomic-swap" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -9452,8 +9783,8 @@ dependencies = [ [[package]] name = "pallet-aura" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9468,8 +9799,8 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9483,8 +9814,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9496,8 +9827,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9519,8 +9850,8 @@ dependencies = [ [[package]] name = "pallet-bags-list" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "aquamarine", "docify", @@ -9540,8 +9871,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -9569,8 +9900,8 @@ dependencies = [ [[package]] name = "pallet-beefy" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9588,8 +9919,8 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "binary-merkle-tree", @@ -9613,8 +9944,8 @@ dependencies = [ [[package]] name = "pallet-bounties" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9630,8 +9961,8 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-runtime", @@ -9639,18 +9970,18 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log", "parity-scale-codec", "scale-info", "sp-consensus-grandpa", "sp-runtime", "sp-std", + "tracing", ] [[package]] name = "pallet-bridge-messages" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-messages", @@ -9658,18 +9989,18 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log", "parity-scale-codec", "scale-info", "sp-runtime", "sp-std", "sp-trie", + "tracing", ] [[package]] name = "pallet-bridge-parachains" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-parachains", @@ -9678,18 +10009,18 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log", "pallet-bridge-grandpa", "parity-scale-codec", "scale-info", "sp-runtime", "sp-std", + "tracing", ] [[package]] name = "pallet-bridge-relayers" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-header-chain", "bp-messages", @@ -9698,7 +10029,6 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log", "pallet-bridge-grandpa", "pallet-bridge-messages", "pallet-bridge-parachains", @@ -9707,12 +10037,13 @@ dependencies = [ "scale-info", "sp-arithmetic", "sp-runtime", + "tracing", ] [[package]] name = "pallet-broker" -version = "0.20.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "frame-benchmarking", @@ -9729,8 +10060,8 @@ dependencies = [ [[package]] name = "pallet-child-bounties" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9747,9 +10078,10 @@ dependencies = [ [[package]] name = "pallet-collator-selection" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "cumulus-pallet-session-benchmarking", "frame-benchmarking", "frame-support", "frame-system", @@ -9758,7 +10090,7 @@ dependencies = [ "pallet-balances", "pallet-session", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "sp-runtime", "sp-staking", @@ -9766,8 +10098,8 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -9783,8 +10115,8 @@ dependencies = [ [[package]] name = "pallet-collective-content" -version = "0.19.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9824,8 +10156,8 @@ dependencies = [ [[package]] name = "pallet-contracts" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "environmental", "frame-benchmarking", @@ -9838,8 +10170,8 @@ dependencies = [ "pallet-contracts-uapi", "parity-scale-codec", "paste", - "rand 0.8.6", - "rand_pcg", + "rand 0.8.7", + "rand_pcg 0.3.1", "scale-info", "serde", "smallvec", @@ -9855,8 +10187,8 @@ dependencies = [ [[package]] name = "pallet-contracts-mock-network" -version = "18.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "27.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9886,18 +10218,18 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" -version = "23.0.3" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "18.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "pallet-contracts-uapi" -version = "14.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "5.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -9907,8 +10239,8 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "assert_matches", "frame-benchmarking", @@ -9923,8 +10255,8 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" -version = "25.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9959,10 +10291,27 @@ dependencies = [ "subtensor-runtime-common", ] +[[package]] +name = "pallet-dap" +version = "0.6.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-timestamp", + "parity-scale-codec", + "scale-info", + "sp-dap", + "sp-runtime", + "sp-staking", +] + [[package]] name = "pallet-delegated-staking" -version = "8.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "15.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -9976,8 +10325,8 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -9991,10 +10340,30 @@ dependencies = [ "sp-runtime", ] +[[package]] +name = "pallet-derivatives" +version = "0.7.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", + "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", +] + [[package]] name = "pallet-dev-mode" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10014,10 +10383,12 @@ dependencies = [ "ark-bls12-381 0.4.0", "ark-crypto-primitives", "ark-ec 0.4.2", + "ark-ec 0.5.0", "ark-ff 0.4.2", - "ark-scale 0.0.11", + "ark-scale 0.0.13", "ark-serialize 0.4.2", "ark-std 0.4.0", + "ark-std 0.5.0", "frame-benchmarking", "frame-support", "frame-system", @@ -10042,8 +10413,8 @@ dependencies = [ [[package]] name = "pallet-dummy-dim" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10060,8 +10431,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-block" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -10069,7 +10440,7 @@ dependencies = [ "frame-system", "log", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "sp-arithmetic", "sp-core", @@ -10081,8 +10452,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -10090,10 +10461,11 @@ dependencies = [ "frame-system", "log", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "sp-arithmetic", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-npos-elections", "sp-runtime", @@ -10102,8 +10474,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -10115,8 +10487,8 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10234,8 +10606,8 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -10252,8 +10624,8 @@ dependencies = [ [[package]] name = "pallet-glutton" -version = "27.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "35.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "blake2 0.10.6", "frame-benchmarking", @@ -10270,8 +10642,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10306,8 +10678,8 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "enumflags2", "frame-benchmarking", @@ -10322,8 +10694,8 @@ dependencies = [ [[package]] name = "pallet-im-online" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10341,8 +10713,8 @@ dependencies = [ [[package]] name = "pallet-indices" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10356,8 +10728,8 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" -version = "29.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "37.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -10376,6 +10748,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-keyring", "sp-keystore", @@ -10389,8 +10762,8 @@ dependencies = [ [[package]] name = "pallet-lottery" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10402,8 +10775,8 @@ dependencies = [ [[package]] name = "pallet-membership" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10418,8 +10791,8 @@ dependencies = [ [[package]] name = "pallet-message-queue" -version = "44.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "environmental", "frame-benchmarking", @@ -10437,8 +10810,8 @@ dependencies = [ [[package]] name = "pallet-meta-tx" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -10446,7 +10819,6 @@ dependencies = [ "frame-system", "parity-scale-codec", "scale-info", - "serde", "sp-core", "sp-io", "sp-runtime", @@ -10455,8 +10827,8 @@ dependencies = [ [[package]] name = "pallet-migrations" -version = "11.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "19.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -10468,14 +10840,15 @@ dependencies = [ "polkadot-sdk-frame", "scale-info", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-runtime", ] [[package]] name = "pallet-mixnet" -version = "0.17.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.25.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -10488,8 +10861,8 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -10498,10 +10871,27 @@ dependencies = [ "sp-mmr-primitives", ] +[[package]] +name = "pallet-multi-asset-bounties" +version = "0.6.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "docify", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", +] + [[package]] name = "pallet-multisig" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -10511,8 +10901,8 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "pallet-assets", @@ -10524,8 +10914,8 @@ dependencies = [ [[package]] name = "pallet-nfts" -version = "35.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "enumflags2", "frame-benchmarking", @@ -10541,8 +10931,8 @@ dependencies = [ [[package]] name = "pallet-nis" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -10551,8 +10941,8 @@ dependencies = [ [[package]] name = "pallet-node-authorization" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -10562,8 +10952,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" -version = "39.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10580,8 +10970,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" -version = "39.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -10590,7 +10980,7 @@ dependencies = [ "pallet-bags-list", "pallet-delegated-staking", "pallet-nomination-pools", - "pallet-staking", + "pallet-staking-async", "parity-scale-codec", "scale-info", "sp-runtime", @@ -10600,8 +10990,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "45.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -10610,8 +11000,8 @@ dependencies = [ [[package]] name = "pallet-offences" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10625,8 +11015,8 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -10639,6 +11029,7 @@ dependencies = [ "pallet-im-online", "pallet-offences", "pallet-session", + "pallet-session-benchmarking", "pallet-staking", "parity-scale-codec", "scale-info", @@ -10646,10 +11037,28 @@ dependencies = [ "sp-staking", ] +[[package]] +name = "pallet-oracle" +version = "0.6.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "impl-trait-for-tuples", + "parity-scale-codec", + "scale-info", + "serde", + "sp-application-crypto", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-origin-restriction" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10666,8 +11075,8 @@ dependencies = [ [[package]] name = "pallet-paged-list" -version = "0.19.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "parity-scale-codec", @@ -10677,8 +11086,8 @@ dependencies = [ [[package]] name = "pallet-parameters" -version = "0.12.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.20.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -10694,8 +11103,8 @@ dependencies = [ [[package]] name = "pallet-people" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10705,15 +11114,31 @@ dependencies = [ "scale-info", "sp-arithmetic", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-runtime", "verifiable", ] +[[package]] +name = "pallet-pgas-allowance" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "pallet-transaction-payment", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + [[package]] name = "pallet-preimage" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10728,18 +11153,32 @@ dependencies = [ [[package]] name = "pallet-proxy" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", "scale-info", ] +[[package]] +name = "pallet-psm" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + [[package]] name = "pallet-ranked-collective" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10756,9 +11195,12 @@ dependencies = [ [[package]] name = "pallet-recovery" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "frame-support", + "frame-system", + "log", "parity-scale-codec", "polkadot-sdk-frame", "scale-info", @@ -10766,8 +11208,8 @@ dependencies = [ [[package]] name = "pallet-referenda" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "assert_matches", "frame-benchmarking", @@ -10784,8 +11226,8 @@ dependencies = [ [[package]] name = "pallet-remark" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10799,10 +11241,12 @@ dependencies = [ [[package]] name = "pallet-revive" -version = "0.7.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.19.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "alloy-consensus", "alloy-core", + "alloy-trie", "derive_more 0.99.20", "environmental", "ethereum-standards", @@ -10811,8 +11255,8 @@ dependencies = [ "frame-support", "frame-system", "hex-literal", - "humantime-serde", "impl-trait-for-tuples", + "k256", "log", "num-bigint", "num-integer", @@ -10823,66 +11267,72 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "paste", - "polkavm 0.21.0", - "polkavm-common 0.21.0", - "rand 0.8.6", - "rand_pcg", + "polkavm", + "polkavm-common 0.33.0", + "rand 0.8.7", + "rand_pcg 0.3.1", + "revm", "ripemd", "rlp 0.6.1", "scale-info", "serde", + "serde_json", "sp-api", "sp-arithmetic", "sp-consensus-aura", "sp-consensus-babe", "sp-consensus-slots", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-runtime", + "sp-version", "substrate-bn", - "subxt-signer", ] [[package]] name = "pallet-revive-fixtures" -version = "0.4.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.15.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "anyhow", "cargo_metadata", + "hex", "pallet-revive-uapi", - "polkavm-linker 0.21.0", - "sp-core", - "sp-io", - "toml 0.8.23", + "polkavm-linker 0.30.0", + "serde_json", + "toml", ] [[package]] name = "pallet-revive-proc-macro" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "pallet-revive-uapi" -version = "0.5.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.15.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "alloy-core", "bitflags 1.3.2", + "const-crypto", + "hex-literal", "pallet-revive-proc-macro", "parity-scale-codec", - "polkavm-derive 0.21.0", + "polkavm-derive 0.30.0", "scale-info", ] [[package]] name = "pallet-root-offences" -version = "38.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10897,8 +11347,8 @@ dependencies = [ [[package]] name = "pallet-root-testing" -version = "17.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10910,8 +11360,8 @@ dependencies = [ [[package]] name = "pallet-safe-mode" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "pallet-balances", @@ -10924,8 +11374,8 @@ dependencies = [ [[package]] name = "pallet-salary" -version = "26.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "34.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "pallet-ranked-collective", @@ -10936,8 +11386,8 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -10953,8 +11403,8 @@ dependencies = [ [[package]] name = "pallet-scored-pool" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -10966,13 +11416,14 @@ dependencies = [ [[package]] name = "pallet-session" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", "log", + "pallet-balances", "pallet-timestamp", "parity-scale-codec", "scale-info", @@ -10987,8 +11438,8 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -10996,7 +11447,7 @@ dependencies = [ "pallet-session", "pallet-staking", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "sp-runtime", "sp-session", ] @@ -11033,8 +11484,8 @@ dependencies = [ [[package]] name = "pallet-skip-feeless-payment" -version = "16.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -11045,8 +11496,8 @@ dependencies = [ [[package]] name = "pallet-society" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11062,8 +11513,8 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -11084,8 +11535,8 @@ dependencies = [ [[package]] name = "pallet-staking-async" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.14.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -11094,22 +11545,26 @@ dependencies = [ "log", "pallet-staking-async-rc-client", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "scale-info", "serde", "sp-application-crypto", + "sp-arithmetic", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", + "sp-npos-elections", "sp-runtime", "sp-staking", ] [[package]] name = "pallet-staking-async-ah-client" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "frame-benchmarking", "frame-support", "frame-system", "log", @@ -11126,9 +11581,10 @@ dependencies = [ [[package]] name = "pallet-staking-async-rc-client" -version = "0.2.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "frame-benchmarking", "frame-support", "frame-system", "impl-trait-for-tuples", @@ -11139,23 +11595,25 @@ dependencies = [ "sp-runtime", "sp-staking", "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", ] [[package]] name = "pallet-staking-reward-curve" -version = "12.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "pallet-staking-reward-fn" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "19.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "sp-arithmetic", @@ -11163,8 +11621,8 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" -version = "27.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "sp-api", @@ -11173,8 +11631,8 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" -version = "46.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "55.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11189,8 +11647,8 @@ dependencies = [ [[package]] name = "pallet-statement" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -11243,6 +11701,7 @@ dependencies = [ "sha2 0.10.9", "share-pool", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-keyring", "sp-runtime", @@ -11256,7 +11715,7 @@ dependencies = [ "tle", "tracing", "tracing-log", - "tracing-subscriber 0.3.20", + "tracing-subscriber 0.3.19", "w3f-bls 0.1.3", ] @@ -11278,7 +11737,7 @@ dependencies = [ name = "pallet-subtensor-swap" version = "0.1.0" dependencies = [ - "alloy-primitives 0.8.25", + "alloy-primitives 0.8.26", "approx", "frame-benchmarking", "frame-support", @@ -11286,7 +11745,7 @@ dependencies = [ "log", "pallet-subtensor-swap-runtime-api", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "rayon", "safe-bigmath", "safe-math", @@ -11353,8 +11812,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -11368,8 +11827,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -11386,8 +11845,8 @@ dependencies = [ [[package]] name = "pallet-tips" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11404,12 +11863,13 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "serde", @@ -11419,8 +11879,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "44.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -11435,8 +11895,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -11445,29 +11905,10 @@ dependencies = [ "sp-weights", ] -[[package]] -name = "pallet-transaction-storage" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" -dependencies = [ - "array-bytes 6.2.3", - "frame-benchmarking", - "frame-support", - "frame-system", - "log", - "pallet-balances", - "parity-scale-codec", - "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-transaction-storage-proof", -] - [[package]] name = "pallet-treasury" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -11485,8 +11926,8 @@ dependencies = [ [[package]] name = "pallet-tx-pause" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "parity-scale-codec", @@ -11496,8 +11937,8 @@ dependencies = [ [[package]] name = "pallet-uniques" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11510,8 +11951,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11525,8 +11966,8 @@ dependencies = [ [[package]] name = "pallet-verify-signature" -version = "0.4.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.12.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11540,8 +11981,8 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11552,10 +11993,30 @@ dependencies = [ "sp-runtime", ] +[[package]] +name = "pallet-vesting-precompiles" +version = "0.5.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "alloy-core", + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-revive", + "pallet-timestamp", + "pallet-vesting", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", +] + [[package]] name = "pallet-whitelist" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -11564,17 +12025,15 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "20.1.3" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "bounded-collections 0.2.4", + "bounded-collections 0.3.2", "frame-benchmarking", "frame-support", "frame-system", "hex-literal", "pallet-balances", - "pallet-revive", - "pallet-timestamp", "parity-scale-codec", "scale-info", "serde", @@ -11590,8 +12049,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-benchmarking", "frame-support", @@ -11607,15 +12066,14 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub" -version = "0.17.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.25.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-messages", "bp-runtime", "bp-xcm-bridge-hub", "frame-support", "frame-system", - "log", "pallet-bridge-messages", "parity-scale-codec", "scale-info", @@ -11625,18 +12083,18 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] name = "pallet-xcm-bridge-hub-router" -version = "0.19.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", "frame-support", "frame-system", - "log", "parity-scale-codec", "polkadot-runtime-parachains", "scale-info", @@ -11645,48 +12103,94 @@ dependencies = [ "sp-std", "staging-xcm", "staging-xcm-builder", + "tracing", +] + +[[package]] +name = "pallet-xcm-precompiles" +version = "0.9.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-support", + "pallet-revive", + "pallet-xcm", + "parity-scale-codec", + "staging-xcm", + "staging-xcm-executor", + "tracing", ] [[package]] name = "parachains-common" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", "frame-support", "frame-system", - "log", - "pallet-asset-tx-payment", "pallet-assets", "pallet-authorship", "pallet-balances", "pallet-collator-selection", - "pallet-message-queue", + "pallet-message-queue", + "pallet-multi-asset-bounties", + "pallet-treasury", + "pallet-xcm", + "parachains-common-types", + "parity-scale-codec", + "polkadot-primitives", + "polkadot-runtime-common", + "scale-info", + "sp-consensus-aura", + "sp-core", + "sp-io", + "sp-runtime", + "staging-parachain-info", + "staging-xcm", + "staging-xcm-executor", + "tracing", +] + +[[package]] +name = "parachains-common-types" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "sp-consensus-aura", + "sp-core", + "sp-runtime", +] + +[[package]] +name = "parachains-runtimes-test-utils" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "cumulus-pallet-parachain-system", + "cumulus-pallet-xcmp-queue", + "cumulus-primitives-core", + "cumulus-primitives-parachain-inherent", + "cumulus-test-relay-sproof-builder", + "frame-support", + "frame-system", + "pallet-balances", + "pallet-collator-selection", + "pallet-session", + "pallet-timestamp", "pallet-xcm", + "parachains-common", "parity-scale-codec", - "polkadot-primitives", - "scale-info", + "polkadot-parachain-primitives", "sp-consensus-aura", "sp-core", "sp-io", "sp-runtime", + "sp-tracing", "staging-parachain-info", "staging-xcm", "staging-xcm-executor", -] - -[[package]] -name = "parity-bip39" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" -dependencies = [ - "bitcoin_hashes 0.13.0", - "rand 0.8.6", - "rand_core 0.6.4", - "serde", - "unicode-normalization", + "xcm-runtime-apis", ] [[package]] @@ -11704,7 +12208,7 @@ dependencies = [ "lz4", "memmap2 0.5.10", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "siphasher 0.3.11", "snap", "winapi", @@ -11716,7 +12220,7 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "bitvec", "byte-slice-cast", "bytes", @@ -11733,10 +12237,10 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -11856,20 +12360,14 @@ dependencies = [ "password-hash 0.5.0", ] -[[package]] -name = "peeking_take_while" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" - [[package]] name = "pem" -version = "3.0.5" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ "base64 0.22.1", - "serde", + "serde_core", ] [[package]] @@ -11889,9 +12387,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.8.3" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989e7521a040efde50c3ab6bbadafbe15ab6dc042686926be59ac35d74607df4" +checksum = "47627dd7305c6a2d6c8c6bcd24c5a4c17dbbf425f4f9c5313e724b38fc9782e9" dependencies = [ "memchr", "ucd-trie", @@ -11899,9 +12397,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.8.3" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "187da9a3030dbafabbbfb20cb323b976dc7b7ce91fcd84f2f74d6e31d378e2de" +checksum = "4b4254325ecad416ab689e27ba51da03ba01a9632bc6e108f5fe7c3c4ad29d58" dependencies = [ "pest", "pest_generator", @@ -11909,25 +12407,24 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.8.3" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b401d98f5757ebe97a26085998d6c0eecec4995cad6ab7fc30ffdf4b052843" +checksum = "6c4c0e91ead7a8f7acecbca6f003fc2e8282b1dbe2dd9c9d2f16aba42995e0a7" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "pest_meta" -version = "2.8.3" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72f27a2cfee9f9039c4d86faa5af122a0ac3851441a34865b8a043b46be0065a" +checksum = "f9744bc48116fee06334924bb5f2bad41eed5e89bd26e29b0b799f9a3f82c210" dependencies = [ "pest", - "sha2 0.10.9", ] [[package]] @@ -11937,7 +12434,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset 0.4.2", - "indexmap 2.11.4", + "indexmap 2.14.0", ] [[package]] @@ -11947,34 +12444,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" dependencies = [ "fixedbitset 0.5.7", - "indexmap 2.11.4", + "indexmap 2.14.0", +] + +[[package]] +name = "petgraph" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" +dependencies = [ + "fixedbitset 0.5.7", + "hashbrown 0.15.5", + "indexmap 2.14.0", ] +[[package]] +name = "picosimd" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7823ffd00d2b55ebe51750a19f47f2a33cb1f1d135f5cba893379b81c4d44856" + [[package]] name = "pin-project" -version = "1.1.10" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.10" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" @@ -11984,12 +12498,12 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" dependencies = [ "atomic-waker", - "fastrand 2.3.0", + "fastrand", "futures-io", ] @@ -12005,14 +12519,14 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.32" +version = "0.3.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" [[package]] name = "polkadot-approval-distribution" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "futures-timer", @@ -12023,14 +12537,15 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", + "sp-core", "tracing-gum", ] [[package]] name = "polkadot-availability-bitfield-distribution" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "futures-timer", @@ -12038,14 +12553,14 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "tracing-gum", ] [[package]] name = "polkadot-availability-distribution" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fatality", "futures", @@ -12056,7 +12571,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "sc-network", "schnellru", "sp-core", @@ -12067,8 +12582,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "fatality", @@ -12080,7 +12595,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "sc-network", "schnellru", "thiserror 1.0.69", @@ -12090,9 +12605,9 @@ dependencies = [ [[package]] name = "polkadot-ckb-merkle-mountain-range" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "221c71b432b38e494a0fdedb5f720e4cb974edf03a0af09e5b2238dbac7e6947" +checksum = "f70a16374b7a26b74bfb4788254f8fd64c3406034e81694142cf93f1dd59368f" dependencies = [ "cfg-if", "itertools 0.10.5", @@ -12100,8 +12615,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "25.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "36.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "clap", "frame-benchmarking-cli", @@ -12111,6 +12626,7 @@ dependencies = [ "polkadot-node-primitives", "polkadot-service", "sc-cli", + "sc-network-types", "sc-service", "sc-storage-monitor", "sc-sysinfo", @@ -12124,31 +12640,37 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "async-trait", "bitvec", "fatality", "futures", - "futures-timer", + "parity-scale-codec", + "polkadot-node-clock", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", "schnellru", + "sp-consensus-babe", + "sp-consensus-slots", "sp-core", "sp-keystore", "sp-runtime", + "sp-timestamp", "thiserror 1.0.69", + "tokio", "tokio-util", "tracing-gum", ] [[package]] name = "polkadot-core-primitives" -version = "18.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -12158,13 +12680,13 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fatality", "futures", "futures-timer", - "indexmap 2.11.4", + "indexmap 2.14.0", "parity-scale-codec", "polkadot-node-network-protocol", "polkadot-node-primitives", @@ -12180,8 +12702,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -12194,8 +12716,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "24.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "futures-timer", @@ -12203,20 +12725,20 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "sc-network", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-keystore", "tracing-gum", ] [[package]] name = "polkadot-network-bridge" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "always-assert", "async-trait", @@ -12236,10 +12758,18 @@ dependencies = [ "tracing-gum", ] +[[package]] +name = "polkadot-node-clock" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "futures-timer", +] + [[package]] name = "polkadot-node-collation-generation" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "parity-scale-codec", @@ -12256,8 +12786,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "bitvec", @@ -12272,7 +12802,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_core 0.6.4", "sc-keystore", @@ -12288,8 +12818,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting-parallel" -version = "0.7.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.15.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -12303,7 +12833,7 @@ dependencies = [ "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "rand_core 0.6.4", "sc-keystore", "sp-consensus", @@ -12312,14 +12842,15 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "futures", "futures-timer", "parity-scale-codec", "polkadot-erasure-coding", + "polkadot-node-clock", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", @@ -12331,8 +12862,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "fatality", @@ -12352,8 +12883,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "polkadot-node-subsystem", @@ -12367,14 +12898,15 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", "futures-timer", "parity-scale-codec", "polkadot-node-core-pvf", + "polkadot-node-core-pvf-common", "polkadot-node-metrics", "polkadot-node-primitives", "polkadot-node-subsystem", @@ -12382,6 +12914,7 @@ dependencies = [ "polkadot-overseer", "polkadot-parachain-primitives", "polkadot-primitives", + "schnellru", "sp-application-crypto", "sp-keystore", "tracing-gum", @@ -12389,8 +12922,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "polkadot-node-metrics", @@ -12403,12 +12936,13 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "futures-timer", "parity-scale-codec", + "polkadot-node-clock", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", @@ -12419,26 +12953,28 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fatality", "futures", "parity-scale-codec", + "polkadot-node-clock", "polkadot-node-primitives", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", "sc-keystore", "schnellru", + "sp-core", "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-parachains-inherent" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -12454,22 +12990,23 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fatality", "futures", "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", + "schnellru", "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-provisioner" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "fatality", @@ -12479,14 +13016,16 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-node-subsystem-util", "polkadot-primitives", + "sc-consensus-slots", + "schnellru", "thiserror 1.0.69", "tracing-gum", ] [[package]] name = "polkadot-node-core-pvf" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "always-assert", "array-bytes 6.2.3", @@ -12500,7 +13039,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-parachain-primitives", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "sc-tracing", "slotmap", "sp-core", @@ -12513,8 +13052,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "polkadot-node-subsystem", @@ -12526,8 +13065,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "27.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cpu-time", "futures", @@ -12535,6 +13074,7 @@ dependencies = [ "libc", "nix 0.29.0", "parity-scale-codec", + "polkadot-node-primitives", "polkadot-parachain-primitives", "polkadot-primitives", "sc-executor", @@ -12542,7 +13082,8 @@ dependencies = [ "sc-executor-wasmtime", "seccompiler", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-ec-utils", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-externalities", "sp-io", "sp-tracing", @@ -12552,8 +13093,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "polkadot-node-metrics", @@ -12567,8 +13108,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bs58", "futures", @@ -12584,8 +13125,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -12597,7 +13138,7 @@ dependencies = [ "parity-scale-codec", "polkadot-node-primitives", "polkadot-primitives", - "rand 0.8.6", + "rand 0.8.7", "sc-authority-discovery", "sc-network", "sc-network-types", @@ -12609,8 +13150,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "bounded-vec", @@ -12633,8 +13174,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "polkadot-node-subsystem-types", "polkadot-overseer", @@ -12642,8 +13183,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "derive_more 0.99.20", @@ -12670,8 +13211,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "24.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fatality", "futures", @@ -12689,8 +13230,7 @@ dependencies = [ "polkadot-overseer", "polkadot-primitives", "prioritized-metered-channel", - "rand 0.8.6", - "sc-keystore", + "rand 0.8.7", "schnellru", "sp-application-crypto", "sp-core", @@ -12701,9 +13241,10 @@ dependencies = [ [[package]] name = "polkadot-omni-node-lib" -version = "0.7.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.18.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "array-bytes 6.2.3", "async-trait", "clap", "color-print", @@ -12712,7 +13253,6 @@ dependencies = [ "cumulus-client-collator", "cumulus-client-consensus-aura", "cumulus-client-consensus-common", - "cumulus-client-consensus-proposer", "cumulus-client-consensus-relay-chain", "cumulus-client-parachain-inherent", "cumulus-client-service", @@ -12722,6 +13262,7 @@ dependencies = [ "docify", "frame-benchmarking", "frame-benchmarking-cli", + "frame-metadata", "frame-support", "frame-system-rpc-runtime-api", "frame-try-runtime", @@ -12732,7 +13273,7 @@ dependencies = [ "pallet-transaction-payment", "pallet-transaction-payment-rpc", "pallet-transaction-payment-rpc-runtime-api", - "parachains-common", + "parachains-common-types", "parity-scale-codec", "polkadot-cli", "polkadot-primitives", @@ -12742,8 +13283,10 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-consensus", + "sc-consensus-aura", "sc-consensus-manual-seal", "sc-executor", + "sc-hop", "sc-keystore", "sc-network", "sc-network-statement", @@ -12753,6 +13296,7 @@ dependencies = [ "sc-runtime-utilities", "sc-service", "sc-statement-store", + "sc-storage-monitor", "sc-sysinfo", "sc-telemetry", "sc-tracing", @@ -12767,6 +13311,7 @@ dependencies = [ "sp-consensus-aura", "sp-core", "sp-genesis-builder", + "sp-hop", "sp-inherents", "sp-keystore", "sp-offchain", @@ -12776,11 +13321,10 @@ dependencies = [ "sp-storage", "sp-timestamp", "sp-transaction-pool", + "sp-transaction-storage-proof", "sp-version", "sp-weights", "staging-chain-spec-builder", - "stc-shield", - "stp-shield", "substrate-frame-rpc-system", "substrate-prometheus-endpoint", "substrate-state-trie-migration-rpc", @@ -12789,8 +13333,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -12809,10 +13353,11 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "17.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "bounded-collections 0.2.4", + "array-bytes 6.2.3", + "bounded-collections 0.3.2", "derive_more 0.99.20", "parity-scale-codec", "polkadot-core-primitives", @@ -12825,11 +13370,11 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "19.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "25.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", - "bounded-collections 0.2.4", + "bounded-collections 0.3.2", "hex-literal", "log", "parity-scale-codec", @@ -12852,10 +13397,25 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "polkadot-primitives-test-helpers" +version = "0.5.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "parity-scale-codec", + "polkadot-primitives", + "rand 0.8.7", + "scale-info", + "sp-application-crypto", + "sp-core", + "sp-keyring", + "sp-runtime", +] + [[package]] name = "polkadot-rpc" -version = "25.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "34.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -12887,8 +13447,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "frame-benchmarking", @@ -12937,8 +13497,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bs58", "frame-benchmarking", @@ -12949,8 +13509,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "20.0.2" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -12968,6 +13528,7 @@ dependencies = [ "pallet-message-queue", "pallet-mmr", "pallet-session", + "pallet-session-benchmarking", "pallet-staking", "pallet-timestamp", "parity-scale-codec", @@ -12975,7 +13536,7 @@ dependencies = [ "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-metrics", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "scale-info", "serde", @@ -12997,9 +13558,10 @@ dependencies = [ [[package]] name = "polkadot-sdk" -version = "2506.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "2606.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "asset-test-utils", "assets-common", "bridge-hub-common", "bridge-runtime-common", @@ -13024,9 +13586,11 @@ dependencies = [ "frame-system", "frame-system-benchmarking", "frame-try-runtime", + "pallet-accumulate-and-forward", "pallet-alliance", "pallet-asset-conversion", "pallet-asset-conversion-ops", + "pallet-asset-conversion-precompiles", "pallet-asset-conversion-tx-payment", "pallet-asset-rate", "pallet-asset-rewards", @@ -13034,6 +13598,7 @@ dependencies = [ "pallet-assets", "pallet-assets-freezer", "pallet-assets-holder", + "pallet-assets-precompiles", "pallet-atomic-swap", "pallet-aura", "pallet-authority-discovery", @@ -13057,8 +13622,10 @@ dependencies = [ "pallet-contracts-mock-network", "pallet-conviction-voting", "pallet-core-fellowship", + "pallet-dap", "pallet-delegated-staking", "pallet-democracy", + "pallet-derivatives", "pallet-dev-mode", "pallet-dummy-dim", "pallet-election-provider-multi-block", @@ -13079,6 +13646,7 @@ dependencies = [ "pallet-migrations", "pallet-mixnet", "pallet-mmr", + "pallet-multi-asset-bounties", "pallet-multisig", "pallet-nft-fractionalization", "pallet-nfts", @@ -13088,12 +13656,15 @@ dependencies = [ "pallet-nomination-pools-benchmarking", "pallet-offences", "pallet-offences-benchmarking", + "pallet-oracle", "pallet-origin-restriction", "pallet-paged-list", "pallet-parameters", "pallet-people", + "pallet-pgas-allowance", "pallet-preimage", "pallet-proxy", + "pallet-psm", "pallet-ranked-collective", "pallet-recovery", "pallet-referenda", @@ -13119,18 +13690,19 @@ dependencies = [ "pallet-timestamp", "pallet-tips", "pallet-transaction-payment", - "pallet-transaction-storage", "pallet-treasury", "pallet-tx-pause", "pallet-uniques", "pallet-utility", "pallet-verify-signature", "pallet-vesting", + "pallet-vesting-precompiles", "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "pallet-xcm-bridge-hub", "pallet-xcm-bridge-hub-router", + "pallet-xcm-precompiles", "parachains-common", "polkadot-cli", "polkadot-node-metrics", @@ -13155,8 +13727,8 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" -version = "0.10.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.18.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-benchmarking", @@ -13176,6 +13748,7 @@ dependencies = [ "sp-consensus-aura", "sp-consensus-grandpa", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -13190,8 +13763,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "25.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "36.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "frame-benchmarking", @@ -13218,6 +13791,7 @@ dependencies = [ "polkadot-dispute-distribution", "polkadot-gossip-support", "polkadot-network-bridge", + "polkadot-node-clock", "polkadot-node-collation-generation", "polkadot-node-core-approval-voting", "polkadot-node-core-approval-voting-parallel", @@ -13289,19 +13863,18 @@ dependencies = [ "sp-version", "sp-weights", "staging-xcm", - "stc-shield", - "stp-shield", "substrate-prometheus-endpoint", "thiserror 1.0.69", "tracing-gum", "westend-runtime", + "westend-runtime-constants", "xcm-runtime-apis", ] [[package]] name = "polkadot-statement-distribution" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitvec", "fatality", @@ -13320,8 +13893,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -13330,191 +13903,147 @@ dependencies = [ [[package]] name = "polkavm" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfd34e2f74206fff33482ae1718e275f11365ef8c4de7f0e69217f8845303867" -dependencies = [ - "libc", - "log", - "polkavm-assembler 0.21.0", - "polkavm-common 0.21.0", - "polkavm-linux-raw 0.21.0", -] - -[[package]] -name = "polkavm" -version = "0.24.0" +version = "0.33.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2a01db119bb3a86572c0641ba6e7c9786fbd2ac89c25b43b688c4e353787526" +checksum = "d90ece49c68657299648e20469517e22c6ec38321307bb14a69c27a33927a491" dependencies = [ "libc", "log", - "polkavm-assembler 0.24.0", - "polkavm-common 0.24.0", - "polkavm-linux-raw 0.24.0", -] - -[[package]] -name = "polkavm-assembler" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f512bc80cb10439391a7c13a9eb2d37cf66b7305e7df0a06d662eff4f5b07625" -dependencies = [ - "log", + "picosimd", + "polkavm-assembler", + "polkavm-common 0.33.0", + "polkavm-linux-raw", ] [[package]] name = "polkavm-assembler" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eea6105f3f344abe0bf0151d67b3de6f5d24353f2393355ecf3f5f6e06d7fd0b" +checksum = "00010f7924647dbf6f468d85d0fcfe4c3587cfb4557ef13f3682dbece8fd57f0" dependencies = [ "log", ] [[package]] name = "polkavm-common" -version = "0.21.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c16b809cfd398f861261c045a8745e6c78b71ea7e0d3ef6f7cc553eb27bc17e" +checksum = "ed1b408db93d4f49f5c651a7844682b9d7a561827b4dc6202c10356076c055c9" dependencies = [ - "blake3", - "log", - "polkavm-assembler 0.21.0", + "picosimd", ] [[package]] name = "polkavm-common" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed9e5af472f729fcf3b3c1cf17508ddbb3505259dd6e2ee0fb5a29e105d22" +checksum = "9e44a9487003cf5b9fc4462bbcf105cc37d5d9b18b40edf5ed50dd20ed1fdb27" dependencies = [ "log", - "polkavm-assembler 0.24.0", + "picosimd", + "polkavm-assembler", ] [[package]] name = "polkavm-derive" -version = "0.21.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47239245f87329541932c0d7fec750a66a75b13aa87dfe4fbfd637bab86ad387" +checksum = "acb4463fb0b9dbfafdc1d1a1183df4bf7afa3350d124f29d5700c6bee54556b5" dependencies = [ - "polkavm-derive-impl-macro 0.21.0", + "polkavm-derive-impl-macro 0.30.0", ] [[package]] name = "polkavm-derive" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176144f8661117ea95fa7cf868c9a62d6b143e8a2ebcb7582464c3faade8669a" +checksum = "3ef966bc8518a66ce12d4edb73f2c4094cae72bb23258bc9e9b2802cc9d6cd79" dependencies = [ - "polkavm-derive-impl-macro 0.24.0", + "polkavm-derive-impl-macro 0.33.0", ] [[package]] name = "polkavm-derive-impl" -version = "0.21.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24fd6c6215450c3e57511df5c38a82eb4bde208de15ee15046ac33852f3c3eaa" +checksum = "993ff45b972e09babe68adce7062c3c38a84b9f50f07b7caf393a023eaa6c74a" dependencies = [ - "polkavm-common 0.21.0", + "polkavm-common 0.30.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "polkavm-derive-impl" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5a21844afdfcc10c92b9ef288ccb926211af27478d1730fcd55e4aec710179d" +checksum = "f0c2166ad71dd7f51dcdd0d91b70d408a8b3610fa6e94d8202dd4b7185607181" dependencies = [ - "polkavm-common 0.24.0", + "polkavm-common 0.33.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.21.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36837f6b7edfd6f4498f8d25d81da16cf03bd6992c3e56f3d477dfc90f4fefca" +checksum = "0a4f5352e13c1ca5f0e4d7b4a804fbb85b0e02c45cae435d101fe71081bc8ed8" dependencies = [ - "polkavm-derive-impl 0.21.0", - "syn 2.0.106", + "polkavm-derive-impl 0.30.0", + "syn 2.0.119", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba0ef0f17ad81413ea1ca5b1b67553aedf5650c88269b673d3ba015c83bc2651" +checksum = "c7ac2ac8ec5b938e249fa97b5ebb1e6fa47000c81a25eba6bf0f13edb8d430e4" dependencies = [ - "polkavm-derive-impl 0.24.0", - "syn 2.0.106", + "polkavm-derive-impl 0.33.0", + "syn 2.0.119", ] [[package]] name = "polkavm-linker" -version = "0.21.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23bc764986c4a63f9ab9890c3f4eb9b4c13b6ff80d79685bd48ade147234aab4" +checksum = "6739125c4f8f44b4282b6531d765d599f20514e9b608737c6c3544594d08f995" dependencies = [ "dirs", "gimli 0.31.1", "hashbrown 0.14.5", "log", "object 0.36.7", - "polkavm-common 0.21.0", + "polkavm-common 0.30.0", "regalloc2 0.9.3", "rustc-demangle", ] [[package]] name = "polkavm-linker" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06c95a521a1331024ebe5823ffdfba9ea6df40b934b0804049d5171887579806" +checksum = "046d371182d27b707e116d1637ccdc8514e0e123130139ecff62bd78d987c622" dependencies = [ "dirs", - "gimli 0.31.1", - "hashbrown 0.14.5", - "log", - "object 0.36.7", - "polkavm-common 0.24.0", - "regalloc2 0.9.3", - "rustc-demangle", -] - -[[package]] -name = "polkavm-linux-raw" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be6cd1d48c5e7814d287a3e12a339386a5dfa2f3ac72f932335f4cf56467f1b3" - -[[package]] -name = "polkavm-linux-raw" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec0b13e26ec7234dba213ca17118c70c562809bdce0eefe84f92613d5c8da26" - -[[package]] -name = "polling" -version = "2.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" -dependencies = [ - "autocfg", - "bitflags 1.3.2", - "cfg-if", - "concurrent-queue", - "libc", + "gimli 0.31.1", + "hashbrown 0.14.5", "log", - "pin-project-lite", - "windows-sys 0.48.0", + "object 0.36.7", + "polkavm-common 0.33.0", + "regalloc2 0.9.3", + "rustc-demangle", ] +[[package]] +name = "polkavm-linux-raw" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42063d4a1c52e569f7794df27dab3e19c9fa8946184023257bdbb43eb4a94be5" + [[package]] name = "polling" version = "3.11.0" @@ -13523,9 +14052,9 @@ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.5.2", + "hermit-abi", "pin-project-lite", - "rustix 1.1.2", + "rustix 1.1.4", "windows-sys 0.61.2", ] @@ -13554,24 +14083,36 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3" [[package]] name = "portable-atomic-util" -version = "0.2.4" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507" +checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618" dependencies = [ "portable-atomic", ] +[[package]] +name = "postcard" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" +dependencies = [ + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "serde", +] + [[package]] name = "potential_utf" -version = "0.1.3" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" dependencies = [ "zerovec", ] @@ -13628,15 +14169,15 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.106", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "syn 2.0.119", ] [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" dependencies = [ "anstyle", "predicates-core", @@ -13644,15 +14185,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" dependencies = [ "predicates-core", "termtree", @@ -13665,7 +14206,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", ] [[package]] @@ -13712,21 +14262,11 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" -dependencies = [ - "thiserror 1.0.69", - "toml 0.5.11", -] - -[[package]] -name = "proc-macro-crate" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" dependencies = [ - "toml_edit 0.23.6", + "toml_edit 0.25.13+spec-1.1.0", ] [[package]] @@ -13763,6 +14303,16 @@ dependencies = [ "quote", ] +[[package]] +name = "proc-macro-error-attr3" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82366fd7d8b7a440d66d13418820c69df9b3908bcb1a0476d7f5ce5d12f5a04d" +dependencies = [ + "proc-macro2", + "quote", +] + [[package]] name = "proc-macro-error2" version = "2.0.1" @@ -13772,7 +14322,19 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "proc-macro-error3" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b511283ea8a74b4b39447b128c5d00f03a356b7424554b13e298a5550100d9ac" +dependencies = [ + "proc-macro-error-attr3", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -13783,14 +14345,14 @@ checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "proc-macro2" -version = "1.0.101" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -13803,15 +14365,15 @@ dependencies = [ "cfg-expr", "derive-syn-parse", "expander", - "frame-support-procedural-tools 10.0.0", + "frame-support-procedural-tools 10.0.0 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.10.5", "macro_magic", "proc-macro-warning", "proc-macro2", "quote", "regex", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.106", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "syn 2.0.119", ] [[package]] @@ -13848,24 +14410,23 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "proptest" -version = "1.8.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bb0be07becd10686a0bb407298fb425360a5c44a663774406340c59a22de4ce" +checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" dependencies = [ "bit-set", "bit-vec", - "bitflags 2.9.4", - "lazy_static", + "bitflags 2.13.1", "num-traits", - "rand 0.9.4", + "rand 0.9.5", "rand_chacha 0.9.0", "rand_xorshift", - "regex-syntax", + "regex-syntax 0.8.11", "rusty-fork", "tempfile", "unarray", @@ -13891,6 +14452,16 @@ dependencies = [ "prost-derive 0.13.5", ] +[[package]] +name = "prost" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1" +dependencies = [ + "bytes", + "prost-derive 0.14.4", +] + [[package]] name = "prost-build" version = "0.13.5" @@ -13905,9 +14476,28 @@ dependencies = [ "petgraph 0.7.1", "prettyplease", "prost 0.13.5", - "prost-types", + "prost-types 0.13.5", + "regex", + "syn 2.0.119", + "tempfile", +] + +[[package]] +name = "prost-build" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042" +dependencies = [ + "heck 0.5.0", + "itertools 0.14.0", + "log", + "multimap", + "petgraph 0.8.3", + "prettyplease", + "prost 0.14.4", + "prost-types 0.14.4", "regex", - "syn 2.0.106", + "syn 2.0.119", "tempfile", ] @@ -13921,7 +14511,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -13934,7 +14524,20 @@ dependencies = [ "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "prost-derive" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -13947,12 +14550,12 @@ dependencies = [ ] [[package]] -name = "psm" -version = "0.1.27" +name = "prost-types" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e66fcd288453b748497d8fb18bccc83a16b0518e3906d4b8df0a8d42d93dbb1c" +checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a" dependencies = [ - "cc", + "prost 0.14.4", ] [[package]] @@ -13975,6 +14578,29 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "pulley-interpreter" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "558181096e0df4984f45cfc3a7087052df4a61c36089b135a08ceca9cbd352fb" +dependencies = [ + "cranelift-bitset", + "log", + "pulley-macros", + "wasmtime-internal-math", +] + +[[package]] +name = "pulley-macros" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5d52e2f14e168d75cdabe9bd5fb1ff18a1b119dc6699684aee895dbc3524da9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + [[package]] name = "pyo3" version = "0.23.5" @@ -13984,7 +14610,7 @@ dependencies = [ "cfg-if", "indoc", "libc", - "memoffset 0.9.1", + "memoffset", "once_cell", "portable-atomic", "pyo3-build-config", @@ -14000,7 +14626,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb" dependencies = [ "once_cell", - "target-lexicon", + "target-lexicon 0.12.16", ] [[package]] @@ -14022,7 +14648,7 @@ dependencies = [ "proc-macro2", "pyo3-macros-backend", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -14035,7 +14661,7 @@ dependencies = [ "proc-macro2", "pyo3-build-config", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -14048,7 +14674,7 @@ dependencies = [ "libc", "once_cell", "raw-cpuid", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", "web-sys", "winapi", ] @@ -14083,20 +14709,20 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.9" +version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20" +checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" dependencies = [ "bytes", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "futures-io", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.1.1", + "rustc-hash 2.1.3", "rustls", - "socket2 0.6.0", - "thiserror 2.0.17", + "socket2 0.6.5", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -14104,20 +14730,21 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.15" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" +checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" dependencies = [ "bytes", - "getrandom 0.3.3", + "getrandom 0.4.3", "lru-slab", - "rand 0.9.4", + "rand 0.10.2", + "rand_pcg 0.10.2", "ring 0.17.14", - "rustc-hash 2.1.1", + "rustc-hash 2.1.3", "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -14125,23 +14752,23 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.14" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694" dependencies = [ - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", "once_cell", - "socket2 0.6.0", + "socket2 0.6.5", "tracing", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "quote" -version = "1.0.41" +version = "1.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" +checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" dependencies = [ "proc-macro2", ] @@ -14166,7 +14793,7 @@ checksum = "58547202bec9896e773db7ef04b4d47c444f9c97bc4386f36e55718c347db440" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -14175,6 +14802,12 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + [[package]] name = "radium" version = "0.7.0" @@ -14183,9 +14816,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a" +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -14194,13 +14827,12 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", - "serde", + "rand_core 0.9.5", ] [[package]] @@ -14209,9 +14841,9 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" dependencies = [ - "chacha20 0.10.0", - "getrandom 0.4.1", - "rand_core 0.10.0", + "chacha20 0.10.1", + "getrandom 0.4.3", + "rand_core 0.10.1", ] [[package]] @@ -14231,7 +14863,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -14245,19 +14877,18 @@ dependencies = [ [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.3", - "serde", + "getrandom 0.3.4", ] [[package]] name = "rand_core" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" [[package]] name = "rand_distr" @@ -14266,7 +14897,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand 0.8.6", + "rand 0.8.7", ] [[package]] @@ -14279,21 +14910,21 @@ dependencies = [ ] [[package]] -name = "rand_xorshift" -version = "0.4.0" +name = "rand_pcg" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" dependencies = [ - "rand_core 0.9.3", + "rand_core 0.10.1", ] [[package]] -name = "rapidhash" -version = "4.5.1" +name = "rand_xorshift" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5da7e78a036ce858e8d55b7e7dc8ba3a88b78350fd2155d3591bbd966b58589e" +checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "rustversion", + "rand_core 0.9.5", ] [[package]] @@ -14302,7 +14933,7 @@ version = "11.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", ] [[package]] @@ -14313,9 +14944,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.11.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" dependencies = [ "either", "rayon-core", @@ -14358,7 +14989,7 @@ version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", ] [[package]] @@ -14401,62 +15032,79 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "regalloc2" -version = "0.6.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" +checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" dependencies = [ - "fxhash", + "hashbrown 0.13.2", "log", + "rustc-hash 1.1.0", "slice-group-by", "smallvec", ] [[package]] name = "regalloc2" -version = "0.9.3" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" +checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734" dependencies = [ - "hashbrown 0.13.2", + "allocator-api2", + "bumpalo", + "hashbrown 0.15.5", "log", - "rustc-hash 1.1.0", - "slice-group-by", + "rustc-hash 2.1.3", "smallvec", ] [[package]] name = "regex" -version = "1.11.3" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c" +checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d" dependencies = [ "aho-corasick", "memchr", - "regex-automata", - "regex-syntax", + "regex-automata 0.4.16", + "regex-syntax 0.8.11", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.29", ] [[package]] name = "regex-automata" -version = "0.4.11" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad" +checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" dependencies = [ "aho-corasick", "memchr", - "regex-syntax", + "regex-syntax 0.8.11", ] [[package]] name = "regex-syntax" -version = "0.8.6" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "rend" @@ -14478,10 +15126,10 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", - "hyper 1.7.0", + "hyper 1.10.1", "hyper-rustls", "hyper-util", "js-sys", @@ -14509,9 +15157,181 @@ dependencies = [ [[package]] name = "resolv-conf" -version = "0.7.5" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" + +[[package]] +name = "revm" +version = "27.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6bf82101a1ad8a2b637363a37aef27f88b4efc8a6e24c72bf5f64923dc5532" +dependencies = [ + "revm-bytecode", + "revm-context", + "revm-context-interface", + "revm-database", + "revm-database-interface", + "revm-handler", + "revm-inspector", + "revm-interpreter", + "revm-precompile", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-bytecode" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66c52031b73cae95d84cd1b07725808b5fd1500da3e5e24574a3b2dc13d9f16d" +dependencies = [ + "bitvec", + "revm-primitives", +] + +[[package]] +name = "revm-context" +version = "8.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cd508416a35a4d8a9feaf5ccd06ac6d6661cd31ee2dc0252f9f7316455d71f9" +dependencies = [ + "cfg-if", + "derive-where", + "revm-bytecode", + "revm-context-interface", + "revm-database-interface", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-context-interface" +version = "9.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc90302642d21c8f93e0876e201f3c5f7913c4fcb66fb465b0fd7b707dfe1c79" +dependencies = [ + "alloy-eip2930", + "alloy-eip7702", + "auto_impl", + "either", + "revm-database-interface", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-database" +version = "7.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799" +checksum = "39a276ed142b4718dcf64bc9624f474373ed82ef20611025045c3fb23edbef9c" +dependencies = [ + "revm-bytecode", + "revm-database-interface", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-database-interface" +version = "7.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c523c77e74eeedbac5d6f7c092e3851dbe9c7fec6f418b85992bd79229db361" +dependencies = [ + "auto_impl", + "either", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-handler" +version = "8.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1529c8050e663be64010e80ec92bf480315d21b1f2dbf65540028653a621b27d" +dependencies = [ + "auto_impl", + "derive-where", + "revm-bytecode", + "revm-context", + "revm-context-interface", + "revm-database-interface", + "revm-interpreter", + "revm-precompile", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-inspector" +version = "8.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f78db140e332489094ef314eaeb0bd1849d6d01172c113ab0eb6ea8ab9372926" +dependencies = [ + "auto_impl", + "either", + "revm-context", + "revm-database-interface", + "revm-handler", + "revm-interpreter", + "revm-primitives", + "revm-state", +] + +[[package]] +name = "revm-interpreter" +version = "24.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff9d7d9d71e8a33740b277b602165b6e3d25fff091ba3d7b5a8d373bf55f28a7" +dependencies = [ + "revm-bytecode", + "revm-context-interface", + "revm-primitives", +] + +[[package]] +name = "revm-precompile" +version = "25.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cee3f336b83621294b4cfe84d817e3eef6f3d0fce00951973364cc7f860424d" +dependencies = [ + "ark-bls12-381 0.5.0", + "ark-bn254", + "ark-ec 0.5.0", + "ark-ff 0.5.0", + "ark-serialize 0.5.0", + "arrayref", + "aurora-engine-modexp", + "cfg-if", + "k256", + "once_cell", + "p256", + "revm-primitives", + "ripemd", + "sha2 0.10.9", +] + +[[package]] +name = "revm-primitives" +version = "20.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aa29d9da06fe03b249b6419b33968ecdf92ad6428e2f012dc57bcd619b5d94e" +dependencies = [ + "alloy-primitives 1.6.1", + "num_enum", + "once_cell", +] + +[[package]] +name = "revm-state" +version = "7.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f64fbacb86008394aaebd3454f9643b7d5a782bd251135e17c5b33da592d84d" +dependencies = [ + "bitflags 2.13.1", + "revm-bytecode", + "revm-primitives", +] [[package]] name = "rfc6979" @@ -14619,14 +15439,14 @@ checksum = "652db34deaaa57929e10ca18e5454a32cb0efc351ae80d320334bbf907b908b3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "rocksdb" -version = "0.21.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f" dependencies = [ "libc", "librocksdb-sys", @@ -14634,8 +15454,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "24.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "34.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "binary-merkle-tree", "bitvec", @@ -14732,8 +15552,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "polkadot-primitives", @@ -14765,42 +15585,43 @@ dependencies = [ [[package]] name = "rtnetlink" -version = "0.13.1" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a552eb82d19f38c3beed3f786bd23aa434ceb9ac43ab44419ca6d67a7e186c0" +checksum = "4b960d5d873a75b5be9761b1e73b146f52dddcd27bac75263f40fba686d4d7b5" dependencies = [ - "futures", + "futures-channel", + "futures-util", "log", "netlink-packet-core", "netlink-packet-route", - "netlink-packet-utils", "netlink-proto", "netlink-sys", - "nix 0.26.4", + "nix 0.30.1", "thiserror 1.0.69", "tokio", ] [[package]] name = "rtoolbox" -version = "0.0.3" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f" +checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "ruint" -version = "1.17.0" +version = "1.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278" +checksum = "45caf26f647c19115bf9c453c70ffe4a4a3a6390dceebd942610584f99b8ddce" dependencies = [ "alloy-rlp", "ark-ff 0.3.0", "ark-ff 0.4.2", "ark-ff 0.5.0", + "ark-ff 0.6.0", "bytes", "fastrlp 0.3.1", "fastrlp 0.4.0", @@ -14810,8 +15631,8 @@ dependencies = [ "parity-scale-codec", "primitive-types 0.12.2", "proptest", - "rand 0.8.6", - "rand 0.9.4", + "rand 0.8.7", + "rand 0.9.5", "rlp 0.5.2", "ruint-macro", "serde_core", @@ -14827,25 +15648,26 @@ checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" [[package]] name = "rust_decimal" -version = "1.40.0" +version = "1.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0" +checksum = "be2a24f50780bc85f09cc6ac299bdf1424302742d77221106859c9d8b102126a" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "borsh", "bytes", "num-traits", - "rand 0.8.6", + "rand 0.8.7", "rkyv", "serde", "serde_json", + "wasm-bindgen", ] [[package]] name = "rustc-demangle" -version = "0.1.26" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" +checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb" [[package]] name = "rustc-hash" @@ -14855,9 +15677,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.1.1" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" [[package]] name = "rustc-hex" @@ -14889,7 +15711,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.27", + "semver 1.0.28", ] [[package]] @@ -14898,35 +15720,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom", -] - -[[package]] -name = "rustix" -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.37.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "519165d378b97752ca44bbe15047d5d3409e875f39327546b42ac81d7e18c1b6" -dependencies = [ - "bitflags 1.3.2", - "errno", - "io-lifetimes", - "libc", - "linux-raw-sys 0.3.8", - "windows-sys 0.48.0", + "nom 7.1.3", ] [[package]] @@ -14935,7 +15729,7 @@ version = "0.38.44" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "errno", "libc", "linux-raw-sys 0.4.15", @@ -14944,22 +15738,22 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "errno", "libc", - "linux-raw-sys 0.11.0", - "windows-sys 0.59.0", + "linux-raw-sys 0.12.1", + "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.23.32" +version = "0.23.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd3c25631629d034ce7cd9940adc9d45762d46de2b0f57193c4443b92c6d4d40" +checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138" dependencies = [ "log", "once_cell", @@ -14972,21 +15766,21 @@ dependencies = [ [[package]] name = "rustls-native-certs" -version = "0.8.1" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.5.1", + "security-framework", ] [[package]] name = "rustls-pki-types" -version = "1.12.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" dependencies = [ "web-time", "zeroize", @@ -15007,7 +15801,7 @@ dependencies = [ "rustls-native-certs", "rustls-platform-verifier-android", "rustls-webpki 0.103.13", - "security-framework 3.5.1", + "security-framework", "security-framework-sys", "webpki-root-certs 0.26.11", "windows-sys 0.59.0", @@ -15042,9 +15836,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.22" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" [[package]] name = "rusty-fork" @@ -15060,24 +15854,9 @@ dependencies = [ [[package]] name = "ruzstd" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3ffab8f9715a0d455df4bbb9d21e91135aab3cd3ca187af0cd0c3c3f868fdc" -dependencies = [ - "byteorder", - "thiserror-core", - "twox-hash 1.6.3", -] - -[[package]] -name = "ruzstd" -version = "0.6.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" -dependencies = [ - "byteorder", - "derive_more 0.99.20", -] +checksum = "a7c1c839d570d835527c9a5e4db7cb2198683a988cb9d7293fc8674e6bd58fc8" [[package]] name = "rw-stream-sink" @@ -15092,9 +15871,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.20" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "safe-bigmath" @@ -15162,8 +15941,8 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "32.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "39.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "sp-core", @@ -15173,8 +15952,8 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -15184,11 +15963,12 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", - "rand 0.8.6", + "prost-build 0.13.5", + "rand 0.8.7", "sc-client-api", "sc-network", "sc-network-types", + "sc-service", "serde", "serde_json", "sp-api", @@ -15204,8 +15984,8 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.56.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "log", @@ -15220,34 +16000,36 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", + "sp-state-machine", + "sp-trie", "stp-shield", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" -version = "0.45.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.51.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "sp-api", "sp-block-builder", "sp-blockchain", "sp-core", + "sp-externalities", "sp-inherents", "sp-runtime", - "sp-trie", ] [[package]] name = "sc-chain-spec" -version = "44.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "51.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "clap", "docify", - "memmap2 0.9.8", + "memmap2 0.9.11", "parity-scale-codec", "sc-chain-spec-derive", "sc-client-api", @@ -15258,7 +16040,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -15268,21 +16050,22 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" -version = "12.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "sc-cli" -version = "0.53.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.61.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", + "bip39", "chrono", "clap", "fdlimit", @@ -15291,9 +16074,8 @@ dependencies = [ "libp2p-identity", "log", "names", - "parity-bip39", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "regex", "rpassword", "sc-client-api", @@ -15321,8 +16103,8 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fnv", "futures", @@ -15347,8 +16129,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.47.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.54.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "hash-db", "kvdb", @@ -15375,8 +16157,8 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -15398,13 +16180,15 @@ dependencies = [ [[package]] name = "sc-consensus-aura" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", + "fork-tree", "futures", "log", "parity-scale-codec", + "parking_lot 0.12.5", "sc-block-builder", "sc-client-api", "sc-consensus", @@ -15427,8 +16211,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "fork-tree", @@ -15453,18 +16237,19 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-inherents", "sp-keystore", "sp-runtime", + "sp-timestamp", "substrate-prometheus-endpoint", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-babe-rpc" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "jsonrpsee", @@ -15485,8 +16270,8 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" -version = "30.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "37.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -15519,8 +16304,8 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" -version = "30.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "38.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "jsonrpsee", @@ -15539,8 +16324,8 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "fork-tree", "parity-scale-codec", @@ -15552,8 +16337,8 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" -version = "0.36.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.43.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "ahash 0.8.12", "array-bytes 6.2.3", @@ -15566,10 +16351,11 @@ dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "sc-block-builder", "sc-chain-spec", "sc-client-api", + "sc-client-db", "sc-consensus", "sc-network", "sc-network-common", @@ -15587,7 +16373,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -15596,8 +16382,8 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" -version = "0.36.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.44.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "finality-grandpa", "futures", @@ -15616,10 +16402,9 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" -version = "0.52.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "assert_matches", "async-trait", "futures", "futures-timer", @@ -15641,18 +16426,20 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", + "sp-externalities", "sp-inherents", "sp-keystore", "sp-runtime", "sp-timestamp", + "sp-trie", "substrate-prometheus-endpoint", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-slots" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", @@ -15670,12 +16457,13 @@ dependencies = [ "sp-inherents", "sp-runtime", "sp-state-machine", + "sp-trie", ] [[package]] name = "sc-executor" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.50.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "parking_lot 0.12.5", @@ -15697,10 +16485,10 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.39.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.47.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "polkavm 0.24.0", + "polkavm", "sc-allocator", "sp-maybe-compressed-blob", "sp-wasm-interface", @@ -15710,24 +16498,25 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" -version = "0.36.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.44.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", - "polkavm 0.24.0", + "polkavm", "sc-executor-common", + "sp-runtime-interface", "sp-wasm-interface", ] [[package]] name = "sc-executor-wasmtime" -version = "0.39.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.47.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "anyhow", "log", "parking_lot 0.12.5", - "rustix 0.36.17", + "rustix 1.1.4", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -15735,10 +16524,34 @@ dependencies = [ "wasmtime", ] +[[package]] +name = "sc-hop" +version = "0.2.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "clap", + "futures-timer", + "hex", + "jsonrpsee", + "parity-scale-codec", + "parking_lot 0.12.5", + "polkadot-primitives", + "sc-transaction-pool-api", + "serde", + "sp-api", + "sp-blockchain", + "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "sp-hop", + "sp-runtime", + "thiserror 1.0.69", + "tracing", +] + [[package]] name = "sc-informant" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "console", "futures", @@ -15753,8 +16566,8 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "36.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "42.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "parking_lot 0.12.5", @@ -15767,11 +16580,11 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "blake2 0.10.6", "bytes", "futures", @@ -15795,15 +16608,15 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.51.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", "async-trait", "asynchronous-codec 0.6.2", "bytes", - "cid 0.9.0", + "cid", "either", "fnv", "futures", @@ -15819,8 +16632,8 @@ dependencies = [ "partial_sort", "pin-project", "prost 0.12.6", - "prost-build", - "rand 0.8.6", + "prost-build 0.13.5", + "rand 0.8.7", "sc-client-api", "sc-network-common", "sc-network-types", @@ -15832,6 +16645,7 @@ dependencies = [ "sp-arithmetic", "sp-blockchain", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-runtime", "substrate-prometheus-endpoint", "thiserror 1.0.69", @@ -15845,8 +16659,8 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.49.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.55.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -15855,8 +16669,8 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "ahash 0.8.12", "futures", @@ -15874,8 +16688,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -15883,7 +16697,7 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-network", "sc-network-types", @@ -15895,14 +16709,17 @@ dependencies = [ [[package]] name = "sc-network-statement" -version = "0.33.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.41.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", + "fastbloom", "futures", + "governor", "log", "parity-scale-codec", + "rand 0.8.7", "sc-network", "sc-network-common", "sc-network-sync", @@ -15911,12 +16728,13 @@ dependencies = [ "sp-runtime", "sp-statement-store", "substrate-prometheus-endpoint", + "tokio", ] [[package]] name = "sc-network-sync" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -15927,7 +16745,7 @@ dependencies = [ "mockall", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-consensus", "sc-network", @@ -15939,7 +16757,6 @@ dependencies = [ "sp-arithmetic", "sp-blockchain", "sp-consensus", - "sp-consensus-grandpa", "sp-core", "sp-runtime", "substrate-prometheus-endpoint", @@ -15950,8 +16767,8 @@ dependencies = [ [[package]] name = "sc-network-transactions" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "futures", @@ -15969,8 +16786,8 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.17.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.22.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bs58", "bytes", @@ -15979,9 +16796,9 @@ dependencies = [ "libp2p-kad", "litep2p", "log", - "multiaddr 0.18.2", - "multihash 0.19.3", - "rand 0.8.6", + "multiaddr", + "multihash", + "rand 0.8.7", "serde", "serde_with", "thiserror 1.0.69", @@ -15990,22 +16807,22 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "46.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "53.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bytes", "fnv", "futures", "futures-timer", "http-body-util", - "hyper 1.7.0", + "hyper 1.10.1", "hyper-rustls", "hyper-util", "num_cpus", "once_cell", "parity-scale-codec", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "rustls", "sc-client-api", "sc-network", @@ -16024,8 +16841,8 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" -version = "0.20.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -16033,9 +16850,10 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "46.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "54.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "async-channel 1.9.0", "futures", "jsonrpsee", "log", @@ -16046,6 +16864,7 @@ dependencies = [ "sc-client-api", "sc-mixnet", "sc-rpc-api", + "sc-statement-store", "sc-tracing", "sc-transaction-pool-api", "sc-utils", @@ -16065,8 +16884,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.50.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -16079,28 +16898,32 @@ dependencies = [ "sp-core", "sp-rpc", "sp-runtime", + "sp-statement-store", "sp-version", "thiserror 1.0.69", ] [[package]] name = "sc-rpc-server" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "dyn-clone", "forwarded-header-value", "futures", "governor", - "http 1.3.1", + "http 1.4.2", "http-body-util", - "hyper 1.7.0", + "hyper 1.10.1", "ip_network", "jsonrpsee", "log", + "prometheus", "sc-rpc-api", + "sc-utils", "serde", "serde_json", + "sp-core", "substrate-prometheus-endpoint", "tokio", "tower 0.4.13", @@ -16109,19 +16932,21 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", + "cid", "futures", "futures-util", "hex", "itertools 0.11.0", "jsonrpsee", "log", + "multihash-codetable", "parity-scale-codec", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "sc-chain-spec", "sc-client-api", "sc-rpc", @@ -16130,6 +16955,7 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", + "sp-consensus", "sp-core", "sp-rpc", "sp-runtime", @@ -16142,14 +16968,14 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" -version = "0.3.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "sc-executor", "sc-executor-common", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-state-machine", "sp-wasm-interface", "thiserror 1.0.69", @@ -16157,8 +16983,8 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.52.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.60.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "directories", @@ -16170,7 +16996,7 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.5", "pin-project", - "rand 0.8.6", + "rand 0.8.7", "sc-chain-spec", "sc-client-api", "sc-client-db", @@ -16221,8 +17047,8 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.39.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.45.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -16232,27 +17058,33 @@ dependencies = [ [[package]] name = "sc-statement-store" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "async-channel 1.9.0", + "futures", + "itertools 0.11.0", "log", "parity-db", "parking_lot 0.12.5", "sc-client-api", "sc-keystore", + "sc-network-statement", + "sc-utils", "sp-api", "sp-blockchain", "sp-core", "sp-runtime", "sp-statement-store", + "sp-storage", "substrate-prometheus-endpoint", "tokio", ] [[package]] name = "sc-storage-monitor" -version = "0.25.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.31.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "clap", "fs4", @@ -16264,8 +17096,8 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" -version = "0.51.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -16283,28 +17115,28 @@ dependencies = [ [[package]] name = "sc-sysinfo" -version = "43.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "derive_more 0.99.20", "futures", "libc", "log", - "rand 0.8.6", - "rand_pcg", + "rand 0.8.7", + "rand_pcg 0.3.1", "regex", "sc-telemetry", "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", ] [[package]] name = "sc-telemetry" -version = "29.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "chrono", "futures", @@ -16312,7 +17144,7 @@ dependencies = [ "log", "parking_lot 0.12.5", "pin-project", - "rand 0.8.6", + "rand 0.8.7", "sc-utils", "serde", "serde_json", @@ -16322,8 +17154,8 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "chrono", "console", @@ -16345,29 +17177,29 @@ dependencies = [ "thiserror 1.0.69", "tracing", "tracing-log", - "tracing-subscriber 0.3.20", + "tracing-subscriber 0.3.19", ] [[package]] name = "sc-tracing-proc-macro" -version = "11.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "sc-transaction-pool" -version = "40.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", "futures-timer", - "indexmap 2.11.4", + "indexmap 2.14.0", "itertools 0.11.0", "linked-hash-map", "parity-scale-codec", @@ -16379,10 +17211,11 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-runtime", "sp-tracing", "sp-transaction-pool", + "strum 0.26.3", "substrate-prometheus-endpoint", "thiserror 1.0.69", "tokio", @@ -16392,25 +17225,26 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", - "indexmap 2.11.4", + "indexmap 2.14.0", "log", "parity-scale-codec", "serde", "sp-blockchain", "sp-core", "sp-runtime", + "strum 0.26.3", "thiserror 1.0.69", ] [[package]] name = "sc-utils" -version = "19.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-channel 1.9.0", "futures", @@ -16421,6 +17255,16 @@ dependencies = [ "sp-arithmetic", ] +[[package]] +name = "sc-virtualization" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "log", + "polkavm", + "sp-virtualization", +] + [[package]] name = "scale-bits" version = "0.7.0" @@ -16435,9 +17279,9 @@ dependencies = [ [[package]] name = "scale-decode" -version = "0.16.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d78196772d25b90a98046794ce0fe2588b39ebdfbdc1e45b4c6c85dd43bebad" +checksum = "8d6ed61699ad4d54101ab5a817169259b5b0efc08152f8632e61482d8a27ca3d" dependencies = [ "parity-scale-codec", "primitive-types 0.13.1", @@ -16445,26 +17289,26 @@ dependencies = [ "scale-decode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "scale-decode-derive" -version = "0.16.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4b54a1211260718b92832b661025d1f1a4b6930fbadd6908e00edd265fa5f7" +checksum = "65cb245f7fdb489e7ba43a616cbd34427fe3ba6fe0edc1d0d250085e6c84f3ec" dependencies = [ "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "scale-encode" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64901733157f9d25ef86843bd783eda439fac7efb0ad5a615d12d2cf3a29464b" +checksum = "f2a976d73564a59e482b74fd5d95f7518b79ca8c8ca5865398a4d629dd15ee50" dependencies = [ "parity-scale-codec", "primitive-types 0.13.1", @@ -16472,20 +17316,20 @@ dependencies = [ "scale-encode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "scale-encode-derive" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78a3993a13b4eafa89350604672c8757b7ea84c7c5947d4b3691e3169c96379b" +checksum = "17020f2d59baabf2ddcdc20a4e567f8210baf089b8a8d4785f5fd5e716f92038" dependencies = [ "darling 0.20.11", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -16508,10 +17352,10 @@ version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -16533,15 +17377,15 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.106", - "thiserror 2.0.17", + "syn 2.0.119", + "thiserror 2.0.18", ] [[package]] name = "scale-value" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca8b26b451ecb7fd7b62b259fa28add63d12ec49bbcac0e01fcb4b5ae0c09aa" +checksum = "b3b64809a541e8d5a59f7a9d67cc700cdf5d7f907932a83a0afdedc90db07ccb" dependencies = [ "base58", "blake2 0.10.6", @@ -16552,19 +17396,43 @@ dependencies = [ "scale-encode", "scale-type-resolver", "serde", - "thiserror 2.0.17", + "thiserror 2.0.18", "yap", ] [[package]] name = "schannel" -version = "0.1.28" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" dependencies = [ "windows-sys 0.61.2", ] +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + [[package]] name = "schnellru" version = "0.2.4" @@ -16583,7 +17451,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "844b7645371e6ecdf61ff246ba1958c29e802881a749ae3fb1993675d210d28d" dependencies = [ "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "curve25519-dalek-ng", "merlin", "rand_core 0.6.4", @@ -16600,7 +17468,7 @@ checksum = "6e9fcb6c2e176e86ec703e22560d99d65a5ee9056ae45a08e13e84ebf796296f" dependencies = [ "aead", "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "curve25519-dalek", "getrandom_or_panic", "merlin", @@ -16689,8 +17557,8 @@ version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252" dependencies = [ - "bitcoin_hashes 0.14.0", - "rand 0.8.6", + "bitcoin_hashes", + "rand 0.8.7", "secp256k1-sys 0.10.1", ] @@ -16741,24 +17609,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" -dependencies = [ - "bitflags 2.9.4", - "core-foundation 0.9.4", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework" -version = "3.5.1" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "core-foundation 0.10.1", "core-foundation-sys", "libc", @@ -16767,9 +17622,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.15.0" +version = "2.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" dependencies = [ "core-foundation-sys", "libc", @@ -16804,9 +17659,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.27" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" dependencies = [ "serde", "serde_core", @@ -16827,6 +17682,12 @@ dependencies = [ "pest", ] +[[package]] +name = "send_wrapper" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" + [[package]] name = "serde" version = "1.0.228" @@ -16874,20 +17735,20 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" dependencies = [ "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -16921,6 +17782,10 @@ dependencies = [ "bs58", "chrono", "hex", + "indexmap 1.9.3", + "indexmap 2.14.0", + "schemars 0.9.0", + "schemars 1.2.1", "serde_core", "serde_json", "serde_with_macros", @@ -16936,7 +17801,7 @@ dependencies = [ "darling 0.23.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -16949,24 +17814,11 @@ dependencies = [ "serde", ] -[[package]] -name = "sha-1" -version = "0.9.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" -dependencies = [ - "block-buffer 0.9.0", - "cfg-if", - "cpufeatures 0.2.17", - "digest 0.9.0", - "opaque-debug 0.3.1", -] - [[package]] name = "sha1" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" dependencies = [ "cfg-if", "cpufeatures 0.2.17", @@ -16988,20 +17840,37 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.9" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest 0.10.7", +] + +[[package]] +name = "sha2" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" dependencies = [ "cfg-if", - "cpufeatures 0.2.17", - "digest 0.10.7", + "cpufeatures 0.3.0", + "digest 0.11.3", ] +[[package]] +name = "sha2-const-stable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f179d4e11094a893b82fff208f74d448a7512f99f5a0acbd5c679b705f83ed9" + [[package]] name = "sha3" -version = "0.10.8" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874" dependencies = [ "digest 0.10.7", "keccak 0.1.6", @@ -17019,9 +17888,9 @@ dependencies = [ [[package]] name = "sha3-asm" -version = "0.1.4" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c28efc5e327c837aa837c59eae585fc250715ef939ac32881bcc11677cd02d46" +checksum = "a6287fd675f713484342a89cbf0a386abef5f15919cfad607e5e1f19e1e15331" dependencies = [ "cc", "cfg-if", @@ -17044,7 +17913,7 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "rayon", "safe-math", "scale-info", @@ -17060,12 +17929,19 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + [[package]] name = "signal-hook-registry" -version = "1.4.6" +version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ + "errno", "libc", ] @@ -17126,11 +18002,11 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.9.3" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a" +checksum = "7a75cbde1bf934313596a004973e462f9a82caa814dcf1a5f507bdf51597eeb4" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", ] [[package]] @@ -17147,15 +18023,15 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "siphasher" -version = "1.0.1" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" [[package]] name = "slab" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slice-group-by" @@ -17165,8 +18041,8 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" -version = "18.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "enumn", "parity-scale-codec", @@ -17176,34 +18052,20 @@ dependencies = [ [[package]] name = "slotmap" -version = "1.0.7" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a" +checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038" dependencies = [ "version_check", ] [[package]] name = "smallvec" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - -[[package]] -name = "smol" -version = "1.3.0" +version = "1.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13f2b548cd8447f8de0fdf1c592929f70f4fc7039a05e47404b0d096ec6987a1" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" dependencies = [ - "async-channel 1.9.0", - "async-executor", - "async-fs 1.6.0", - "async-io 1.13.0", - "async-lock 2.8.0", - "async-net 1.8.0", - "async-process 1.8.1", - "blocking", - "futures-lite 1.13.0", + "serde", ] [[package]] @@ -17214,77 +18076,23 @@ checksum = "a33bd3e260892199c3ccfc487c88b2da2265080acb316cd920da72fdfd7c599f" dependencies = [ "async-channel 2.5.0", "async-executor", - "async-fs 2.2.0", - "async-io 2.6.0", - "async-lock 3.4.1", - "async-net 2.0.0", - "async-process 2.5.0", + "async-fs", + "async-io", + "async-lock", + "async-net", + "async-process", "blocking", - "futures-lite 2.6.1", -] - -[[package]] -name = "smoldot" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0bb30cf57b7b5f6109ce17c3164445e2d6f270af2cb48f6e4d31c2967c9a9f5" -dependencies = [ - "arrayvec 0.7.6", - "async-lock 2.8.0", - "atomic-take", - "base64 0.21.7", - "bip39", - "blake2-rfc", - "bs58", - "chacha20 0.9.1", - "crossbeam-queue", - "derive_more 0.99.20", - "ed25519-zebra", - "either", - "event-listener 2.5.3", - "fnv", - "futures-lite 1.13.0", - "futures-util", - "hashbrown 0.14.5", - "hex", - "hmac 0.12.1", - "itertools 0.11.0", - "libsecp256k1", - "merlin", - "no-std-net", - "nom", - "num-bigint", - "num-rational", - "num-traits", - "pbkdf2 0.12.2", - "pin-project", - "poly1305", - "rand 0.8.6", - "rand_chacha 0.3.1", - "ruzstd 0.4.0", - "schnorrkel 0.10.2", - "serde", - "serde_json", - "sha2 0.10.9", - "sha3 0.10.8", - "siphasher 0.3.11", - "slab", - "smallvec", - "soketto 0.7.1", - "twox-hash 1.6.3", - "wasmi 0.31.2", - "x25519-dalek", - "zeroize", + "futures-lite", ] [[package]] name = "smoldot" -version = "0.18.0" +version = "0.19.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "966e72d77a3b2171bb7461d0cb91f43670c63558c62d7cf42809cae6c8b6b818" +checksum = "e16e5723359f0048bf64bfdfba64e5732a56847d42c4fd3fe56f18280c813413" dependencies = [ - "arrayvec 0.7.6", - "async-lock 3.4.1", + "arrayvec 0.7.8", + "async-lock", "atomic-take", "base64 0.22.1", "bip39", @@ -17292,114 +18100,78 @@ dependencies = [ "bs58", "chacha20 0.9.1", "crossbeam-queue", - "derive_more 0.99.20", + "derive_more 2.1.1", "ed25519-zebra", "either", "event-listener 5.4.1", "fnv", - "futures-lite 2.6.1", + "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", "hmac 0.12.1", - "itertools 0.13.0", + "itertools 0.14.0", "libm", "libsecp256k1", "merlin", - "nom", + "nom 8.0.0", "num-bigint", "num-rational", "num-traits", "pbkdf2 0.12.2", "pin-project", "poly1305", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", - "ruzstd 0.6.0", + "ruzstd", "schnorrkel 0.11.5", "serde", "serde_json", "sha2 0.10.9", - "sha3 0.10.8", - "siphasher 1.0.1", + "sha3 0.10.9", + "siphasher 1.0.3", "slab", "smallvec", - "soketto 0.8.1", - "twox-hash 1.6.3", - "wasmi 0.32.3", + "soketto", + "twox-hash 2.1.2", + "wasmi 0.40.0", "x25519-dalek", "zeroize", ] [[package]] name = "smoldot-light" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "256b5bad1d6b49045e95fe87492ce73d5af81545d8b4d8318a872d2007024c33" -dependencies = [ - "async-channel 1.9.0", - "async-lock 2.8.0", - "base64 0.21.7", - "blake2-rfc", - "derive_more 0.99.20", - "either", - "event-listener 2.5.3", - "fnv", - "futures-channel", - "futures-lite 1.13.0", - "futures-util", - "hashbrown 0.14.5", - "hex", - "itertools 0.11.0", - "log", - "lru 0.11.1", - "no-std-net", - "parking_lot 0.12.5", - "pin-project", - "rand 0.8.6", - "rand_chacha 0.3.1", - "serde", - "serde_json", - "siphasher 0.3.11", - "slab", - "smol 1.3.0", - "smoldot 0.11.0", - "zeroize", -] - -[[package]] -name = "smoldot-light" -version = "0.16.2" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a33b06891f687909632ce6a4e3fd7677b24df930365af3d0bcb078310129f3f" +checksum = "f1bba9e591716567d704a8252feeb2f1261a286e1e2cbdd4e49e9197c34a14e2" dependencies = [ "async-channel 2.5.0", - "async-lock 3.4.1", + "async-lock", "base64 0.22.1", "blake2-rfc", "bs58", - "derive_more 0.99.20", + "derive_more 2.1.1", "either", "event-listener 5.4.1", "fnv", "futures-channel", - "futures-lite 2.6.1", + "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", - "itertools 0.13.0", + "itertools 0.14.0", "log", "lru 0.12.5", "parking_lot 0.12.5", "pin-project", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "serde", "serde_json", - "siphasher 1.0.1", + "siphasher 1.0.3", "slab", - "smol 2.0.2", - "smoldot 0.18.0", + "smol", + "smoldot", "zeroize", ] @@ -17421,14 +18193,14 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "snap" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" +checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886" [[package]] name = "snow" @@ -17449,14 +18221,13 @@ dependencies = [ [[package]] name = "snowbridge-core" -version = "0.14.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.22.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bp-relayers", "frame-support", "frame-system", "hex-literal", - "log", "parity-scale-codec", "polkadot-parachain-primitives", "scale-info", @@ -17468,16 +18239,7 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", -] - -[[package]] -name = "socket2" -version = "0.4.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" -dependencies = [ - "libc", - "winapi", + "tracing", ] [[package]] @@ -17492,12 +18254,12 @@ dependencies = [ [[package]] name = "socket2" -version = "0.6.0" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -17511,21 +18273,6 @@ dependencies = [ "libsodium-sys", ] -[[package]] -name = "soketto" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" -dependencies = [ - "base64 0.13.1", - "bytes", - "futures", - "httparse", - "log", - "rand 0.8.6", - "sha-1", -] - [[package]] name = "soketto" version = "0.8.1" @@ -17535,17 +18282,17 @@ dependencies = [ "base64 0.22.1", "bytes", "futures", - "http 1.3.1", + "http 1.4.2", "httparse", "log", - "rand 0.8.6", + "rand 0.8.7", "sha1", ] [[package]] name = "sp-api" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "hash-db", @@ -17566,22 +18313,22 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "23.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "Inflector", "blake2 0.10.6", "expander", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "sp-application-crypto" -version = "41.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17592,8 +18339,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "27.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "integer-sqrt", @@ -17606,8 +18353,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17618,9 +18365,10 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "parity-scale-codec", "sp-api", "sp-inherents", "sp-runtime", @@ -17628,8 +18376,8 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "futures", "parity-scale-codec", @@ -17647,22 +18395,25 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "futures", "log", + "sp-api", + "sp-externalities", "sp-inherents", "sp-runtime", "sp-state-machine", + "sp-trie", "thiserror 1.0.69", ] [[package]] name = "sp-consensus-aura" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "parity-scale-codec", @@ -17677,8 +18428,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "parity-scale-codec", @@ -17695,8 +18446,8 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" -version = "25.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17704,7 +18455,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-keystore", "sp-mmr-primitives", @@ -17715,8 +18466,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "24.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "finality-grandpa", "log", @@ -17732,8 +18483,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17743,14 +18494,15 @@ dependencies = [ [[package]] name = "sp-core" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "ark-vrf", + "ark-vrf 0.5.1", "array-bytes 6.2.3", + "bip39", "bitflags 1.3.2", "blake2 0.10.6", - "bounded-collections 0.2.4", + "bounded-collections 0.3.2", "bs58", "dyn-clone", "ed25519-zebra", @@ -17763,22 +18515,20 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "parity-bip39", "parity-scale-codec", "parking_lot 0.12.5", "paste", "primitive-types 0.13.1", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "schnorrkel 0.11.5", "secp256k1 0.28.2", "secrecy 0.8.0", "serde", "sha2 0.10.9", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-debug-derive", "sp-externalities", - "sp-runtime-interface", "sp-std", "sp-storage", "ss58-registry", @@ -17791,21 +18541,29 @@ dependencies = [ [[package]] name = "sp-crypto-ec-utils" -version = "0.16.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.23.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "ark-bls12-377", + "ark-bls12-377 0.5.0", "ark-bls12-377-ext", "ark-bls12-381 0.4.0", + "ark-bls12-381 0.5.0", "ark-bls12-381-ext", "ark-bw6-761", "ark-bw6-761-ext", "ark-ec 0.4.2", + "ark-ec 0.5.0", "ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", - "ark-ed-on-bls12-381-bandersnatch 0.4.0", + "ark-ed-on-bls12-381-bandersnatch", "ark-ed-on-bls12-381-bandersnatch-ext", + "ark-ff 0.5.0", + "ark-pallas", + "ark-pallas-ext", "ark-scale 0.0.12", + "ark-scale 0.0.13", + "ark-vesta", + "ark-vesta-ext", "sp-runtime-interface", ] @@ -17819,56 +18577,66 @@ dependencies = [ "byteorder", "digest 0.10.7", "sha2 0.10.9", - "sha3 0.10.8", + "sha3 0.10.9", "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.9", - "sha3 0.10.8", + "sha3 0.10.9", "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.106", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", + "syn 2.0.119", +] + +[[package]] +name = "sp-dap" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "frame-support", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "kvdb", + "kvdb-rocksdb", "parking_lot 0.12.5", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ + "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "sp-externalities" -version = "0.30.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.34.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "environmental", "parity-scale-codec", @@ -17877,8 +18645,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.18.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.24.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17887,10 +18655,20 @@ dependencies = [ "sp-runtime", ] +[[package]] +name = "sp-hop" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "parity-scale-codec", + "sp-api", + "sp-runtime", +] + [[package]] name = "sp-inherents" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -17902,8 +18680,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "41.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bytes", "docify", @@ -17911,11 +18689,11 @@ dependencies = [ "libsecp256k1", "log", "parity-scale-codec", - "polkavm-derive 0.24.0", + "polkavm-derive 0.33.0", "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -17928,8 +18706,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "sp-core", "sp-runtime", @@ -17938,8 +18716,8 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.43.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "parking_lot 0.12.5", @@ -17950,7 +18728,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -17958,18 +18736,19 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.11.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.15.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "frame-metadata 23.0.0", + "derive-where", + "frame-metadata", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.15.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.21.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -17979,8 +18758,8 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "log", "parity-scale-codec", @@ -17996,8 +18775,8 @@ dependencies = [ [[package]] name = "sp-npos-elections" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -18009,8 +18788,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "sp-api", "sp-core", @@ -18019,8 +18798,8 @@ dependencies = [ [[package]] name = "sp-panic-handler" -version = "13.0.2" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "backtrace", "regex", @@ -18028,8 +18807,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "35.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "41.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -18038,10 +18817,11 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "42.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "binary-merkle-tree", + "bytes", "docify", "either", "hash256-std-hasher", @@ -18050,7 +18830,7 @@ dependencies = [ "num-traits", "parity-scale-codec", "paste", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "serde", "simple-mermaid", @@ -18061,20 +18841,20 @@ dependencies = [ "sp-std", "sp-trie", "sp-weights", + "strum 0.26.3", "tracing", "tuplex", ] [[package]] name = "sp-runtime-interface" -version = "30.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "37.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", - "polkavm-derive 0.24.0", - "primitive-types 0.13.1", + "polkavm-derive 0.33.0", "sp-externalities", "sp-runtime-interface-proc-macro", "sp-std", @@ -18086,21 +18866,21 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "19.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "17.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "sp-session" -version = "39.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "45.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -18113,8 +18893,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "39.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "45.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -18126,14 +18906,14 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.46.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.53.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "hash-db", "log", "parity-scale-codec", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "smallvec", "sp-core", "sp-externalities", @@ -18146,21 +18926,23 @@ dependencies = [ [[package]] name = "sp-statement-store" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "aes-gcm", "curve25519-dalek", "ed25519-dalek", + "frame-support", "hkdf", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "scale-info", + "serde", "sha2 0.10.9", "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -18171,12 +18953,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" [[package]] name = "sp-storage" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "25.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "impl-serde", "parity-scale-codec", @@ -18187,8 +18969,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "parity-scale-codec", @@ -18199,19 +18981,20 @@ dependencies = [ [[package]] name = "sp-tracing" -version = "17.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "16.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", + "regex", "tracing", "tracing-core", - "tracing-subscriber 0.3.20", + "tracing-subscriber 0.3.19", ] [[package]] name = "sp-transaction-pool" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "sp-api", "sp-runtime", @@ -18219,12 +19002,13 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "37.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", + "sp-api", "sp-core", "sp-inherents", "sp-runtime", @@ -18233,8 +19017,8 @@ dependencies = [ [[package]] name = "sp-trie" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "ahash 0.8.12", "foldhash 0.1.5", @@ -18244,7 +19028,7 @@ dependencies = [ "nohash-hasher", "parity-scale-codec", "parking_lot 0.12.5", - "rand 0.8.6", + "rand 0.8.7", "scale-info", "schnellru", "sp-core", @@ -18258,14 +19042,15 @@ dependencies = [ [[package]] name = "sp-version" -version = "40.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "impl-serde", "parity-scale-codec", "parity-wasm", "scale-info", "serde", + "sp-core", "sp-crypto-hashing-proc-macro", "sp-runtime", "sp-std", @@ -18275,20 +19060,34 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" -version = "15.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", +] + +[[package]] +name = "sp-virtualization" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" +dependencies = [ + "log", + "num_enum", + "parity-scale-codec", + "sp-externalities", + "sp-runtime-interface", + "sp-storage", + "strum 0.26.3", ] [[package]] name = "sp-wasm-interface" -version = "22.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "27.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -18299,10 +19098,10 @@ dependencies = [ [[package]] name = "sp-weights" -version = "32.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "36.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ - "bounded-collections 0.2.4", + "bounded-collections 0.3.2", "parity-scale-codec", "scale-info", "serde", @@ -18319,9 +19118,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spin" -version = "0.9.8" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" dependencies = [ "lock_api", ] @@ -18374,7 +19173,7 @@ dependencies = [ "futures-util", "hashbrown 0.15.5", "hashlink 0.10.0", - "indexmap 2.11.4", + "indexmap 2.14.0", "log", "memchr", "native-tls", @@ -18383,7 +19182,7 @@ dependencies = [ "serde", "sha2 0.10.9", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -18400,7 +19199,7 @@ dependencies = [ "quote", "sqlx-core", "sqlx-macros-core", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -18421,7 +19220,7 @@ dependencies = [ "sha2 0.10.9", "sqlx-core", "sqlx-sqlite", - "syn 2.0.106", + "syn 2.0.119", "tokio", "url", ] @@ -18445,7 +19244,7 @@ dependencies = [ "serde", "serde_urlencoded", "sqlx-core", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", "url", ] @@ -18467,14 +19266,14 @@ dependencies = [ [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "staging-chain-spec-builder" -version = "12.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "19.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "clap", "docify", @@ -18486,8 +19285,8 @@ dependencies = [ [[package]] name = "staging-node-inspect" -version = "0.29.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.37.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "clap", "parity-scale-codec", @@ -18504,8 +19303,8 @@ dependencies = [ [[package]] name = "staging-parachain-info" -version = "0.21.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -18517,34 +19316,35 @@ dependencies = [ [[package]] name = "staging-xcm" -version = "17.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", - "bounded-collections 0.2.4", + "bounded-collections 0.3.2", "derive-where", "environmental", "frame-support", "hex-literal", "impl-trait-for-tuples", - "log", "parity-scale-codec", "scale-info", "serde", "sp-runtime", "sp-weights", + "tracing", "xcm-procedural", ] [[package]] name = "staging-xcm-builder" -version = "21.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "environmental", "frame-support", "frame-system", "impl-trait-for-tuples", + "pallet-accumulate-and-forward", "pallet-asset-conversion", "pallet-transaction-payment", "parity-scale-codec", @@ -18562,8 +19362,8 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "20.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "environmental", "frame-benchmarking", @@ -18593,7 +19393,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bae1df58c5fea7502e8e352ec26b5579f6178e1fdb311e088580c980dee25ed" dependencies = [ "bitflags 1.3.2", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", "parking_lot 0.12.5", "parking_lot_core 0.9.12", @@ -18617,7 +19417,7 @@ dependencies = [ [[package]] name = "stc-shield" version = "0.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "anyhow", "async-trait", @@ -18626,7 +19426,7 @@ dependencies = [ "log", "ml-kem", "parity-scale-codec", - "rand 0.8.6", + "rand 0.8.7", "sc-client-api", "sc-service", "sp-consensus", @@ -18638,7 +19438,7 @@ dependencies = [ [[package]] name = "stp-shield" version = "0.1.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "parity-scale-codec", "scale-info", @@ -18702,13 +19502,13 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "substrate-bip39" -version = "0.6.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.4.7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "hmac 0.12.1", "pbkdf2 0.12.2", @@ -18726,14 +19526,14 @@ dependencies = [ "byteorder", "crunchy", "lazy_static", - "rand 0.8.6", + "rand 0.8.7", "rustc-hex", ] [[package]] name = "substrate-build-script-utils" -version = "11.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.3" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" [[package]] name = "substrate-fixed" @@ -18748,8 +19548,8 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" -version = "45.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "53.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -18768,11 +19568,11 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.6" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "http-body-util", - "hyper 1.7.0", + "hyper 1.10.1", "hyper-util", "log", "prometheus", @@ -18782,8 +19582,8 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" -version = "44.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -18809,22 +19609,22 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "27.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "34.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "array-bytes 6.2.3", "build-helper", "cargo_metadata", "console", "filetime", - "frame-metadata 23.0.0", + "frame-metadata", "jobserver", "merkleized-metadata", "parity-scale-codec", "parity-wasm", - "polkavm-linker 0.24.0", + "polkavm-linker 0.33.0", "sc-executor", - "shlex", + "shlex 1.3.0", "sp-core", "sp-io", "sp-maybe-compressed-blob", @@ -18832,7 +19632,7 @@ dependencies = [ "sp-version", "strum 0.26.3", "tempfile", - "toml 0.8.23", + "toml", "walkdir", "wasm-opt", ] @@ -18845,7 +19645,7 @@ dependencies = [ "quote", "rayon", "subtensor-linting", - "syn 2.0.106", + "syn 2.0.119", "walkdir", ] @@ -18913,7 +19713,7 @@ dependencies = [ "proc-macro2", "procedural-fork", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -18923,7 +19723,7 @@ dependencies = [ "ahash 0.8.12", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -18958,6 +19758,7 @@ dependencies = [ "precompile-utils", "scale-info", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778)", "sp-io", "sp-runtime", "sp-std", @@ -19007,7 +19808,7 @@ dependencies = [ "anyhow", "clap", "node-subtensor-runtime", - "semver 1.0.27", + "semver 1.0.28", "toml_edit 0.22.27", ] @@ -19054,7 +19855,7 @@ version = "0.1.0" dependencies = [ "anyhow", "clap", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19077,14 +19878,14 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "subxt" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" +checksum = "15d478a97cff6a704123c9a3871eff832f8ea4a477390a8ea5fd7cfedd41bf6f" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "parity-scale-codec", @@ -19102,7 +19903,7 @@ dependencies = [ "subxt-macro", "subxt-metadata", "subxt-rpcs", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-util", "tracing", @@ -19112,9 +19913,9 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" +checksum = "461338acd557773106546b474fbb48d47617735fd50941ddc516818006daf8a0" dependencies = [ "heck 0.5.0", "parity-scale-codec", @@ -19123,21 +19924,21 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.106", - "thiserror 2.0.17", + "syn 2.0.119", + "thiserror 2.0.18", ] [[package]] name = "subxt-core" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" +checksum = "002d360ac0827c882d5a808261e06c11a5e7ad2d7c295176d5126a9af9aa5f23" dependencies = [ "base58", "blake2 0.10.6", "derive-where", "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "hex", "impl-serde", @@ -19153,22 +19954,22 @@ dependencies = [ "serde_json", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", ] [[package]] name = "subxt-lightclient" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" +checksum = "bab0c7a6504798b1c4a7dbe4cac9559560826e5df3f021efa3e9dd6393050521" dependencies = [ "futures", "futures-util", "serde", "serde_json", - "smoldot-light 0.16.2", - "thiserror 2.0.17", + "smoldot-light", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -19176,9 +19977,9 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" +checksum = "fc844e7877b6fe4a4013c5836a916dee4e58fc875b98ccc18b5996db34b575c3" dependencies = [ "darling 0.20.11", "parity-scale-codec", @@ -19186,33 +19987,34 @@ dependencies = [ "quote", "scale-typegen", "subxt-codegen", + "subxt-metadata", "subxt-utils-fetchmetadata", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "subxt-metadata" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" +checksum = "1b2f2a52d97d7539febc0006d6988081150b1c1a3e4a357ca02ab5cdb34072bc" dependencies = [ "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "parity-scale-codec", "scale-info", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "subxt-rpcs" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +checksum = "dec54130c797530e6aa6a52e8ba9f95fd296d19da2f9f3e23ed5353a83573f74" dependencies = [ "derive-where", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "impl-serde", @@ -19223,16 +20025,16 @@ dependencies = [ "serde_json", "subxt-core", "subxt-lightclient", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", "url", ] [[package]] name = "subxt-signer" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" +checksum = "1bdcc9159fdcc81aca0f71f0c8c77829a671f7348958fc77fb2fb320ed59a13a" dependencies = [ "base64 0.22.1", "bip32", @@ -19254,19 +20056,19 @@ dependencies = [ "sha2 0.10.9", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", - "thiserror 2.0.17", + "thiserror 2.0.18", "zeroize", ] [[package]] name = "subxt-utils-fetchmetadata" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" +checksum = "4664a0b726f11b1d6da990872f9528be090d3570c2275c9b89ba5bbc8e764592" dependencies = [ "hex", "parity-scale-codec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -19282,9 +20084,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.106" +version = "2.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" dependencies = [ "proc-macro2", "quote", @@ -19293,14 +20095,14 @@ dependencies = [ [[package]] name = "syn-solidity" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec005042c7d952febc1a3ef5b0f6674e9054aa836877a31c90b20e25b3d31744" +checksum = "083be3061e64d362cbe6ef12cfe1307ba3884326d8856448fe8a120fa2c44ebf" dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19312,18 +20114,6 @@ dependencies = [ "futures-core", ] -[[package]] -name = "synstructure" -version = "0.12.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", -] - [[package]] name = "synstructure" version = "0.13.2" @@ -19332,7 +20122,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19352,11 +20142,11 @@ dependencies = [ [[package]] name = "system-configuration" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "core-foundation 0.9.4", "system-configuration-sys", ] @@ -19389,36 +20179,42 @@ version = "0.12.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +[[package]] +name = "target-lexicon" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca" + [[package]] name = "tempfile" -version = "3.23.0" +version = "3.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ - "fastrand 2.3.0", - "getrandom 0.3.3", + "fastrand", + "getrandom 0.4.3", "once_cell", - "rustix 1.1.2", - "windows-sys 0.59.0", + "rustix 1.1.4", + "windows-sys 0.61.2", ] [[package]] name = "termcolor" -version = "1.2.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" +checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" dependencies = [ "winapi-util", ] [[package]] name = "terminal_size" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" +checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ - "rustix 1.1.2", - "windows-sys 0.60.2", + "rustix 1.1.4", + "windows-sys 0.61.2", ] [[package]] @@ -19438,31 +20234,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" -dependencies = [ - "thiserror-impl 2.0.17", -] - -[[package]] -name = "thiserror-core" -version = "1.0.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c001ee18b7e5e3f62cbf58c7fe220119e68d902bb7443179c0c8aef30090e999" -dependencies = [ - "thiserror-core-impl", -] - -[[package]] -name = "thiserror-core-impl" -version = "1.0.50" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4c60d69f36615a077cc7663b9cb8e42275722d23e58a7fa3d2c7f2915d09d04" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.106", + "thiserror-impl 2.0.18", ] [[package]] @@ -19473,18 +20249,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "thiserror-impl" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19495,9 +20271,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" +checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070" dependencies = [ "cfg-if", ] @@ -19513,9 +20289,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-ctl" -version = "0.5.4" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c" +checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ "libc", "paste", @@ -19524,9 +20300,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.4+5.3.0-patched" +version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" +checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ "cc", "libc", @@ -19534,9 +20310,9 @@ dependencies = [ [[package]] name = "tikv-jemallocator" -version = "0.5.4" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca" +checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a" dependencies = [ "libc", "tikv-jemalloc-sys", @@ -19583,9 +20359,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" dependencies = [ "displaydoc", "zerovec", @@ -19593,9 +20369,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.10.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa" +checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" dependencies = [ "tinyvec_macros", ] @@ -19612,7 +20388,7 @@ version = "0.1.0" source = "git+https://github.com/ideal-lab5/timelock?rev=5416406cfd32799e31e1795393d4916894de4468#5416406cfd32799e31e1795393d4916894de4468" dependencies = [ "aes-gcm", - "ark-bls12-377", + "ark-bls12-377 0.4.0", "ark-bls12-381 0.4.0", "ark-ec 0.4.2", "ark-ff 0.4.2", @@ -19630,39 +20406,36 @@ dependencies = [ "serde_cbor", "serde_json", "sha2 0.10.9", - "sha3 0.10.8", + "sha3 0.10.9", "w3f-bls 0.1.3", ] [[package]] name = "tokio" -version = "1.47.1" +version = "1.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" +checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee" dependencies = [ - "backtrace", "bytes", - "io-uring", "libc", "mio", "parking_lot 0.12.5", "pin-project-lite", "signal-hook-registry", - "slab", - "socket2 0.6.0", + "socket2 0.6.5", "tokio-macros", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19677,9 +20450,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ "futures-core", "pin-project-lite", @@ -19689,9 +20462,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" +checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" dependencies = [ "futures-util", "log", @@ -19705,9 +20478,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.16" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", @@ -19717,15 +20490,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" -dependencies = [ - "serde", -] - [[package]] name = "toml" version = "0.8.23" @@ -19749,9 +20513,9 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.7.2" +version = "1.1.1+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f1085dec27c2b6632b04c80b3bb1b4300d6495d1e129693bdda7d91e72eec1" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" dependencies = [ "serde_core", ] @@ -19762,33 +20526,33 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.11.4", + "indexmap 2.14.0", "serde", "serde_spanned", "toml_datetime 0.6.11", "toml_write", - "winnow 0.7.13", + "winnow 0.7.15", ] [[package]] name = "toml_edit" -version = "0.23.6" +version = "0.25.13+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3effe7c0e86fdff4f69cdd2ccc1b96f933e24811c5441d44904e8683e27184b" +checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" dependencies = [ - "indexmap 2.11.4", - "toml_datetime 0.7.2", + "indexmap 2.14.0", + "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", - "winnow 0.7.13", + "winnow 1.0.4", ] [[package]] name = "toml_parser" -version = "1.0.3" +version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cf893c33be71572e0e9aa6dd15e6677937abd686b066eac3f8cd3531688a627" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow 0.7.13", + "winnow 1.0.4", ] [[package]] @@ -19833,10 +20597,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "bytes", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", "pin-project-lite", "tower-layer", @@ -19849,11 +20613,11 @@ version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "bytes", "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "pin-project-lite", "tower 0.5.3", "tower-layer", @@ -19875,9 +20639,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", @@ -19887,20 +20651,20 @@ 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", - "syn 2.0.106", + "syn 2.0.119", ] [[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", @@ -19918,8 +20682,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "20.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "coarsetime", "polkadot-primitives", @@ -19930,13 +20694,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "expander", - "proc-macro-crate 3.4.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -19945,7 +20709,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ + "ahash 0.7.8", "log", + "lru 0.7.8", "once_cell", "tracing-core", ] @@ -19961,15 +20727,15 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.20" +version = "0.3.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ "matchers", "nu-ansi-term", "once_cell", "parking_lot 0.12.5", - "regex-automata", + "regex", "sharded-slab", "smallvec", "thread_local", @@ -19981,9 +20747,9 @@ dependencies = [ [[package]] name = "trie-db" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c0670ab45a6b7002c7df369fee950a27cf29ae0474343fd3a15aa15f691e7a6" +checksum = "a7795f2df2ef744e4ffb2125f09325e60a21d305cc3ecece0adeef03f7a9e560" dependencies = [ "hash-db", "log", @@ -20014,20 +20780,20 @@ checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" [[package]] name = "tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" +checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" dependencies = [ "bytes", "data-encoding", - "http 1.3.1", + "http 1.4.2", "httparse", "log", - "rand 0.9.4", + "rand 0.9.5", "rustls", "rustls-pki-types", "sha1", - "thiserror 2.0.17", + "thiserror 2.0.18", "url", "utf-8", ] @@ -20046,7 +20812,7 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand 0.8.6", + "rand 0.8.7", "static_assertions", ] @@ -20058,9 +20824,9 @@ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c" [[package]] name = "typenum" -version = "1.19.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" [[package]] name = "ucd-trie" @@ -20100,30 +20866,24 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-ident" -version = "1.0.19" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" - -[[package]] -name = "unicode-width" -version = "0.1.14" +version = "1.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" [[package]] name = "unicode-width" @@ -20149,7 +20909,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common 0.1.6", + "crypto-common 0.1.7", "subtle 2.6.1", ] @@ -20189,9 +20949,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.7" +version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ "form_urlencoded", "idna", @@ -20219,11 +20979,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.18.1" +version = "1.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2" +checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.4.3", "js-sys", "wasm-bindgen", ] @@ -20248,13 +21008,13 @@ checksum = "225eaa083192400abfe78838e3089c539a361e0dd9b6884f61b5c6237676ec01" dependencies = [ "ark-scale 0.0.13", "ark-serialize 0.5.0", - "ark-vrf", + "ark-vrf 0.1.1", "bounded-collections 0.1.9", "derive-where", "parity-scale-codec", "scale-info", "schnorrkel 0.10.2", - "spin 0.9.8", + "spin 0.9.9", ] [[package]] @@ -20273,7 +21033,7 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" name = "w3f-bls" version = "0.1.3" dependencies = [ - "ark-bls12-377", + "ark-bls12-377 0.4.0", "ark-bls12-381 0.4.0", "ark-ec 0.4.2", "ark-ff 0.4.2", @@ -20281,11 +21041,11 @@ dependencies = [ "ark-serialize-derive 0.4.2", "arrayref", "digest 0.10.7", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_core 0.6.4", "sha2 0.10.9", - "sha3 0.10.8", + "sha3 0.10.9", "zeroize", ] @@ -20295,7 +21055,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6bfb937b3d12077654a9e43e32a4e9c20177dd9fea0f3aba673e7840bb54f32" dependencies = [ - "ark-bls12-377", + "ark-bls12-377 0.4.0", "ark-bls12-381 0.4.0", "ark-ec 0.4.2", "ark-ff 0.4.2", @@ -20303,11 +21063,11 @@ dependencies = [ "ark-serialize-derive 0.4.2", "arrayref", "digest 0.10.7", - "rand 0.8.6", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_core 0.6.4", "sha2 0.10.9", - "sha3 0.10.8", + "sha3 0.10.9", "zeroize", ] @@ -20325,6 +21085,20 @@ dependencies = [ "merlin", ] +[[package]] +name = "w3f-pcs" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ea1046a1deb6d26c34ba2d1f1bab4222d695d126502ee765f80b021753cb674" +dependencies = [ + "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", + "merlin", +] + [[package]] name = "w3f-plonk-common" version = "0.0.2" @@ -20338,7 +21112,23 @@ dependencies = [ "ark-std 0.5.0", "getrandom_or_panic", "rand_core 0.6.4", - "w3f-pcs", + "w3f-pcs 0.0.2", +] + +[[package]] +name = "w3f-plonk-common" +version = "0.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30408cda37b81bd7257319942584c794c5784d00d749757bc664656749a1472a" +dependencies = [ + "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", + "getrandom_or_panic", + "rand_core 0.6.4", + "w3f-pcs 0.0.5", ] [[package]] @@ -20353,8 +21143,24 @@ dependencies = [ "ark-serialize 0.5.0", "ark-std 0.5.0", "ark-transcript", - "w3f-pcs", - "w3f-plonk-common", + "w3f-pcs 0.0.2", + "w3f-plonk-common 0.0.2", +] + +[[package]] +name = "w3f-ring-proof" +version = "0.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cbfc4cb881a934e6f33c25927bf955d0cb18e52b94528bbc5fa28dddedb4cd1" +dependencies = [ + "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", + "ark-transcript", + "w3f-pcs 0.0.5", + "w3f-plonk-common 0.0.7", ] [[package]] @@ -20366,12 +21172,6 @@ dependencies = [ "libc", ] -[[package]] -name = "waker-fn" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "317211a0dc0ceedd78fb2ca9a44aed3d7b9b26f81870d485c07122b4350673b7" - [[package]] name = "walkdir" version = "2.5.0" @@ -20397,87 +21197,53 @@ version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" -[[package]] -name = "wasi" -version = "0.14.7+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" -dependencies = [ - "wasip2", -] - [[package]] name = "wasip2" -version = "1.0.1+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" -dependencies = [ - "wit-bindgen 0.46.0", -] - -[[package]] -name = "wasip3" -version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +version = "1.0.4+wasi-0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" dependencies = [ - "wit-bindgen 0.51.0", + "wit-bindgen", ] [[package]] name = "wasix" -version = "0.12.21" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" +checksum = "ae86f02046da16a333a9129d31451423e1657737ecdafed4193838a5f54c5cfe" dependencies = [ - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", ] [[package]] name = "wasm-bindgen" -version = "0.2.104" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d" +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" dependencies = [ "cfg-if", "once_cell", "rustversion", + "serde", "wasm-bindgen-macro", "wasm-bindgen-shared", ] -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.104" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn 2.0.106", - "wasm-bindgen-shared", -] - [[package]] name = "wasm-bindgen-futures" -version = "0.4.54" +version = "0.4.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c" +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" dependencies = [ - "cfg-if", "js-sys", - "once_cell", "wasm-bindgen", - "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.104" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119" +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -20485,34 +21251,34 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.104" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7" +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" dependencies = [ + "bumpalo", "proc-macro2", "quote", - "syn 2.0.106", - "wasm-bindgen-backend", + "syn 2.0.119", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.104" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1" +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" dependencies = [ "unicode-ident", ] [[package]] name = "wasm-encoder" -version = "0.244.0" +version = "0.236.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +checksum = "724fccfd4f3c24b7e589d333fc0429c68042897a7e8a5f8694f31792471841e7" dependencies = [ "leb128fmt", - "wasmparser 0.244.0", + "wasmparser 0.236.1", ] [[package]] @@ -20524,18 +21290,6 @@ dependencies = [ "parity-wasm", ] -[[package]] -name = "wasm-metadata" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" -dependencies = [ - "anyhow", - "indexmap 2.11.4", - "wasm-encoder", - "wasmparser 0.244.0", -] - [[package]] name = "wasm-opt" version = "0.116.1" @@ -20591,41 +21345,38 @@ dependencies = [ "web-sys", ] -[[package]] -name = "wasmi" -version = "0.31.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8281d1d660cdf54c76a3efa9ddd0c270cada1383a995db3ccb43d166456c7" -dependencies = [ - "smallvec", - "spin 0.9.8", - "wasmi_arena", - "wasmi_core 0.13.0", - "wasmparser-nostd", -] - [[package]] name = "wasmi" version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "50386c99b9c32bd2ed71a55b6dd4040af2580530fae8bdb9a6576571a80d0cca" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "multi-stash", "num-derive", "num-traits", "smallvec", - "spin 0.9.8", - "wasmi_collections", + "spin 0.9.9", + "wasmi_collections 0.32.3", "wasmi_core 0.32.3", "wasmparser-nostd", ] [[package]] -name = "wasmi_arena" -version = "0.4.1" +name = "wasmi" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073" +checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063" +dependencies = [ + "arrayvec 0.7.8", + "multi-stash", + "smallvec", + "spin 0.9.9", + "wasmi_collections 0.40.0", + "wasmi_core 0.40.0", + "wasmi_ir", + "wasmparser 0.221.3", +] [[package]] name = "wasmi_collections" @@ -20638,11 +21389,17 @@ dependencies = [ "string-interner", ] +[[package]] +name = "wasmi_collections" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e80d6b275b1c922021939d561574bf376613493ae2b61c6963b15db0e8813562" + [[package]] name = "wasmi_core" -version = "0.13.0" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf1a7db34bff95b85c261002720c00c3a6168256dcb93041d3fa2054d19856a" +checksum = "a23b3a7f6c8c3ceeec6b83531ee61f0013c56e51cbf2b14b0f213548b23a4b41" dependencies = [ "downcast-rs", "libm", @@ -20652,36 +21409,43 @@ dependencies = [ [[package]] name = "wasmi_core" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23b3a7f6c8c3ceeec6b83531ee61f0013c56e51cbf2b14b0f213548b23a4b41" +checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33" dependencies = [ "downcast-rs", "libm", - "num-traits", - "paste", +] + +[[package]] +name = "wasmi_ir" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e431a14c186db59212a88516788bd68ed51f87aa1e08d1df742522867b5289a" +dependencies = [ + "wasmi_core 0.40.0", ] [[package]] name = "wasmparser" -version = "0.102.0" +version = "0.221.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185" dependencies = [ - "indexmap 1.9.3", - "url", + "bitflags 2.13.1", ] [[package]] name = "wasmparser" -version = "0.244.0" +version = "0.236.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +checksum = "a9b1e81f3eb254cf7404a82cee6926a4a3ccc5aad80cc3d43608a070c67aa1d7" dependencies = [ - "bitflags 2.9.4", + "bitflags 2.13.1", "hashbrown 0.15.5", - "indexmap 2.11.4", - "semver 1.0.27", + "indexmap 2.14.0", + "semver 1.0.28", + "serde", ] [[package]] @@ -20694,205 +21458,246 @@ dependencies = [ ] [[package]] -name = "wasmtime" -version = "8.0.1" +name = "wasmprinter" +version = "0.236.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2df225df06a6df15b46e3f73ca066ff92c2e023670969f7d50ce7d5e695abbb1" +dependencies = [ + "anyhow", + "termcolor", + "wasmparser 0.236.1", +] + +[[package]] +name = "wasmtime" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b4442dc12aa2473def8334f0e0f2b489be52c52507c938bbdc8be69ded4ded6" +dependencies = [ + "addr2line", + "anyhow", + "bitflags 2.13.1", + "bumpalo", + "cc", + "cfg-if", + "fxprof-processed-profile", + "gimli 0.32.3", + "hashbrown 0.15.5", + "indexmap 2.14.0", + "ittapi", + "libc", + "log", + "mach2", + "memfd", + "object 0.37.3", + "once_cell", + "postcard", + "pulley-interpreter", + "rayon", + "rustix 1.1.4", + "serde", + "serde_derive", + "serde_json", + "smallvec", + "target-lexicon 0.13.5", + "wasmparser 0.236.1", + "wasmtime-environ", + "wasmtime-internal-asm-macros", + "wasmtime-internal-cache", + "wasmtime-internal-cranelift", + "wasmtime-internal-fiber", + "wasmtime-internal-jit-debug", + "wasmtime-internal-jit-icache-coherence", + "wasmtime-internal-math", + "wasmtime-internal-slab", + "wasmtime-internal-unwinder", + "wasmtime-internal-versioned-export-macros", + "wasmtime-internal-winch", + "windows-sys 0.60.2", +] + +[[package]] +name = "wasmtime-environ" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" +checksum = "5d881c3d6205898a226cc487b117f23b9ed1c7da39952d65bd5eeb6745b3789c" dependencies = [ "anyhow", - "bincode", - "cfg-if", - "indexmap 1.9.3", - "libc", + "cpp_demangle", + "cranelift-bitset", + "cranelift-entity", + "gimli 0.32.3", + "indexmap 2.14.0", "log", - "object 0.30.4", - "once_cell", - "paste", - "psm", - "rayon", + "object 0.37.3", + "postcard", + "rustc-demangle", "serde", - "target-lexicon", - "wasmparser 0.102.0", - "wasmtime-cache", - "wasmtime-cranelift", - "wasmtime-environ", - "wasmtime-jit", - "wasmtime-runtime", - "windows-sys 0.45.0", + "serde_derive", + "smallvec", + "target-lexicon 0.13.5", + "wasm-encoder", + "wasmparser 0.236.1", + "wasmprinter", ] [[package]] -name = "wasmtime-asm-macros" -version = "8.0.1" +name = "wasmtime-internal-asm-macros" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" +checksum = "5ab1876bcfa51d6a05dea1c13933f53cbc1e316c783fddebc859f56a736eae07" dependencies = [ "cfg-if", ] [[package]] -name = "wasmtime-cache" -version = "8.0.1" +name = "wasmtime-internal-cache" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" +checksum = "2195a1521a5214a71b67ca2ba2d9317ae15917288ea9d8e5836142b921c9d155" dependencies = [ "anyhow", - "base64 0.21.7", - "bincode", + "base64 0.22.1", "directories-next", - "file-per-thread-logger", "log", - "rustix 0.36.17", + "postcard", + "rustix 1.1.4", "serde", + "serde_derive", "sha2 0.10.9", - "toml 0.5.11", - "windows-sys 0.45.0", - "zstd 0.11.2+zstd.1.5.2", + "toml", + "windows-sys 0.60.2", + "zstd 0.13.3", ] [[package]] -name = "wasmtime-cranelift" -version = "8.0.1" +name = "wasmtime-internal-cranelift" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" +checksum = "ab3495aa8300e4ca6b53f81a53ce5eff6621fd5ff8378ef9ae552d1479d57371" dependencies = [ "anyhow", + "cfg-if", "cranelift-codegen", + "cranelift-control", "cranelift-entity", "cranelift-frontend", "cranelift-native", - "cranelift-wasm", - "gimli 0.27.3", + "gimli 0.32.3", + "itertools 0.14.0", "log", - "object 0.30.4", - "target-lexicon", - "thiserror 1.0.69", - "wasmparser 0.102.0", - "wasmtime-cranelift-shared", + "object 0.37.3", + "pulley-interpreter", + "smallvec", + "target-lexicon 0.13.5", + "thiserror 2.0.18", + "wasmparser 0.236.1", "wasmtime-environ", + "wasmtime-internal-math", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-cranelift-shared" -version = "8.0.1" +name = "wasmtime-internal-fiber" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b" +checksum = "29b5e4023a6b167da157338f5f0f505945eb45e78f1cac2d4dcce0922457d7d4" dependencies = [ "anyhow", - "cranelift-codegen", - "cranelift-native", - "gimli 0.27.3", - "object 0.30.4", - "target-lexicon", - "wasmtime-environ", + "cc", + "cfg-if", + "libc", + "rustix 1.1.4", + "wasmtime-internal-asm-macros", + "wasmtime-internal-versioned-export-macros", + "windows-sys 0.60.2", ] [[package]] -name = "wasmtime-environ" -version = "8.0.1" +name = "wasmtime-internal-jit-debug" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" +checksum = "9da71e2d573e3cc6f753a3b7bff98f425ca060c0e8071cc55c3d867a9edf3ecc" dependencies = [ - "anyhow", - "cranelift-entity", - "gimli 0.27.3", - "indexmap 1.9.3", - "log", - "object 0.30.4", - "serde", - "target-lexicon", - "thiserror 1.0.69", - "wasmparser 0.102.0", - "wasmtime-types", + "cc", + "object 0.37.3", + "rustix 1.1.4", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-jit" -version = "8.0.1" +name = "wasmtime-internal-jit-icache-coherence" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244" +checksum = "627d8f57909a4f9bb1dbe57a96229a54b89d5995353d0b321f3cb9a1a118977a" dependencies = [ - "addr2line 0.19.0", "anyhow", - "bincode", "cfg-if", - "cpp_demangle", - "gimli 0.27.3", - "log", - "object 0.30.4", - "rustc-demangle", - "serde", - "target-lexicon", - "wasmtime-environ", - "wasmtime-jit-debug", - "wasmtime-jit-icache-coherence", - "wasmtime-runtime", - "windows-sys 0.45.0", + "libc", + "windows-sys 0.60.2", ] [[package]] -name = "wasmtime-jit-debug" -version = "8.0.1" +name = "wasmtime-internal-math" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846" +checksum = "45b99315585a8a27125dd9b0150edb115d6f6ff0baae453c21d30822aab77f00" dependencies = [ - "object 0.30.4", - "once_cell", - "rustix 0.36.17", + "libm", ] [[package]] -name = "wasmtime-jit-icache-coherence" -version = "8.0.1" +name = "wasmtime-internal-slab" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" -dependencies = [ - "cfg-if", - "libc", - "windows-sys 0.45.0", -] +checksum = "8eaee97281dd3fe47ec3d46c16fb9fe2dd32f37d0523c2d5c484f11b348734e4" [[package]] -name = "wasmtime-runtime" -version = "8.0.1" +name = "wasmtime-internal-unwinder" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" +checksum = "d0c005f82c48492b6b44fa19ee5205bd933c4f8baca41e314eca8331dd3c4fd9" dependencies = [ "anyhow", - "cc", "cfg-if", - "indexmap 1.9.3", - "libc", + "cranelift-codegen", "log", - "mach", - "memfd", - "memoffset 0.8.0", - "paste", - "rand 0.8.6", - "rustix 0.36.17", - "wasmtime-asm-macros", - "wasmtime-environ", - "wasmtime-jit-debug", - "windows-sys 0.45.0", + "object 0.37.3", ] [[package]] -name = "wasmtime-types" -version = "8.0.1" +name = "wasmtime-internal-versioned-export-macros" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" +checksum = "7b73639a9c0c0e33a2ef942ca99b6772b48393be92bebbd0767c607e5b0a68e0" dependencies = [ - "cranelift-entity", - "serde", - "thiserror 1.0.69", - "wasmparser 0.102.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "wasmtime-internal-winch" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "392ca021d084c7426616ef77e1284315555f11bcbb34f416d74b0732db622811" +dependencies = [ + "anyhow", + "cranelift-codegen", + "gimli 0.32.3", + "object 0.37.3", + "target-lexicon 0.13.5", + "wasmparser 0.236.1", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "winch-codegen", ] [[package]] name = "web-sys" -version = "0.3.81" +version = "0.3.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120" +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" dependencies = [ "js-sys", "wasm-bindgen", @@ -20914,14 +21719,14 @@ version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "webpki-root-certs 1.0.3", + "webpki-root-certs 1.0.8", ] [[package]] name = "webpki-root-certs" -version = "1.0.3" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05d651ec480de84b762e7be71e6efa7461699c19d9e2c272c8d93455f567786e" +checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267" dependencies = [ "rustls-pki-types", ] @@ -20934,8 +21739,8 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "westend-runtime" -version = "24.0.1" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "35.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "binary-merkle-tree", "bitvec", @@ -20950,6 +21755,7 @@ dependencies = [ "frame-try-runtime", "hex-literal", "log", + "pallet-accumulate-and-forward", "pallet-asset-rate", "pallet-authority-discovery", "pallet-authorship", @@ -20958,7 +21764,6 @@ dependencies = [ "pallet-balances", "pallet-beefy", "pallet-beefy-mmr", - "pallet-conviction-voting", "pallet-delegated-staking", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", @@ -20967,20 +21772,17 @@ dependencies = [ "pallet-identity", "pallet-indices", "pallet-message-queue", - "pallet-meta-tx", "pallet-migrations", "pallet-mmr", "pallet-multisig", "pallet-nomination-pools", - "pallet-nomination-pools-benchmarking", "pallet-nomination-pools-runtime-api", "pallet-offences", "pallet-offences-benchmarking", "pallet-parameters", "pallet-preimage", "pallet-proxy", - "pallet-recovery", - "pallet-referenda", + "pallet-root-offences", "pallet-root-testing", "pallet-scheduler", "pallet-session", @@ -20993,11 +21795,8 @@ dependencies = [ "pallet-timestamp", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", "pallet-utility", - "pallet-verify-signature", "pallet-vesting", - "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -21018,6 +21817,7 @@ dependencies = [ "sp-consensus-beefy", "sp-consensus-grandpa", "sp-core", + "sp-dap", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -21041,14 +21841,15 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "polkadot-primitives", "polkadot-runtime-common", "smallvec", "sp-core", + "sp-dap", "sp-runtime", "sp-weights", "staging-xcm", @@ -21067,9 +21868,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" [[package]] name = "winapi" @@ -21093,7 +21894,7 @@ version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] @@ -21102,6 +21903,26 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "winch-codegen" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61ec880b20caaa72245944b54cfb22aca111f8c805e12a7542b40d66921e5323" +dependencies = [ + "anyhow", + "cranelift-assembler-x64", + "cranelift-codegen", + "gimli 0.32.3", + "regalloc2 0.12.2", + "smallvec", + "target-lexicon 0.13.5", + "thiserror 2.0.18", + "wasmparser 0.236.1", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "wasmtime-internal-math", +] + [[package]] name = "windows" version = "0.52.0" @@ -21114,30 +21935,31 @@ dependencies = [ [[package]] name = "windows" -version = "0.53.0" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538" +checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ - "windows-core 0.53.0", - "windows-targets 0.52.6", + "windows-collections", + "windows-core 0.62.2", + "windows-future", + "windows-numerics", ] [[package]] -name = "windows-core" -version = "0.52.0" +name = "windows-collections" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-targets 0.52.6", + "windows-core 0.62.2", ] [[package]] name = "windows-core" -version = "0.53.0" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" dependencies = [ - "windows-result 0.1.2", "windows-targets 0.52.6", ] @@ -21150,10 +21972,21 @@ dependencies = [ "windows-implement", "windows-interface", "windows-link", - "windows-result 0.4.1", + "windows-result", "windows-strings", ] +[[package]] +name = "windows-future" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" +dependencies = [ + "windows-core 0.62.2", + "windows-link", + "windows-threading", +] + [[package]] name = "windows-implement" version = "0.60.2" @@ -21162,7 +21995,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -21173,7 +22006,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] @@ -21183,12 +22016,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] -name = "windows-result" -version = "0.1.2" +name = "windows-numerics" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" +checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-targets 0.52.6", + "windows-core 0.62.2", + "windows-link", +] + +[[package]] +name = "windows-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" +dependencies = [ + "windows-link", + "windows-result", + "windows-strings", ] [[package]] @@ -21326,6 +22171,15 @@ dependencies = [ "windows_x86_64_msvc 0.53.1", ] +[[package]] +name = "windows-threading" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" +dependencies = [ + "windows-link", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.2" @@ -21508,131 +22362,33 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" -version = "0.7.13" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" dependencies = [ "memchr", ] [[package]] name = "winnow" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1" +checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" dependencies = [ "memchr", ] -[[package]] -name = "winreg" -version = "0.50.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - -[[package]] -name = "wit-bindgen" -version = "0.46.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" - [[package]] name = "wit-bindgen" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" -dependencies = [ - "wit-bindgen-rust-macro", -] - -[[package]] -name = "wit-bindgen-core" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" -dependencies = [ - "anyhow", - "heck 0.5.0", - "wit-parser", -] - -[[package]] -name = "wit-bindgen-rust" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" -dependencies = [ - "anyhow", - "heck 0.5.0", - "indexmap 2.11.4", - "prettyplease", - "syn 2.0.106", - "wasm-metadata", - "wit-bindgen-core", - "wit-component", -] - -[[package]] -name = "wit-bindgen-rust-macro" -version = "0.51.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" -dependencies = [ - "anyhow", - "prettyplease", - "proc-macro2", - "quote", - "syn 2.0.106", - "wit-bindgen-core", - "wit-bindgen-rust", -] - -[[package]] -name = "wit-component" -version = "0.244.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" -dependencies = [ - "anyhow", - "bitflags 2.9.4", - "indexmap 2.11.4", - "log", - "serde", - "serde_derive", - "serde_json", - "wasm-encoder", - "wasm-metadata", - "wasmparser 0.244.0", - "wit-parser", -] - -[[package]] -name = "wit-parser" -version = "0.244.0" +version = "0.57.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" -dependencies = [ - "anyhow", - "id-arena", - "indexmap 2.11.4", - "log", - "semver 1.0.27", - "serde", - "serde_derive", - "serde_json", - "unicode-xid", - "wasmparser 0.244.0", -] +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" [[package]] name = "writeable" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "wyz" @@ -21665,7 +22421,7 @@ dependencies = [ "data-encoding", "der-parser 9.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.7.1", "rusticata-macros", "thiserror 1.0.69", @@ -21678,32 +22434,32 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", "data-encoding", "der-parser 10.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.8.1", "rusticata-macros", - "thiserror 2.0.17", + "thiserror 2.0.18", "time", ] [[package]] name = "xcm-procedural" -version = "11.0.2" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "7.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "xcm-runtime-apis" -version = "0.8.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.16.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "parity-scale-codec", @@ -21716,8 +22472,8 @@ dependencies = [ [[package]] name = "xcm-simulator" -version = "21.0.0" -source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=b788099fa0c2a5f9df0d228c77b4a92a8469b778#b788099fa0c2a5f9df0d228c77b4a92a8469b778" dependencies = [ "frame-support", "frame-system", @@ -21737,9 +22493,9 @@ dependencies = [ [[package]] name = "xml-rs" -version = "0.8.27" +version = "0.8.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" [[package]] name = "xmltree" @@ -21761,7 +22517,7 @@ dependencies = [ "nohash-hasher", "parking_lot 0.12.5", "pin-project", - "rand 0.8.6", + "rand 0.8.7", "static_assertions", ] @@ -21776,7 +22532,7 @@ dependencies = [ "nohash-hasher", "parking_lot 0.12.5", "pin-project", - "rand 0.9.4", + "rand 0.9.5", "static_assertions", "web-time", ] @@ -21798,11 +22554,10 @@ dependencies = [ [[package]] name = "yoke" -version = "0.8.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" dependencies = [ - "serde", "stable_deref_trait", "yoke-derive", "zerofrom", @@ -21810,82 +22565,82 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] name = "zerocopy" -version = "0.8.27" +version = "0.8.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" +checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.27" +version = "0.8.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" +checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "zerofrom" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] name = "zeroize" -version = "1.8.2" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" dependencies = [ "zeroize_derive", ] [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] name = "zerotrie" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" dependencies = [ "displaydoc", "yoke", @@ -21894,9 +22649,9 @@ dependencies = [ [[package]] name = "zerovec" -version = "0.11.4" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" dependencies = [ "yoke", "zerofrom", @@ -21905,23 +22660,20 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.11.1" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" dependencies = [ "proc-macro2", "quote", - "syn 2.0.106", + "syn 2.0.119", ] [[package]] -name = "zstd" -version = "0.11.2+zstd.1.5.2" +name = "zmij" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" -dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", -] +checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" [[package]] name = "zstd" @@ -21933,13 +22685,12 @@ dependencies = [ ] [[package]] -name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +name = "zstd" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "libc", - "zstd-sys", + "zstd-safe 7.2.4", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 2de9093cbb..0427a72a2b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,8 +79,8 @@ subtensor-runtime-common = { default-features = false, path = "common" } subtensor-swap-interface = { default-features = false, path = "primitives/swap-interface" } subtensor-transaction-fee = { default-features = false, path = "pallets/transaction-fee" } subtensor-chain-extensions = { default-features = false, path = "chain-extensions" } -stp-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -stc-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +stp-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +stc-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } ed25519-dalek = { version = "2.1.0", default-features = false } async-trait = "0.1" @@ -108,7 +108,7 @@ serde_with = { version = "3.14.0", default-features = false } smallvec = "1.13.2" tracing = "0.1" tracing-log = "0.2" -tracing-subscriber = { version = "=0.3.20" } +tracing-subscriber = { version = "=0.3.19" } litep2p = { git = "https://github.com/paritytech/litep2p", tag = "v0.7.0", default-features = false } syn = { version = "2.0.106", default-features = false } quote = { version = "1", default-features = false } @@ -136,126 +136,127 @@ num_enum = { version = "0.7.4", default-features = false } environmental = { version = "1.1.4", default-features = false } tokio = { version = "1.38", default-features = false } -frame = { package = "polkadot-sdk-frame", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-executive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-try-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-benchmarking-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-metadata-hash-extension = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +frame = { package = "polkadot-sdk-frame", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-executive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-try-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-benchmarking-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-metadata-hash-extension = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } frame-metadata = { version = "23.0.0", default-features = false } pallet-subtensor-proxy = { path = "pallets/proxy", default-features = false } pallet-subtensor-utility = { path = "pallets/utility", default-features = false } -pallet-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-balances = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-insecure-randomness-collective-flip = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-multisig = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-preimage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-safe-mode = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-scheduler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-sudo = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-transaction-payment = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-root-testing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-contracts = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +pallet-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-balances = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-insecure-randomness-collective-flip = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-multisig = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-preimage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-safe-mode = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-scheduler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-sudo = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-transaction-payment = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-root-testing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-contracts = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # NPoS -frame-election-provider-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-authorship = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-bags-list = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-election-provider-multi-phase = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-fast-unstake = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-nomination-pools = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-nomination-pools-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-staking-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-staking-reward-fn = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-staking-reward-curve = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-offences = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +frame-election-provider-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-authorship = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-bags-list = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-election-provider-multi-phase = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-fast-unstake = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-nomination-pools = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-nomination-pools-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-staking-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-staking-reward-fn = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-staking-reward-curve = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-offences = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } -sc-basic-authorship = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-client-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-babe-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-grandpa-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-epochs = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-chain-spec-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-chain-spec = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-executor = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-network = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-rpc-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-service = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-telemetry = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-transaction-pool-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus-manual-seal = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-network-sync = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +sc-basic-authorship = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-client-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-babe-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-grandpa-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-epochs = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-chain-spec-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-chain-spec = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-executor = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-network = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-rpc-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-service = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-telemetry = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-transaction-pool-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus-manual-seal = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-network-sync = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } -sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-arithmetic = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-blockchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-npos-elections = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-genesis-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-inherents = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-keyring = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-storage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-version = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-weights = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-crypto-hashing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-application-crypto = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-debug-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-externalities = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-runtime-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-arithmetic = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-blockchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-npos-elections = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-genesis-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-inherents = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-keyring = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-storage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-version = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-weights = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-crypto-hashing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-application-crypto = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-debug-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-externalities = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-runtime-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } -substrate-build-script-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +substrate-build-script-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } substrate-fixed = { git = "https://github.com/encointer/substrate-fixed.git", tag = "v0.6.0", default-features = false } -substrate-frame-rpc-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -substrate-wasm-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -substrate-prometheus-endpoint = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +substrate-frame-rpc-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +substrate-wasm-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +substrate-prometheus-endpoint = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } -polkadot-sdk = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +polkadot-sdk = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } -runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +runtime-common = { package = "polkadot-runtime-common", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Frontier # Vendored via `git subtree` from RaoFoundation/frontier # (branch polkadot-stable2506-2-otf-get-call-indices-metadata, rev d553a1155). +# Its SDK dependencies are redirected to the stable2606 Rao fork below. # Update with: # git subtree pull --prefix vendor/frontier https://github.com/RaoFoundation/frontier --squash fp-evm = { path = "vendor/frontier/primitives/evm", default-features = false } @@ -290,11 +291,11 @@ pallet-hotfix-sufficients = { path = "vendor/frontier/frame/hotfix-sufficients", #DRAND pallet-drand = { path = "pallets/drand", default-features = false } -sp-crypto-ec-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +sp-crypto-ec-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } w3f-bls = { path = "vendor/w3f-bls", default-features = false } ark-crypto-primitives = { version = "0.4.0", default-features = false } -ark-scale = { version = "0.0.11", default-features = false } +ark-scale = { version = "0.0.13", default-features = false } ark-bls12-381 = { version = "0.4.0", default-features = false } ark-serialize = { version = "0.4.0", default-features = false } ark-ff = { version = "0.4.0", default-features = false } @@ -332,114 +333,114 @@ w3f-bls = { path = "vendor/w3f-bls" } zstd-sys = { git = "https://github.com/gztensor/zstd-sys" } zstd-safe = { git = "https://github.com/gztensor/zstd-safe", rev = "42cc34ef6abe5d35d982f6afefb5d7e4e69f5f18" } -# The RaoFoundation/frontier fork still pins polkadot-sdk to the -# github.com/opentensor/polkadot-sdk remote at the same rev this workspace -# consumes from github.com/RaoFoundation/polkadot-sdk. Cargo treats the two -# git URLs as distinct sources, producing duplicate frame-system / frame-support +# The exactly-vendored RaoFoundation/frontier revision still names the +# github.com/opentensor/polkadot-sdk remote and its historical SDK revision. +# Cargo treats that and github.com/RaoFoundation/polkadot-sdk as distinct +# git sources, producing duplicate frame-system / frame-support # / sp-* crates. That duplication makes T::AccountId ambiguous across two # identical-but-distinct frame_system copies in any pallet that depends on both # (e.g. pallet-admin-utils via pallet-evm-chain-id), breaking the benchmark # build. Redirect the frontier-side polkadot-sdk crates to the RaoFoundation -# remote at the same rev so the whole graph resolves to a single copy. +# remote at the stable2606 rev so the whole graph resolves to a single copy. [patch."https://github.com/opentensor/polkadot-sdk"] -binary-merkle-tree = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -cumulus-primitives-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -fork-tree = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-support-procedural = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-support-procedural-tools = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-support-procedural-tools-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -polkadot-core-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -polkadot-parachain-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -polkadot-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-allocator = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-chain-spec = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-chain-spec-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-client-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-client-db = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-epochs = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-executor = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-executor-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-executor-polkavm = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-executor-wasmtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-informant = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-mixnet = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-light = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-sync = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-transactions = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-types = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc-server = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc-spec-v2 = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-service = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-state-db = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-sysinfo = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-telemetry = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-tracing-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-transaction-pool-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-api-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-application-crypto = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-arithmetic = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-blockchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-crypto-hashing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-crypto-hashing-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-database = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-debug-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-externalities = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-genesis-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-inherents = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-maybe-compressed-blob = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-metadata-ir = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-mixnet = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-panic-handler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-runtime-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-runtime-interface-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-state-machine = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-statement-store = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-storage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-transaction-storage-proof = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-trie = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-version = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-version-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-wasm-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sp-weights = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -staging-xcm = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-bip39 = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-prometheus-endpoint = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -xcm-procedural = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } +binary-merkle-tree = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +cumulus-primitives-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +fork-tree = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-support-procedural = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-support-procedural-tools = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-support-procedural-tools-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +polkadot-core-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +polkadot-parachain-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +polkadot-primitives = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-allocator = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-chain-spec = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-chain-spec-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-client-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-client-db = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-epochs = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-executor = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-executor-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-executor-polkavm = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-executor-wasmtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-informant = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-mixnet = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-light = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-sync = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-transactions = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-types = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc-server = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc-spec-v2 = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-service = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-state-db = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-sysinfo = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-telemetry = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-tracing-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-transaction-pool-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-api-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-application-crypto = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-arithmetic = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-authority-discovery = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-blockchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-consensus-slots = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-crypto-hashing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-crypto-hashing-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-database = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-debug-derive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-externalities = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-genesis-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-inherents = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-maybe-compressed-blob = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-metadata-ir = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-mixnet = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-panic-handler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-runtime-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-runtime-interface-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-staking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-state-machine = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-statement-store = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-storage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-transaction-storage-proof = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-trie = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-version = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-version-proc-macro = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-wasm-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sp-weights = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +staging-xcm = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-bip39 = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-prometheus-endpoint = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +xcm-procedural = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } diff --git a/chain-extensions/src/mock.rs b/chain-extensions/src/mock.rs index 67103fd00a..a83813383f 100644 --- a/chain-extensions/src/mock.rs +++ b/chain-extensions/src/mock.rs @@ -29,6 +29,7 @@ use sp_std::{cell::RefCell, cmp::Ordering, sync::OnceLock}; use subtensor_runtime_common::{AlphaBalance, AuthorshipInfo, NetUid, Saturating, TaoBalance}; type Block = frame_system::mocking::MockBlock; +type TxExtension = frame_system::AuthorizeCall; frame_support::construct_runtime!( pub enum Test @@ -621,7 +622,7 @@ impl frame_system::offchain::SigningTypes for Test { type Signature = test_crypto::Signature; } -pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; +pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; impl frame_system::offchain::CreateTransactionBase for Test where @@ -631,6 +632,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/clones/js-tests/tests/test-balancer-edge-emission-issuance.ts b/clones/js-tests/tests/test-balancer-edge-emission-issuance.ts index da3a217f6b..22c010ad4f 100644 --- a/clones/js-tests/tests/test-balancer-edge-emission-issuance.ts +++ b/clones/js-tests/tests/test-balancer-edge-emission-issuance.ts @@ -126,16 +126,22 @@ async function findEmissionSubnet() { if ((await api.query.subtensorModule.networksAdded(netuid)).isFalse) continue; if ((await api.query.subtensorModule.subnetEmissionEnabled(netuid)).isFalse) continue; - const [tao, alpha] = await Promise.all([ + const [tao, alpha, taoInEmission] = await Promise.all([ api.query.subtensorModule.subnetTAO(netuid), api.query.subtensorModule.subnetAlphaIn(netuid), + api.query.subtensorModule.subnetTaoInEmission(netuid), ]); - if (tao.toBigInt() > 0n && alpha.toBigInt() > 0n) { + // SubnetEmissionEnabled alone does not guarantee TAO input: a subnet with + // MinerBurned=1 receives a zero share. The edge scenarios need a subnet + // that is observably receiving TAO before their balancer state is forced. + if (tao.toBigInt() > 0n && alpha.toBigInt() > 0n && taoInEmission.toBigInt() > 0n) { return netuid; } } - throw new Error("no initialized emission-enabled subnet with non-zero TAO and alpha reserves found"); + throw new Error( + "no initialized emission-enabled subnet with non-zero TAO/alpha reserves and TAO input emission found" + ); } async function runEdgeWeightScenario(netuid, quoteWeight, label) { diff --git a/common/src/currency.rs b/common/src/currency.rs index d32a8cbddc..e4f42ad972 100644 --- a/common/src/currency.rs +++ b/common/src/currency.rs @@ -28,7 +28,7 @@ use sp_arithmetic::traits::{ #[cfg(feature = "std")] use sp_rpc::number::NumberOrHex; -#[freeze_struct("fe2aa2d7fcb480e8")] +#[freeze_struct("47c5697352027374")] #[repr(transparent)] #[derive( Deserialize, @@ -45,12 +45,12 @@ use sp_rpc::number::NumberOrHex; Ord, PartialEq, PartialOrd, - RuntimeDebug, + Debug, TypeInfo, )] pub struct AlphaBalance(u64); -#[freeze_struct("a99f2483a97121fc")] +#[freeze_struct("8d42edeeaa467687")] #[repr(transparent)] #[derive( Deserialize, @@ -67,7 +67,7 @@ pub struct AlphaBalance(u64); Ord, PartialEq, PartialOrd, - RuntimeDebug, + Debug, TypeInfo, )] pub struct TaoBalance(u64); diff --git a/common/src/lib.rs b/common/src/lib.rs index aa92e318ee..3597c89721 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -53,7 +53,7 @@ pub type Nonce = u32; pub const SMALL_TRANSFER_LIMIT: Balance = TaoBalance::new(500_000_000); // 0.5 TAO pub const SMALL_ALPHA_TRANSFER_LIMIT: AlphaBalance = AlphaBalance::new(500_000_000); // 0.5 Alpha -#[freeze_struct("4184c565055c66a7")] +#[freeze_struct("c841f1c4c96864e6")] #[repr(transparent)] #[derive( Deserialize, @@ -70,7 +70,7 @@ pub const SMALL_ALPHA_TRANSFER_LIMIT: AlphaBalance = AlphaBalance::new(500_000_0 Ord, PartialEq, PartialOrd, - RuntimeDebug, + Debug, TypeInfo, )] #[serde(transparent)] @@ -192,7 +192,7 @@ pub mod time { pub const DAYS: BlockNumber = HOURS * 24; } -#[freeze_struct("2477c9af9b0c5c26")] +#[freeze_struct("f5aa55f5130e8701")] #[repr(transparent)] #[derive( Deserialize, @@ -209,7 +209,7 @@ pub mod time { Ord, PartialEq, PartialOrd, - RuntimeDebug, + Debug, TypeInfo, )] #[serde(transparent)] @@ -267,7 +267,7 @@ impl From> for MechId { } } -#[freeze_struct("c6bf75ee25c00b9")] +#[freeze_struct("d204418a425fc968")] #[repr(transparent)] #[derive( Deserialize, @@ -284,7 +284,7 @@ impl From> for MechId { Ord, PartialEq, PartialOrd, - RuntimeDebug, + Debug, TypeInfo, )] #[serde(transparent)] diff --git a/common/src/proxy.rs b/common/src/proxy.rs index f40b3f2076..2496489537 100644 --- a/common/src/proxy.rs +++ b/common/src/proxy.rs @@ -20,10 +20,12 @@ use subtensor_macros::freeze_struct; Decode, DecodeWithMemTracking, Debug, + Default, MaxEncodedLen, TypeInfo, )] pub enum ProxyType { + #[default] Any, Owner, NonCritical, @@ -106,12 +108,6 @@ impl ProxyType { } } -impl Default for ProxyType { - fn default() -> Self { - Self::Any - } -} - /// Extra constraint attached to an allowed call. #[derive(Clone, PartialEq, Eq, Encode, Decode, Debug, TypeInfo)] pub enum CallConstraint { diff --git a/docs/tx/announce-coldkey-swap.mdx b/docs/tx/announce-coldkey-swap.mdx index 2eb569c57e..625a66e9c5 100644 --- a/docs/tx/announce-coldkey-swap.mdx +++ b/docs/tx/announce-coldkey-swap.mdx @@ -106,6 +106,6 @@ pub fn announce_coldkey_swap( } ``` -Delegates to [`get_key_swap_cost`](/code/pallets/subtensor/src/utils/misc.rs#L827), [`charge_swap_cost`](/code/pallets/subtensor/src/swap/swap_coldkey.rs#L52). +Delegates to [`get_key_swap_cost`](/code/pallets/subtensor/src/utils/misc.rs#L826), [`charge_swap_cost`](/code/pallets/subtensor/src/swap/swap_coldkey.rs#L52). Every file is browsable under [/code](/code) exactly as built into the runtime, or as plain text under `/code/raw/` (index: [`/code/index.json`](/code/index.json)). diff --git a/docs/tx/associate-evm-key.mdx b/docs/tx/associate-evm-key.mdx index 59968a623e..673402e5d2 100644 --- a/docs/tx/associate-evm-key.mdx +++ b/docs/tx/associate-evm-key.mdx @@ -98,6 +98,6 @@ pub fn associate_evm_key( } ``` -Delegates to [`do_associate_evm_key`](/code/pallets/subtensor/src/utils/evm.rs#L46). +Delegates to [`do_associate_evm_key`](/code/pallets/subtensor/src/utils/evm.rs#L47). Every file is browsable under [/code](/code) exactly as built into the runtime, or as plain text under `/code/raw/` (index: [`/code/index.json`](/code/index.json)). diff --git a/docs/tx/set-weights.mdx b/docs/tx/set-weights.mdx index 78d50cbcc2..56d1d3975e 100644 --- a/docs/tx/set-weights.mdx +++ b/docs/tx/set-weights.mdx @@ -98,7 +98,7 @@ pub fn set_mechanism_weights( } ``` -Delegates to [`get_commit_reveal_weights_enabled`](/code/pallets/subtensor/src/utils/misc.rs#L607), [`do_set_mechanism_weights`](/code/pallets/subtensor/src/subnets/weights.rs#L916). +Delegates to [`get_commit_reveal_weights_enabled`](/code/pallets/subtensor/src/utils/misc.rs#L606), [`do_set_mechanism_weights`](/code/pallets/subtensor/src/subnets/weights.rs#L916). `SubtensorModule.commit_timelocked_mechanism_weights` — [`pallets/subtensor/src/macros/dispatches.rs#L1869`](/code/pallets/subtensor/src/macros/dispatches.rs#L1869): diff --git a/eco-tests/Cargo.toml b/eco-tests/Cargo.toml index 4fc67467af..d37dcf5cdb 100644 --- a/eco-tests/Cargo.toml +++ b/eco-tests/Cargo.toml @@ -18,27 +18,27 @@ unwrap-used = "deny" useless_conversion = "allow" [dependencies] -# Keep `time` at a floor with the stack-exhaustion fix (GHSA-r6v5-fh4h-64xc); the old -# =0.3.36 pin for the tracing-subscriber E0119 conflict is resolved by tracing-subscriber >= 0.3.20. +# Keep `time` at a floor with the stack-exhaustion fix (GHSA-r6v5-fh4h-64xc). +# stable2606's `sp-tracing` pins tracing-subscriber 0.3.19 exactly. time = { version = "0.3.47", default-features = false } pallet-subtensor = { path = "../pallets/subtensor", default-features = false, features = ["std"] } pallet-alpha-assets = { path = "../pallets/alpha-assets", default-features = false, features = ["std"] } -frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } +frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } codec = { package = "parity-scale-codec", version = "3.7.5", default-features = false, features = ["derive", "std"] } scale-info = { version = "2.11.2", default-features = false, features = ["derive", "std"] } -pallet-balances = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -pallet-scheduler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } -pallet-preimage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } +pallet-balances = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +pallet-scheduler = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } +pallet-preimage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } pallet-drand = { path = "../pallets/drand", default-features = false, features = ["std"] } pallet-subtensor-swap = { path = "../pallets/swap", default-features = false, features = ["std"] } pallet-subtensor-swap-runtime-api = { path = "../pallets/swap/runtime-api", default-features = false, features = ["std"] } subtensor-custom-rpc-runtime-api = { path = "../pallets/subtensor/runtime-api", default-features = false, features = ["std"] } -sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } +sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } pallet-crowdloan = { path = "../pallets/crowdloan", default-features = false, features = ["std"] } pallet-subtensor-proxy = { path = "../pallets/proxy", default-features = false, features = ["std"] } pallet-subtensor-utility = { path = "../pallets/utility", default-features = false, features = ["std"] } @@ -50,10 +50,10 @@ substrate-fixed = { git = "https://github.com/encointer/substrate-fixed.git", ta safe-math = { path = "../primitives/safe-math", default-features = false, features = ["std"] } log = { version = "0.4.21", default-features = false, features = ["std"] } approx = "0.5" -sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false, features = ["std"] } +sp-tracing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false, features = ["std"] } tracing = "0.1" tracing-log = "0.2" -tracing-subscriber = { version = "0.3.20", features = ["fmt", "env-filter"] } +tracing-subscriber = { version = "=0.3.19", features = ["fmt", "env-filter"] } rand = { version = "0.10.0", default-features = false, features = ["std", "thread_rng"] } hex-literal = "0.4.1" diff --git a/eco-tests/src/mock.rs b/eco-tests/src/mock.rs index 66ab4b9f9c..e2b48bd100 100644 --- a/eco-tests/src/mock.rs +++ b/eco-tests/src/mock.rs @@ -561,7 +561,9 @@ impl frame_system::offchain::SigningTypes for Test { type Signature = test_crypto::Signature; } -pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; +type TxExtension = frame_system::AuthorizeCall; + +pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; impl frame_system::offchain::CreateTransactionBase for Test where @@ -571,6 +573,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/node/Cargo.toml b/node/Cargo.toml index da20b81641..4911e90cab 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -137,13 +137,13 @@ subtensor-macros.workspace = true # profile across the node's hundreds of threads; linking jemalloc as the global allocator (as the # polkadot binary does) is the proposed mitigation (issue #2724). Gated behind a feature so the # default release binary is unchanged until an operator opts in. -tikv-jemallocator = { version = "0.5", optional = true, default-features = false } +tikv-jemallocator = { version = "0.6", optional = true, default-features = false } # Companion to `tikv-jemallocator`, used by the `jemalloc-allocator` feature's # activation test to read allocator stats over `mallctl`. It already resolves # transitively and shares the single compiled `tikv-jemalloc-sys` with # `tikv-jemallocator` (see Cargo.lock), so enabling it adds no second copy of # jemalloc - only this small ctl FFI shim. -tikv-jemalloc-ctl = { version = "0.5", optional = true } +tikv-jemalloc-ctl = { version = "0.6", optional = true } [build-dependencies] substrate-build-script-utils.workspace = true diff --git a/node/src/benchmarking.rs b/node/src/benchmarking.rs index d0c0ac9a40..a940833de7 100644 --- a/node/src/benchmarking.rs +++ b/node/src/benchmarking.rs @@ -127,6 +127,7 @@ pub fn create_benchmark_extrinsic( let era = sp_runtime::generic::Era::mortal(period, best_block.saturated_into()); let extra: runtime::TxExtension = ( ( + frame_system::AuthorizeCall::::new(), frame_system::CheckNonZeroSender::::new(), frame_system::CheckSpecVersion::::new(), frame_system::CheckTxVersion::::new(), @@ -150,6 +151,7 @@ pub fn create_benchmark_extrinsic( extra.clone(), ( ( + (), (), runtime::VERSION.spec_version, runtime::VERSION.transaction_version, diff --git a/node/src/chain_spec/devnet.rs b/node/src/chain_spec/devnet.rs index cb3bc66924..23fe0c4b97 100644 --- a/node/src/chain_spec/devnet.rs +++ b/node/src/chain_spec/devnet.rs @@ -78,7 +78,7 @@ fn devnet_genesis( "balances": vec![(root_key.clone(), 1_000_000_000_000u128)], }, "aura": { - "authorities": initial_authorities.iter().map(|x| (x.0.clone())).collect::>(), + "authorities": initial_authorities.iter().map(|x| x.0.clone()).collect::>(), }, "grandpa": { "authorities": initial_authorities diff --git a/node/src/chain_spec/finney.rs b/node/src/chain_spec/finney.rs index 4455466d26..2dd1e43d2f 100644 --- a/node/src/chain_spec/finney.rs +++ b/node/src/chain_spec/finney.rs @@ -216,7 +216,7 @@ fn finney_genesis( ) -> serde_json::Value { serde_json::json!({ "balances": { "balances": balances.to_vec() }, - "aura": { "authorities": initial_authorities.iter().map(|x| (x.0.clone())).collect::>() }, + "aura": { "authorities": initial_authorities.iter().map(|x| x.0.clone()).collect::>() }, "grandpa": { "authorities": initial_authorities .iter() .map(|x| (x.1.clone(), 1)) diff --git a/node/src/chain_spec/localnet.rs b/node/src/chain_spec/localnet.rs index 57a60bbd1b..8b6bb70395 100644 --- a/node/src/chain_spec/localnet.rs +++ b/node/src/chain_spec/localnet.rs @@ -119,7 +119,7 @@ fn localnet_genesis( serde_json::json!({ "balances": { "balances": balances }, "aura": { - "authorities": initial_authorities.iter().map(|x| (x.0.clone())).collect::>() + "authorities": initial_authorities.iter().map(|x| x.0.clone()).collect::>() }, "grandpa": { "authorities": initial_authorities diff --git a/node/src/chain_spec/testnet.rs b/node/src/chain_spec/testnet.rs index a3b3d8b627..c719053db4 100644 --- a/node/src/chain_spec/testnet.rs +++ b/node/src/chain_spec/testnet.rs @@ -119,7 +119,7 @@ fn testnet_genesis( "balances": vec![(root_key.clone(), 1_000_000_000_000u128)], }, "aura": { - "authorities": initial_authorities.iter().map(|x| (x.0.clone())).collect::>(), + "authorities": initial_authorities.iter().map(|x| x.0.clone()).collect::>(), }, "grandpa": { "authorities": initial_authorities diff --git a/node/src/client.rs b/node/src/client.rs index e65683933b..22054eff3e 100644 --- a/node/src/client.rs +++ b/node/src/client.rs @@ -18,3 +18,40 @@ pub type HostFunctions = ( ProofSize, ); pub type RuntimeExecutor = WasmExecutor; + +#[cfg(test)] +mod tests { + use super::HostFunctions; + use sc_executor::HostFunctions as _; + + #[test] + fn registers_deployed_and_current_bls12_381_host_calls() { + let names = HostFunctions::host_functions() + .into_iter() + .map(|function| function.name()) + .collect::>(); + + for name in [ + "ext_host_calls_bls12_381_multi_miller_loop_version_1", + "ext_host_calls_bls12_381_multi_miller_loop_version_2", + "ext_host_calls_bls12_381_final_exponentiation_version_1", + "ext_host_calls_bls12_381_final_exponentiation_version_2", + "ext_host_calls_bls12_381_msm_g1_version_1", + "ext_host_calls_bls12_381_msm_g1_version_2", + "ext_host_calls_bls12_381_msm_g2_version_1", + "ext_host_calls_bls12_381_msm_g2_version_2", + "ext_host_calls_bls12_381_mul_projective_g1_version_1", + "ext_host_calls_bls12_381_mul_projective_g2_version_1", + "ext_host_calls_bls12_381_mul_g1_version_1", + "ext_host_calls_bls12_381_mul_g2_version_1", + ] { + assert_eq!( + names + .iter() + .filter(|registered| **registered == name) + .count(), + 1 + ); + } + } +} diff --git a/node/src/clone_spec.rs b/node/src/clone_spec.rs index dba70bf117..a5a847446a 100644 --- a/node/src/clone_spec.rs +++ b/node/src/clone_spec.rs @@ -442,6 +442,7 @@ fn patch_raw_spec(spec: &mut Value, validators: &[&'static str]) -> CloneResult< // each subnet's first epoch firing within its first `tempo` blocks. remove_by_prefix(top, &storage_key("SubtensorModule", "LastEpochBlock")); remove_by_prefix(top, &storage_key("SubtensorModule", "PendingEpochAt")); + top.remove(&storage_key("Drand", "NextUnsignedAt")); set_validator_balances(top, validators); @@ -562,6 +563,7 @@ mod tests { ); top.insert(format!("{}abcd", storage_prefix("Session")), json!("0x05")); top.insert(storage_key("Balances", "TotalIssuance"), json!("0x06")); + top.insert(storage_key("Drand", "NextUnsignedAt"), json!("0x07")); json!({ "genesis": { "raw": { "top": top } }, @@ -646,6 +648,7 @@ mod tests { top.keys() .all(|k| !k.starts_with(&storage_prefix("Session"))) ); + assert!(!top.contains_key(&storage_key("Drand", "NextUnsignedAt"))); assert_eq!(spec.get("chainType"), Some(&json!("Local"))); assert_eq!(spec.get("bootNodes"), Some(&json!([]))); diff --git a/node/src/command.rs b/node/src/command.rs index fd3a122ec5..78a4a544c0 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -13,10 +13,7 @@ use crate::consensus::AuraConsensus; use clap::{ArgMatches, CommandFactory, FromArgMatches, parser::ValueSource}; use node_subtensor_runtime::Block; use sc_cli::SubstrateCli; -use sc_service::{ - Configuration, - config::{ExecutorConfiguration, RpcConfiguration}, -}; +use sc_service::Configuration; impl SubstrateCli for Cli { fn impl_name() -> String { @@ -364,7 +361,10 @@ fn start_aura_service( fn customise_config(arg_matches: &ArgMatches, config: Configuration) -> Configuration { let cli = Cli::from_arg_matches(arg_matches).expect("Bad arg_matches"); - let mut config = override_default_heap_pages(config, 60_000); + // Keep the SDK's default heap strategy. `default_heap_pages` is interpreted as + // extra pages by stable2606; the historical 60,000-page override can therefore + // make a compiled runtime attempt to pre-grow beyond wasm32's memory limit. + let mut config = config; // If the operator did **not** supply `--rpc-rate-limit`, disable the limiter. if cli.run.rpc_params.rpc_rate_limit.is_none() { @@ -387,56 +387,3 @@ fn customise_config(arg_matches: &ArgMatches, config: Configuration) -> Configur config } - -/// Override default heap pages -fn override_default_heap_pages(config: Configuration, pages: u64) -> Configuration { - Configuration { - impl_name: config.impl_name, - impl_version: config.impl_version, - role: config.role, - tokio_handle: config.tokio_handle, - transaction_pool: config.transaction_pool, - network: config.network, - keystore: config.keystore, - database: config.database, - trie_cache_maximum_size: config.trie_cache_maximum_size, - warm_up_trie_cache: config.warm_up_trie_cache, - state_pruning: config.state_pruning, - blocks_pruning: config.blocks_pruning, - chain_spec: config.chain_spec, - wasm_runtime_overrides: config.wasm_runtime_overrides, - prometheus_config: config.prometheus_config, - telemetry_endpoints: config.telemetry_endpoints, - offchain_worker: config.offchain_worker, - force_authoring: config.force_authoring, - disable_grandpa: config.disable_grandpa, - dev_key_seed: config.dev_key_seed, - tracing_targets: config.tracing_targets, - tracing_receiver: config.tracing_receiver, - announce_block: config.announce_block, - data_path: config.data_path, - base_path: config.base_path, - executor: ExecutorConfiguration { - default_heap_pages: Some(pages), - wasm_method: config.executor.wasm_method, - max_runtime_instances: config.executor.max_runtime_instances, - runtime_cache_size: config.executor.runtime_cache_size, - }, - rpc: RpcConfiguration { - addr: config.rpc.addr, - max_connections: config.rpc.max_connections, - cors: config.rpc.cors, - methods: config.rpc.methods, - max_request_size: config.rpc.max_request_size, - max_response_size: config.rpc.max_response_size, - id_provider: config.rpc.id_provider, - max_subs_per_conn: config.rpc.max_subs_per_conn, - port: config.rpc.port, - message_buffer_capacity: config.rpc.message_buffer_capacity, - batch_config: config.rpc.batch_config, - rate_limit: config.rpc.rate_limit, - rate_limit_whitelisted_ips: config.rpc.rate_limit_whitelisted_ips, - rate_limit_trust_proxy_headers: config.rpc.rate_limit_trust_proxy_headers, - }, - } -} diff --git a/node/src/consensus/aura_consensus.rs b/node/src/consensus/aura_consensus.rs index 74ec8fea1e..99e0d12765 100644 --- a/node/src/consensus/aura_consensus.rs +++ b/node/src/consensus/aura_consensus.rs @@ -153,13 +153,6 @@ impl ConsensusMechanism for AuraConsensus { grandpa_block_import: GrandpaBlockImport, transaction_pool: Arc>| { let expected_babe_config = get_expected_babe_configuration(&*client)?; - let conditional_block_import = HybridBlockImport::new( - client.clone(), - grandpa_block_import.clone(), - expected_babe_config.clone(), - skip_history_backfill, - ); - let slot_duration = sc_consensus_aura::slot_duration(&*client)?; let create_inherent_data_providers = move |_, ()| async move { let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); @@ -170,6 +163,24 @@ impl ConsensusMechanism for AuraConsensus { ); Ok((slot, timestamp)) }; + let select_chain = sc_consensus::LongestChain::new(backend.clone()); + let offchain_tx_pool_factory = + OffchainTransactionPoolFactory::new(transaction_pool); + let (babe_import, babe_link) = sc_consensus_babe::block_import( + expected_babe_config.clone(), + grandpa_block_import.clone(), + client.clone(), + create_inherent_data_providers, + select_chain, + offchain_tx_pool_factory, + )?; + let conditional_block_import = HybridBlockImport::new( + client.clone(), + grandpa_block_import.clone(), + babe_import, + babe_link, + skip_history_backfill, + ); // Aura needs the hybrid import queue, because it needs to // 1. Validate the first Babe block it encounters before switching into Babe @@ -187,12 +198,8 @@ impl ConsensusMechanism for AuraConsensus { check_for_equivocation: Default::default(), telemetry, compatibility_mode: sc_consensus_aura::CompatibilityMode::None, - select_chain: sc_consensus::LongestChain::new(backend.clone()), babe_config: expected_babe_config, epoch_changes: conditional_block_import.babe_link().epoch_changes().clone(), - offchain_tx_pool_factory: OffchainTransactionPoolFactory::new( - transaction_pool, - ), }, ) .map_err::(Into::into)?; diff --git a/node/src/consensus/babe_consensus.rs b/node/src/consensus/babe_consensus.rs index fad204fb48..9d721e0375 100644 --- a/node/src/consensus/babe_consensus.rs +++ b/node/src/consensus/babe_consensus.rs @@ -179,10 +179,23 @@ impl ConsensusMechanism for BabeConsensus { )); } + let slot_duration = configuration.slot_duration(); + let create_inherent_data_providers = move |_, ()| async move { + let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); + let slot = + sp_consensus_babe::inherents::InherentDataProvider::from_timestamp_and_slot_duration( + *timestamp, + slot_duration, + ); + Ok((slot, timestamp)) + }; let (babe_import, babe_link) = sc_consensus_babe::block_import( configuration, grandpa_block_import.clone(), client.clone(), + create_inherent_data_providers, + sc_consensus::LongestChain::new(backend), + OffchainTransactionPoolFactory::new(transaction_pool), )?; let conditional_block_import = ConditionalEVMBlockImport::new( @@ -191,31 +204,16 @@ impl ConsensusMechanism for BabeConsensus { skip_history_backfill, ); - let slot_duration = babe_link.config().slot_duration(); - let create_inherent_data_providers = move |_, ()| async move { - let timestamp = sp_timestamp::InherentDataProvider::from_system_time(); - let slot = - sp_consensus_babe::inherents::InherentDataProvider::from_timestamp_and_slot_duration( - *timestamp, - slot_duration, - ); - Ok((slot, timestamp)) - }; - let (import_queue, babe_worker_handle) = sc_consensus_babe::import_queue(sc_consensus_babe::ImportQueueParams { link: babe_link.clone(), block_import: conditional_block_import.clone(), justification_import: Some(Box::new(grandpa_block_import)), client, - select_chain: sc_consensus::LongestChain::new(backend.clone()), - create_inherent_data_providers, + slot_duration, spawner: &task_manager.spawn_essential_handle(), registry: config.prometheus_registry(), telemetry, - offchain_tx_pool_factory: OffchainTransactionPoolFactory::new( - transaction_pool, - ), })?; self.babe_link = Some(babe_link); diff --git a/node/src/consensus/hybrid_import_queue.rs b/node/src/consensus/hybrid_import_queue.rs index 1edb46b974..00b695da18 100644 --- a/node/src/consensus/hybrid_import_queue.rs +++ b/node/src/consensus/hybrid_import_queue.rs @@ -16,20 +16,17 @@ use sc_consensus::{BasicQueue, DefaultImportQueue}; use sc_consensus_aura::AuraVerifier; use sc_consensus_aura::CheckForEquivocation; use sc_consensus_aura::CompatibilityMode; -use sc_consensus_babe::BabeBlockImport; use sc_consensus_babe::BabeLink; use sc_consensus_babe::BabeVerifier; use sc_consensus_babe::Epoch; use sc_consensus_epochs::SharedEpochChanges; use sc_consensus_slots::InherentDataProviderExt; use sc_telemetry::TelemetryHandle; -use sc_transaction_pool_api::OffchainTransactionPoolFactory; use sp_api::ApiExt; use sp_api::ProvideRuntimeApi; use sp_block_builder::BlockBuilder as BlockBuilderApi; use sp_blockchain::HeaderBackend; use sp_blockchain::HeaderMetadata; -use sp_consensus::SelectChain; use sp_consensus::error::Error as ConsensusError; use sp_consensus_aura::AuraApi; use sp_consensus_aura::sr25519::AuthorityId as AuraAuthorityId; @@ -47,30 +44,29 @@ use substrate_prometheus_endpoint::Registry; /// `BlockImport` implementations that supports importing both Aura and Babe blocks. #[derive(Clone)] -pub struct HybridBlockImport { +pub struct HybridBlockImport +where + BI: BlockImport + Send + Sync, +{ inner_aura: ConditionalEVMBlockImport< Block, GrandpaBlockImport, FrontierBlockImport, >, - inner_babe: ConditionalEVMBlockImport< - Block, - BabeBlockImport, - FrontierBlockImport< - Block, - BabeBlockImport, - FullClient, - >, - >, + inner_babe: ConditionalEVMBlockImport>, babe_link: BabeLink, client: Arc, } -impl HybridBlockImport { +impl HybridBlockImport +where + BI: BlockImport + Clone + Send + Sync, +{ pub fn new( client: Arc, grandpa_block_import: GrandpaBlockImport, - babe_config: BabeConfiguration, + babe_import: BI, + babe_link: BabeLink, skip_history_backfill: bool, ) -> Self { let inner_aura = ConditionalEVMBlockImport::new( @@ -79,14 +75,6 @@ impl HybridBlockImport { skip_history_backfill, ); - #[allow(clippy::expect_used)] - let (babe_import, babe_link) = sc_consensus_babe::block_import( - babe_config, - grandpa_block_import.clone(), - client.clone(), - ) - .expect("Failed to create Babe block_import"); - let inner_babe = ConditionalEVMBlockImport::new( babe_import.clone(), FrontierBlockImport::new(babe_import.clone(), client.clone()), @@ -107,7 +95,10 @@ impl HybridBlockImport { } #[async_trait::async_trait] -impl BlockImport for HybridBlockImport { +impl BlockImport for HybridBlockImport +where + BI: BlockImport + Clone + Send + Sync, +{ type Error = ConsensusError; async fn check_block( @@ -139,19 +130,18 @@ impl BlockImport for HybridBlockImport { } /// `Verifier` implementation that supports verifying both Aura and Babe blocks. -struct HybridVerifier { - inner_aura: AuraVerifier, - inner_babe: BabeVerifier, +struct HybridVerifier { + inner_aura: AuraVerifier, + inner_babe: BabeVerifier, } -impl HybridVerifier +impl HybridVerifier where CIDP: CreateInherentDataProviders + Send + Sync + Clone, CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync, C: ProvideRuntimeApi + Send + Sync + sc_client_api::backend::AuxStore, C::Api: BlockBuilderApi + BabeApi + AuraApi + ApiExt, C: HeaderBackend + HeaderMetadata, - SC: SelectChain + 'static, { #[allow(clippy::too_many_arguments)] pub fn new( @@ -159,11 +149,9 @@ where create_inherent_data_providers: CIDP, telemetry: Option, check_for_equivocation: CheckForEquivocation, - compatibility_mode: sc_consensus_aura::CompatibilityMode, - select_chain: SC, + compatibility_mode: sc_consensus_aura::CompatibilityMode>, babe_config: BabeConfiguration, epoch_changes: SharedEpochChanges, - offchain_tx_pool_factory: OffchainTransactionPoolFactory, ) -> Self { let aura_params = sc_consensus_aura::BuildVerifierParams:: { client: client.clone(), @@ -173,16 +161,14 @@ where compatibility_mode, }; let inner_aura = - sc_consensus_aura::build_verifier::(aura_params); + sc_consensus_aura::build_verifier::(aura_params); let inner_babe = BabeVerifier::new( - client.clone(), - select_chain, - create_inherent_data_providers, + client, + babe_config.slot_duration(), babe_config, epoch_changes, telemetry, - offchain_tx_pool_factory, ); HybridVerifier { @@ -193,14 +179,13 @@ where } #[async_trait::async_trait] -impl Verifier for HybridVerifier, SC> +impl Verifier for HybridVerifier where C: ProvideRuntimeApi + Send + Sync + sc_client_api::backend::AuxStore, C::Api: BlockBuilderApi + BabeApi + AuraApi + ApiExt, C: HeaderBackend + HeaderMetadata, CIDP: CreateInherentDataProviders + Send + Sync + Clone, CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync, - SC: SelectChain + 'static, { async fn verify(&self, block: BlockImportParams) -> Result, String> { let number: NumberFor = *block.post_header().number(); @@ -214,7 +199,7 @@ where } /// Parameters for our [`import_queue`]. -pub struct HybridImportQueueParams<'a, Block: BlockT, I, C, S, CIDP, SC> { +pub struct HybridImportQueueParams<'a, Block: BlockT, I, C, S, CIDP> { /// The block import to use. pub block_import: I, /// The justification import. @@ -235,19 +220,15 @@ pub struct HybridImportQueueParams<'a, Block: BlockT, I, C, S, CIDP, SC> { /// /// If in doubt, use `Default::default()`. pub compatibility_mode: CompatibilityMode>, - /// SelectChain strategy to use. - pub select_chain: SC, /// The configuration for the BABE consensus algorithm. pub babe_config: BabeConfiguration, /// The epoch changes for the BABE consensus algorithm. pub epoch_changes: SharedEpochChanges, - /// The offchain transaction pool factory. - pub offchain_tx_pool_factory: OffchainTransactionPoolFactory, } /// Start a hybrid import queue that supports importing both Aura and Babe blocks. -pub fn import_queue( - params: HybridImportQueueParams, +pub fn import_queue( + params: HybridImportQueueParams, ) -> Result, sp_consensus::Error> where B: BlockT, @@ -265,18 +246,15 @@ where S: sp_core::traits::SpawnEssentialNamed, CIDP: CreateInherentDataProviders + Sync + Send + Clone + 'static, CIDP::InherentDataProviders: InherentDataProviderExt + Send + Sync, - SC: SelectChain + 'static, { - let verifier = HybridVerifier::, SC>::new( + let verifier = HybridVerifier::::new( params.client, params.create_inherent_data_providers, params.telemetry, params.check_for_equivocation, params.compatibility_mode, - params.select_chain, params.babe_config, params.epoch_changes, - params.offchain_tx_pool_factory, ); Ok(BasicQueue::new( diff --git a/node/src/service.rs b/node/src/service.rs index f7d277eed2..2c5c0d6eca 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -102,6 +102,7 @@ pub fn new_partial( config, telemetry.as_ref().map(|(_, telemetry)| telemetry.handle()), executor, + Vec::new(), )?; // Prepare keystore for authoring Babe blocks. @@ -350,6 +351,7 @@ where client: client.clone(), transaction_pool: transaction_pool.clone(), spawn_handle: task_manager.spawn_handle(), + spawn_essential_handle: task_manager.spawn_essential_handle(), import_queue, block_announce_validator_builder: None, warp_sync_config, @@ -527,6 +529,7 @@ where tx_handler_controller, sync_service: sync_service.clone(), telemetry: telemetry.as_mut(), + tracing_execute_block: None, })?; spawn_frontier_tasks( diff --git a/pallets/admin-utils/src/tests/mock.rs b/pallets/admin-utils/src/tests/mock.rs index 06e4e611a1..0d41cda02f 100644 --- a/pallets/admin-utils/src/tests/mock.rs +++ b/pallets/admin-utils/src/tests/mock.rs @@ -74,7 +74,8 @@ pub type Balance = TaoBalance; pub type BlockNumber = u64; pub type TestAuthId = test_crypto::TestAuthId; -pub type UncheckedExtrinsic = TestXt; +type TxExtension = frame_system::AuthorizeCall; +pub type UncheckedExtrinsic = TestXt; pub struct MockAuthorshipProvider; @@ -484,6 +485,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/pallets/commitments/src/mock.rs b/pallets/commitments/src/mock.rs index 7b61b5625f..7ee3a38d32 100644 --- a/pallets/commitments/src/mock.rs +++ b/pallets/commitments/src/mock.rs @@ -9,14 +9,14 @@ use frame_support::{ use sp_core::H256; use sp_runtime::{ BuildStorage, - testing::Header, traits::{BlakeTwo256, ConstU16, IdentityLookup}, }; use subtensor_runtime_common::{ConstTao, TaoBalance}; -pub type Block = sp_runtime::generic::Block; +type TxExtension = frame_system::AuthorizeCall; +pub type Block = frame_system::mocking::MockBlock; pub type UncheckedExtrinsic = - sp_runtime::generic::UncheckedExtrinsic; + frame_system::mocking::MockUncheckedExtrinsic; frame_support::construct_runtime!( pub enum Test @@ -28,8 +28,6 @@ frame_support::construct_runtime!( } ); -pub type AccountId = u64; - #[derive_impl(frame_system::config_preludes::TestDefaultConfig)] impl frame_system::Config for Test { type BaseCallFilter = frame_support::traits::Everything; @@ -169,6 +167,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/pallets/commitments/src/types.rs b/pallets/commitments/src/types.rs index cdca47922b..3ba6bdf829 100644 --- a/pallets/commitments/src/types.rs +++ b/pallets/commitments/src/types.rs @@ -17,17 +17,14 @@ use codec::{Codec, Decode, DecodeWithMemTracking, Encode, MaxEncodedLen}; use frame_support::{ - BoundedVec, CloneNoBound, PartialEqNoBound, RuntimeDebugNoBound, + BoundedVec, CloneNoBound, DebugNoBound, PartialEqNoBound, traits::{ConstU32, Get}, }; use scale_info::{ Path, Type, TypeInfo, build::{Fields, Variants}, }; -use sp_runtime::{ - RuntimeDebug, - traits::{AppendZerosInput, AtLeast32BitUnsigned}, -}; +use sp_runtime::traits::{AppendZerosInput, AtLeast32BitUnsigned}; use sp_std::{fmt::Debug, iter::once, prelude::*}; use subtensor_macros::freeze_struct; @@ -38,9 +35,10 @@ use subtensor_macros::freeze_struct; /// - A timelock-encrypted blob with a reveal round /// - A reset flag (`ResetBondsFlag`) /// Can also be `None`. -#[derive(Clone, Eq, PartialEq, RuntimeDebug, DecodeWithMemTracking, MaxEncodedLen)] +#[derive(Clone, Default, Eq, PartialEq, Debug, DecodeWithMemTracking, MaxEncodedLen)] pub enum Data { /// No data here. + #[default] None, /// The data is stored directly (up to 128 bytes). Raw(BoundedVec>), @@ -356,13 +354,7 @@ impl TypeInfo for Data { } } -impl Default for Data { - fn default() -> Self { - Self::None - } -} - -#[freeze_struct("5ca4adbb4d2a2b20")] +#[freeze_struct("c236d81fa00063bf")] #[derive( CloneNoBound, Encode, @@ -371,7 +363,7 @@ impl Default for Data { Eq, MaxEncodedLen, PartialEqNoBound, - RuntimeDebugNoBound, + DebugNoBound, TypeInfo, )] #[codec(mel_bound())] @@ -408,10 +400,8 @@ pub struct UsageTracker { /// /// NOTE: This is stored separately primarily to facilitate the addition of extra fields in a /// backwards compatible way through a specialized `Decode` impl. -#[freeze_struct("632f12850e51c420")] -#[derive( - CloneNoBound, Encode, Eq, MaxEncodedLen, PartialEqNoBound, RuntimeDebugNoBound, TypeInfo, -)] +#[freeze_struct("8afc71a336adf4f7")] +#[derive(CloneNoBound, DebugNoBound, Encode, Eq, MaxEncodedLen, PartialEqNoBound, TypeInfo)] #[codec(mel_bound())] #[scale_info(skip_type_params(MaxFields))] pub struct Registration< diff --git a/pallets/crowdloan/src/lib.rs b/pallets/crowdloan/src/lib.rs index f7d771f4a7..aa110a4556 100644 --- a/pallets/crowdloan/src/lib.rs +++ b/pallets/crowdloan/src/lib.rs @@ -15,7 +15,7 @@ use frame_support::{ dispatch::GetDispatchInfo, pallet_prelude::*, sp_runtime::{ - RuntimeDebug, Saturating, + Debug, Saturating, traits::{AccountIdConversion, Dispatchable, Zero}, }, traits::{ @@ -53,8 +53,8 @@ pub type BoundedCallOf = Bounded<::RuntimeCall, ::Hashing>; /// A struct containing the information about a crowdloan. -#[freeze_struct("5db9538284491545")] -#[derive(Encode, Decode, Eq, PartialEq, Ord, PartialOrd, RuntimeDebug, TypeInfo, MaxEncodedLen)] +#[freeze_struct("195bce417b5cbd62")] +#[derive(Encode, Decode, Eq, PartialEq, Ord, PartialOrd, Debug, TypeInfo, MaxEncodedLen)] pub struct CrowdloanInfo { /// The creator of the crowdloan. pub creator: AccountId, diff --git a/pallets/drand/Cargo.toml b/pallets/drand/Cargo.toml index 6e3ad982f7..fb1a077941 100644 --- a/pallets/drand/Cargo.toml +++ b/pallets/drand/Cargo.toml @@ -37,6 +37,8 @@ ark-ec.workspace = true ark-std.workspace = true ark-crypto-primitives = { workspace = true, features = ["r1cs", "snark"] } ark-scale = { workspace = true, features = ["hazmat"] } +ark-ec-v5 = { package = "ark-ec", version = "0.5.0", default-features = false } +ark-std-v5 = { package = "ark-std", version = "0.5.0", default-features = false } w3f-bls.workspace = true sp-keyring.workspace = true subtensor-macros.workspace = true @@ -72,6 +74,8 @@ std = [ "ark-std/std", "ark-crypto-primitives/std", "ark-scale/std", + "ark-ec-v5/std", + "ark-std-v5/std", "w3f-bls/std", "tle/std", "anyhow/std", diff --git a/pallets/drand/src/benchmarking.rs b/pallets/drand/src/benchmarking.rs index 799b9d16b2..46c0c147ee 100644 --- a/pallets/drand/src/benchmarking.rs +++ b/pallets/drand/src/benchmarking.rs @@ -73,7 +73,7 @@ mod benchmarks { }; #[extrinsic_call] - write_pulse(RawOrigin::None, pulses_payload.clone(), None); + write_pulse(RawOrigin::Authorized, pulses_payload.clone(), None); // Check that the pulse has been stored assert_eq!(Pulses::::get(p.round), Some(p)); diff --git a/pallets/drand/src/bls12_381.rs b/pallets/drand/src/bls12_381.rs index e31118a3e4..82dff901a3 100644 --- a/pallets/drand/src/bls12_381.rs +++ b/pallets/drand/src/bls12_381.rs @@ -14,8 +14,8 @@ * limitations under the License. */ -use ark_ec::pairing::Pairing; -use ark_std::{Zero, ops::Neg}; +use ark_ec_v5::pairing::Pairing; +use ark_std_v5::{Zero, ops::Neg}; use sp_crypto_ec_utils::bls12_381::{ Bls12_381 as Bls12_381Opt, G1Affine as G1AffineOpt, G2Affine as G2AffineOpt, }; diff --git a/pallets/drand/src/lib.rs b/pallets/drand/src/lib.rs index 26f66ac31a..79e8d4b956 100644 --- a/pallets/drand/src/lib.rs +++ b/pallets/drand/src/lib.rs @@ -43,17 +43,20 @@ use codec::Encode; use frame_support::{pallet_prelude::*, traits::Randomness}; use frame_system::{ offchain::{ - AppCrypto, CreateBare, SendUnsignedTransaction, SignedPayload, Signer, SigningTypes, + AppCrypto, CreateAuthorizedTransaction, SignedPayload, Signer, SigningTypes, + SubmitTransaction, }, pallet_prelude::BlockNumberFor, }; use scale_info::prelude::cmp; use sha2::{Digest, Sha256}; -use sp_core::blake2_256; +use sp_io::hashing::blake2_256; use sp_runtime::{ KeyTypeId, Saturating, traits::{Hash, One}, - transaction_validity::{InvalidTransaction, TransactionValidity, ValidTransaction}, + transaction_validity::{ + InvalidTransaction, TransactionValidity, TransactionValidityWithRefund, ValidTransaction, + }, }; pub mod bls12_381; @@ -66,6 +69,9 @@ pub mod verifier; use types::*; use verifier::Verifier; +type WritePulsePayload = PulsesPayload<::Public, BlockNumberFor>; +type WritePulseSignature = Option<::Signature>; + #[cfg(test)] mod mock; @@ -161,7 +167,9 @@ pub mod pallet { pub struct Pallet(_); #[pallet::config] - pub trait Config: CreateBare> + SigningTypes + frame_system::Config { + pub trait Config: + CreateAuthorizedTransaction> + SigningTypes + frame_system::Config + { /// The identifier type for an offchain worker. type AuthorityId: AppCrypto; /// something that knows how to verify beacon pulses @@ -288,60 +296,19 @@ pub mod pallet { } } - #[pallet::validate_unsigned] - impl ValidateUnsigned for Pallet { - type Call = Call; - - /// Validate unsigned call to this module. - /// - /// By default unsigned transactions are disallowed, but implementing the validator - /// here we make sure that some particular calls (the ones produced by offchain worker) - /// are being whitelisted and marked as valid. - fn validate_unsigned(_source: TransactionSource, call: &Self::Call) -> TransactionValidity { - match call { - Call::set_beacon_config { - config_payload: payload, - signature, - } => { - let signature = signature.as_ref().ok_or(InvalidTransaction::BadSigner)?; - Self::validate_signature_and_parameters( - payload, - signature, - &payload.block_number, - &payload.public, - None, - ) - } - Call::write_pulse { - pulses_payload: payload, - signature, - } => { - let signature = signature.as_ref().ok_or(InvalidTransaction::BadSigner)?; - let rounds: Vec = payload.pulses.iter().map(|p| p.round).collect(); - Self::validate_signature_and_parameters( - payload, - signature, - &payload.block_number, - &payload.public, - Some(&rounds), - ) - } - _ => InvalidTransaction::Call.into(), - } - } - } - #[pallet::call] impl Pallet { /// Verify and write a pulse from the beacon into the runtime #[pallet::call_index(0)] #[pallet::weight(T::WeightInfo::write_pulse())] + #[pallet::weight_of_authorize(T::WeightInfo::write_pulse())] + #[pallet::authorize(Self::authorize_write_pulse)] pub fn write_pulse( origin: OriginFor, - pulses_payload: PulsesPayload>, + pulses_payload: WritePulsePayload, _signature: Option, ) -> DispatchResult { - ensure_none(origin)?; + ensure_authorized(origin)?; let config = BeaconConfig::::get(); let mut last_stored_round = LastStoredRound::::get(); @@ -452,6 +419,24 @@ pub mod pallet { } impl Pallet { + fn authorize_write_pulse( + _source: TransactionSource, + pulses_payload: &WritePulsePayload, + signature: &WritePulseSignature, + ) -> TransactionValidityWithRefund { + let signature = signature.as_ref().ok_or(InvalidTransaction::BadSigner)?; + let rounds: Vec = pulses_payload.pulses.iter().map(|p| p.round).collect(); + + Self::validate_signature_and_parameters( + pulses_payload, + signature, + &pulses_payload.block_number, + &pulses_payload.public, + Some(&rounds), + ) + .map(|validity| (validity, Weight::zero())) + } + /// fetch the latest public pulse from the configured drand beacon /// then send a signed transaction to include it on-chain fn fetch_drand_pulse_and_send_unsigned( @@ -501,29 +486,40 @@ impl Pallet { for pulse in pulses.into_iter() { let round = pulse.round; - if let Some((acc, res)) = signer.send_unsigned_transaction( - |account| PulsesPayload { - block_number, - pulses: vec![pulse.clone()], - public: account.public.clone(), - }, - |pulses_payload, signature| Call::write_pulse { - pulses_payload, - signature: Some(signature), - }, - ) { - match res { - Ok(()) => log::debug!("Drand: [{:?}] submitted round {:?}", acc.id, round), - Err(e) => log::debug!( - "Drand: [{:?}] failed to submit round {:?}: {:?}", - acc.id, - round, - e - ), - } - } else { + let Some(account) = signer.accounts_from_keys().next() else { log::debug!("Drand: No local account available to submit round {round:?}"); - } + continue; + }; + + let pulses_payload = PulsesPayload { + block_number, + pulses: vec![pulse.clone()], + public: account.public.clone(), + }; + let Some(signature) = + > as SignedPayload>::sign::< + T::AuthorityId, + >(&pulses_payload) + else { + log::debug!("Drand: [{:?}] failed to sign round {:?}", account.id, round); + continue; + }; + let call = Call::write_pulse { + pulses_payload, + signature: Some(signature), + }; + let xt = T::create_authorized_transaction(call.into()); + let res = SubmitTransaction::>::submit_transaction(xt); + + match res { + Ok(()) => log::debug!("Drand: [{:?}] submitted round {:?}", account.id, round), + Err(e) => log::debug!( + "Drand: [{:?}] failed to submit round {:?}: {:?}", + account.id, + round, + e + ), + }; } } @@ -690,12 +686,10 @@ impl Pallet { return InvalidTransaction::Stale.into(); } - // Reject rounds that would advance LastStoredRound too far in a single - // step. A leap past unfillable rounds wedges the reveals and timelocks - // that reference them (#2794). `MAX_PULSES_TO_FETCH` is the most rounds - // the offchain worker ever submits in one catch-up run, so anything - // further ahead is not a legitimate pulse and is dropped before dispatch. - if r > last.saturating_add(MAX_PULSES_TO_FETCH) { + let is_first_storage = last == 0 && OldestStoredRound::::get() == 0; + + // Allow any initial round, then only rounds the worker can backfill. + if !is_first_storage && r > last.saturating_add(MAX_PULSES_TO_FETCH) { return InvalidTransaction::Stale.into(); } diff --git a/pallets/drand/src/mock.rs b/pallets/drand/src/mock.rs index aa370292b1..0af9ab7abe 100644 --- a/pallets/drand/src/mock.rs +++ b/pallets/drand/src/mock.rs @@ -51,7 +51,8 @@ impl frame_system::Config for Test { type MaxConsumers = frame_support::traits::ConstU32<16>; } -type Extrinsic = TestXt; +type TxExtension = frame_system::AuthorizeCall; +type Extrinsic = TestXt; impl frame_system::offchain::SigningTypes for Test { type Public = ::Signer; @@ -66,12 +67,23 @@ where type Extrinsic = Extrinsic; } -impl frame_system::offchain::CreateBare for Test +impl frame_system::offchain::CreateTransaction for Test where RuntimeCall: From, { - fn create_bare(call: RuntimeCall) -> Self::Extrinsic { - Extrinsic::new_bare(call) + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + Extrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() } } diff --git a/pallets/drand/src/tests.rs b/pallets/drand/src/tests.rs index 9f79ba1b6a..a4869eb5d6 100644 --- a/pallets/drand/src/tests.rs +++ b/pallets/drand/src/tests.rs @@ -24,18 +24,25 @@ use codec::Encode; use frame_support::{ BoundedVec, assert_noop, assert_ok, pallet_prelude::{InvalidTransaction, TransactionSource}, + traits::Authorize, weights::RuntimeDbWeight, }; use frame_system::RawOrigin; use sp_core::Get; -use sp_runtime::{ - offchain::{ - OffchainWorkerExt, - testing::{PendingRequest, TestOffchainExt}, - }, - traits::ValidateUnsigned, +use sp_runtime::offchain::{ + OffchainWorkerExt, + testing::{PendingRequest, TestOffchainExt}, }; +fn authorize_call( + call: &Call, + source: TransactionSource, +) -> sp_runtime::transaction_validity::TransactionValidity { + call.authorize(source) + .expect("drand write_pulse should provide authorization") + .map(|(validity, _)| validity) +} + // The round number used to collect drand pulses pub const ROUND_NUMBER: u64 = 1000; @@ -79,7 +86,7 @@ fn it_can_submit_valid_pulse_when_beacon_config_exists() { // Dispatch an unsigned extrinsic. assert_ok!(Drand::write_pulse( - RuntimeOrigin::none(), + RawOrigin::Authorized.into(), pulses_payload, signature )); @@ -128,7 +135,7 @@ fn it_rejects_invalid_pulse_due_to_bad_signature() { assert_noop!( Drand::write_pulse( - RawOrigin::None.into(), + RawOrigin::Authorized.into(), pulses_payload.clone(), Some(pulses_signature) ), @@ -173,7 +180,7 @@ fn it_rejects_pulses_with_non_incremental_round_numbers() { // Dispatch an unsigned extrinsic. assert_ok!(Drand::write_pulse( - RuntimeOrigin::none(), + RawOrigin::Authorized.into(), pulses_payload.clone(), signature )); @@ -184,7 +191,7 @@ fn it_rejects_pulses_with_non_incremental_round_numbers() { // Attempt to submit the same pulse again, which should fail assert_noop!( - Drand::write_pulse(RuntimeOrigin::none(), pulses_payload, signature), + Drand::write_pulse(RawOrigin::Authorized.into(), pulses_payload, signature), Error::::InvalidRoundNumber, ); }); @@ -228,7 +235,7 @@ fn write_pulse_rejects_round_skip() { // Round 1000 is NOT last(998) + 1, so it must be rejected. assert_noop!( - Drand::write_pulse(RuntimeOrigin::none(), pulses_payload, signature), + Drand::write_pulse(RawOrigin::Authorized.into(), pulses_payload, signature), Error::::InvalidRoundNumber, ); @@ -272,7 +279,7 @@ fn write_pulse_accepts_consecutive_round() { }; assert_ok!(Drand::write_pulse( - RuntimeOrigin::none(), + RawOrigin::Authorized.into(), pulses_payload, signature )); @@ -361,7 +368,7 @@ fn signed_cannot_submit_beacon_info() { } #[test] -fn test_validate_unsigned_write_pulse() { +fn test_authorize_write_pulse() { new_test_ext().execute_with(|| { let block_number = 100_000_000; let alice = sp_keyring::Sr25519Keyring::Alice; @@ -386,14 +393,41 @@ fn test_validate_unsigned_write_pulse() { }; let source = TransactionSource::External; - let validity = Drand::validate_unsigned(source, &call); + let validity = authorize_call(&call, source); assert_ok!(validity); }); } #[test] -fn validate_unsigned_rejects_round_too_far_ahead() { +fn authorize_accepts_current_round_for_first_pulse() { + new_test_ext().execute_with(|| { + let block_number = 100_000_000; + let alice = sp_keyring::Sr25519Keyring::Alice; + System::set_block_number(block_number); + + let pulse = Pulse { + round: 30_000_000, + randomness: frame_support::BoundedVec::truncate_from(vec![0u8; 32]), + signature: frame_support::BoundedVec::truncate_from(vec![1u8; 96]), + }; + let pulses_payload = PulsesPayload { + block_number, + pulses: vec![pulse], + public: alice.public(), + }; + let signature = alice.sign(&pulses_payload.encode()); + let call = Call::write_pulse { + pulses_payload, + signature: Some(signature), + }; + + assert_ok!(authorize_call(&call, TransactionSource::External)); + }); +} + +#[test] +fn authorize_rejects_round_too_far_ahead() { // A round that would leap LastStoredRound by more than the offchain worker ever // submits in one run is not a legitimate catch-up pulse. Drop it at the mempool // before it can reach dispatch (#2794). @@ -423,14 +457,14 @@ fn validate_unsigned_rejects_round_too_far_ahead() { }; let source = TransactionSource::External; - let validity = Drand::validate_unsigned(source, &call); + let validity = authorize_call(&call, source); assert_noop!(validity, InvalidTransaction::Stale); }); } #[test] -fn test_not_validate_unsigned_write_pulse_with_bad_proof() { +fn test_not_authorize_write_pulse_with_bad_proof() { new_test_ext().execute_with(|| { let block_number = 100_000_000; let alice = sp_keyring::Sr25519Keyring::Alice; @@ -449,14 +483,14 @@ fn test_not_validate_unsigned_write_pulse_with_bad_proof() { }; let source = TransactionSource::External; - let validity = Drand::validate_unsigned(source, &call); + let validity = authorize_call(&call, source); assert_noop!(validity, InvalidTransaction::BadProof); }); } #[test] -fn test_not_validate_unsigned_write_pulse_with_no_payload_signature() { +fn test_not_authorize_write_pulse_with_no_payload_signature() { new_test_ext().execute_with(|| { let block_number = 100_000_000; let alice = sp_keyring::Sr25519Keyring::Alice; @@ -475,7 +509,7 @@ fn test_not_validate_unsigned_write_pulse_with_no_payload_signature() { }; let source = TransactionSource::External; - let validity = Drand::validate_unsigned(source, &call); + let validity = authorize_call(&call, source); assert_noop!(validity, InvalidTransaction::BadSigner); }); @@ -525,7 +559,7 @@ fn can_execute_and_handle_valid_http_responses() { } #[test] -fn validate_unsigned_rejects_future_block_number() { +fn authorize_rejects_future_block_number() { new_test_ext().execute_with(|| { let block_number = 100_000_000; let future_block_number = 100_000_100; @@ -544,7 +578,7 @@ fn validate_unsigned_rejects_future_block_number() { }; let source = TransactionSource::External; - let validity = Drand::validate_unsigned(source, &call); + let validity = authorize_call(&call, source); assert_noop!(validity, InvalidTransaction::Future); }); diff --git a/pallets/drand/src/types.rs b/pallets/drand/src/types.rs index 6763787935..00cec9c890 100644 --- a/pallets/drand/src/types.rs +++ b/pallets/drand/src/types.rs @@ -199,8 +199,8 @@ pub struct Pulse { /// Payload used by to hold the pulse /// data required to submit a transaction. -#[freeze_struct("d56228e0330b6598")] -#[derive(Encode, Decode, DecodeWithMemTracking, Clone, PartialEq, Eq, RuntimeDebug, TypeInfo)] +#[freeze_struct("7bc8788d055c45e3")] +#[derive(Encode, Decode, DecodeWithMemTracking, Clone, PartialEq, Eq, Debug, TypeInfo)] pub struct PulsesPayload { pub block_number: BlockNumber, pub pulses: Vec, diff --git a/pallets/drand/src/verifier.rs b/pallets/drand/src/verifier.rs index 36c212181a..3e2f82554e 100644 --- a/pallets/drand/src/verifier.rs +++ b/pallets/drand/src/verifier.rs @@ -23,7 +23,8 @@ use crate::{ types::{BeaconConfiguration, Pulse, RoundNumber}, }; use alloc::{format, string::String, vec::Vec}; -use ark_ec::{AffineRepr, hashing::HashToCurve}; +use ark_ec::hashing::HashToCurve; +use ark_ec_v5::AffineRepr; use ark_serialize::CanonicalSerialize; use codec::Decode; use sha2::{Digest, Sha256}; diff --git a/pallets/limit-orders/Cargo.toml b/pallets/limit-orders/Cargo.toml index 675f2636dc..79513b119e 100644 --- a/pallets/limit-orders/Cargo.toml +++ b/pallets/limit-orders/Cargo.toml @@ -13,6 +13,7 @@ frame-support.workspace = true frame-system.workspace = true scale-info.workspace = true sp-core.workspace = true +sp-crypto-hashing.workspace = true sp-runtime.workspace = true sp-std.workspace = true log.workspace = true @@ -38,6 +39,7 @@ std = [ "frame-system/std", "scale-info/std", "sp-core/std", + "sp-crypto-hashing/std", "sp-io?/std", "sp-keyring?/std", "sp-keystore/std", @@ -57,4 +59,4 @@ runtime-benchmarks = [ "sp-io", "subtensor-runtime-common/runtime-benchmarks", "subtensor-swap-interface/runtime-benchmarks", -] \ No newline at end of file +] diff --git a/pallets/limit-orders/src/lib.rs b/pallets/limit-orders/src/lib.rs index 1d5548c529..c55ed37d8e 100644 --- a/pallets/limit-orders/src/lib.rs +++ b/pallets/limit-orders/src/lib.rs @@ -574,7 +574,7 @@ pub mod pallet { /// Derive the on-chain `OrderId` as blake2_256 over the SCALE-encoded order. pub fn derive_order_id(order: &VersionedOrder) -> H256 { - H256(sp_core::hashing::blake2_256(&order.encode())) + H256(sp_crypto_hashing::blake2_256(&order.encode())) } /// Account derived from the pallet's `PalletId`. diff --git a/pallets/proxy/src/lib.rs b/pallets/proxy/src/lib.rs index 1fca855327..6b31232522 100644 --- a/pallets/proxy/src/lib.rs +++ b/pallets/proxy/src/lib.rs @@ -66,7 +66,7 @@ type AccountIdLookupOf = <::Lookup as StaticLookup PartialEq, Ord, PartialOrd, - RuntimeDebug, + Debug, MaxEncodedLen, TypeInfo, )] @@ -82,7 +82,7 @@ pub struct ProxyDefinition { } /// Details surrounding a specific instance of an announcement to make a call. -#[derive(Encode, Decode, Clone, Copy, Eq, PartialEq, RuntimeDebug, MaxEncodedLen, TypeInfo)] +#[derive(Encode, Decode, Clone, Copy, Eq, PartialEq, Debug, MaxEncodedLen, TypeInfo)] #[freeze_struct("4c1b5c8c3bc489ad")] pub struct Announcement { /// The account which made the announcement. @@ -101,7 +101,7 @@ pub struct Announcement { Copy, Eq, PartialEq, - RuntimeDebug, + Debug, MaxEncodedLen, TypeInfo, DecodeWithMemTracking, diff --git a/pallets/proxy/src/tests.rs b/pallets/proxy/src/tests.rs index 5bc5be2415..510da7943e 100644 --- a/pallets/proxy/src/tests.rs +++ b/pallets/proxy/src/tests.rs @@ -69,20 +69,17 @@ impl pallet_utility::Config for Test { Encode, Decode, DecodeWithMemTracking, - RuntimeDebug, + Debug, + Default, MaxEncodedLen, scale_info::TypeInfo, )] pub enum ProxyType { + #[default] Any, JustTransfer, JustUtility, } -impl Default for ProxyType { - fn default() -> Self { - Self::Any - } -} impl frame::traits::InstanceFilter for ProxyType { fn filter(&self, c: &RuntimeCall) -> bool { match self { diff --git a/pallets/shield/src/lib.rs b/pallets/shield/src/lib.rs index f96374590e..098f03291e 100644 --- a/pallets/shield/src/lib.rs +++ b/pallets/shield/src/lib.rs @@ -3,7 +3,6 @@ extern crate alloc; -use alloc::vec; use chacha20poly1305::{ KeyInit, XChaCha20Poly1305, XNonce, aead::{Aead, Payload}, @@ -19,8 +18,9 @@ use ml_kem::{ kem::{Decapsulate, DecapsulationKey}, }; use sp_io::hashing::twox_128; -use sp_runtime::traits::{Applyable, Block as BlockT, Checkable, Hash}; -use sp_runtime::traits::{Dispatchable, Saturating}; +use sp_runtime::traits::{ + Block as BlockT, Checkable, Dispatchable, ExtrinsicCall, Hash, Saturating, +}; use stp_shield::{ INHERENT_IDENTIFIER, InherentType, LOG_TARGET, MLKEM768_ENC_KEY_LEN, ShieldEncKey, ShieldedTransaction, @@ -48,9 +48,6 @@ pub use extension::CheckShieldedTxValidity; type MigrationKeyMaxLen = ConstU32<128>; type ExtrinsicOf = ::Extrinsic; -type CheckedOf = >::Checked; -type ApplyableCallOf = ::Call; - const MAX_EXTRINSIC_DEPTH: u32 = 8; /// Weight for `store_encrypted`, intentionally set higher than the benchmark @@ -581,9 +578,8 @@ impl Pallet { uxt: ExtrinsicOf, ) -> Option where - Block::Extrinsic: Checkable, - CheckedOf: Applyable, - ApplyableCallOf>: IsSubType>, + Block::Extrinsic: Checkable + ExtrinsicCall, + ::Call: IsSubType>, { // Prevent stack overflows by limiting the depth of the extrinsic. let encoded = uxt.encode(); @@ -596,20 +592,21 @@ impl Pallet { ) .ok()?; - // Verify that the signature is correct. - let xt = ExtrinsicOf::::check(uxt, &Context::default()) + let Some(Call::submit_encrypted { ciphertext }) = + IsSubType::>::is_sub_type(ExtrinsicCall::call(&uxt)) + else { + return None; + }; + let shielded = ShieldedTransaction::parse(ciphertext)?; + + // Verify that the signature is correct before accepting the parsed transaction. + ExtrinsicOf::::check(uxt, &Context::default()) .inspect_err( |e| log::debug!(target: LOG_TARGET, "Failed to check shielded extrinsic: {:?}", e), ) .ok()?; - let call = xt.call(); - - let Some(Call::submit_encrypted { ciphertext }) = IsSubType::>::is_sub_type(call) - else { - return None; - }; - ShieldedTransaction::parse(ciphertext) + Some(shielded) } pub fn is_shielded_using_current_key(key_hash: &[u8; 16]) -> bool { diff --git a/pallets/shield/src/mock.rs b/pallets/shield/src/mock.rs index 1bb6fa018a..5f0cc9cf35 100644 --- a/pallets/shield/src/mock.rs +++ b/pallets/shield/src/mock.rs @@ -71,9 +71,10 @@ impl pallet_shield::FindAuthors for MockFindAuthors { fn find_current_author() -> Option { // Thread-local override (unit tests) → Aura fallback (benchmarks). MOCK_CURRENT.with(|c| c.borrow().clone()).or_else(|| { - let slot = Aura::current_slot_from_digests()?; + let slot = pallet_aura::CurrentSlot::::get(); let auths = pallet_aura::Authorities::::get().into_inner(); - auths.get(*slot as usize % auths.len()).cloned() + let index = (*slot as usize).checked_rem(auths.len())?; + auths.get(index).cloned() }) } @@ -81,9 +82,10 @@ impl pallet_shield::FindAuthors for MockFindAuthors { if let Some(val) = MOCK_NEXT_NEXT.with(|n| n.borrow().clone()) { return val; } - let slot = Aura::current_slot_from_digests()?.checked_add(2)?; + let slot = pallet_aura::CurrentSlot::::get().checked_add(2)?; let auths = pallet_aura::Authorities::::get().into_inner(); - auths.get(slot as usize % auths.len()).cloned() + let index = (slot as usize).checked_rem(auths.len())?; + auths.get(index).cloned() } } diff --git a/pallets/subtensor/Cargo.toml b/pallets/subtensor/Cargo.toml index c8bc220ad6..7ca07a8b4b 100644 --- a/pallets/subtensor/Cargo.toml +++ b/pallets/subtensor/Cargo.toml @@ -19,6 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"] subtensor-macros.workspace = true codec = { workspace = true, features = ["derive"] } sp-core.workspace = true +sp-crypto-hashing.workspace = true pallet-balances.workspace = true scale-info = { workspace = true, features = ["derive"] } frame-benchmarking = { workspace = true, optional = true } @@ -109,6 +110,7 @@ std = [ "pallet-transaction-payment/std", "runtime-common/std", "sp-core/std", + "sp-crypto-hashing/std", "sp-io/std", "sp-runtime/std", "sp-std/std", diff --git a/pallets/subtensor/src/benchmarks.rs b/pallets/subtensor/src/benchmarks.rs index 30a50a774b..bef62ecf38 100644 --- a/pallets/subtensor/src/benchmarks.rs +++ b/pallets/subtensor/src/benchmarks.rs @@ -1,5 +1,9 @@ //! Subtensor pallet benchmarking. -#![allow(clippy::arithmetic_side_effects, clippy::unwrap_used)] +#![allow( + clippy::arithmetic_side_effects, + clippy::expect_used, + clippy::unwrap_used +)] #![cfg(feature = "runtime-benchmarks")] use crate::Pallet as Subtensor; diff --git a/pallets/subtensor/src/guards/check_evm_key_association.rs b/pallets/subtensor/src/guards/check_evm_key_association.rs index d9b69e1a7d..e4f5d408fd 100644 --- a/pallets/subtensor/src/guards/check_evm_key_association.rs +++ b/pallets/subtensor/src/guards/check_evm_key_association.rs @@ -77,7 +77,8 @@ mod tests { weights::Weight, }; use frame_system::Call as SystemCall; - use sp_core::{H160, Pair, U256, ecdsa, keccak_256}; + use sp_core::{H160, Pair, U256, ecdsa}; + use sp_crypto_hashing::keccak_256; use sp_runtime::DispatchError; use subtensor_runtime_common::NetUid; diff --git a/pallets/subtensor/src/subnets/dissolution.rs b/pallets/subtensor/src/subnets/dissolution.rs index da0eff1d9d..50b4dfa944 100644 --- a/pallets/subtensor/src/subnets/dissolution.rs +++ b/pallets/subtensor/src/subnets/dissolution.rs @@ -3,9 +3,10 @@ use frame_support::weights::WeightMeter; use subtensor_runtime_common::{NetUid, NetUidStorageIndex, clear_prefix_with_meter}; use subtensor_swap_interface::SwapHandler; /// Enum for the dissolve cleanup phase. -#[derive(Encode, Decode, TypeInfo, Clone, PartialEq, Eq, Debug, DecodeWithMemTracking)] +#[derive(Default, Encode, Decode, TypeInfo, Clone, PartialEq, Eq, Debug, DecodeWithMemTracking)] pub enum DissolveCleanupPhase { /// Phase 1.1: Remove root dividend claimable entries for the subnet. + #[default] SubnetRootDividendsRootClaimable, /// Phase 1.2: Remove root dividend claimed entries for the subnet. SubnetRootDividendsRootClaimed, @@ -53,12 +54,6 @@ pub enum DissolveCleanupPhase { NetworkDecayingLock, } -impl Default for DissolveCleanupPhase { - fn default() -> Self { - Self::SubnetRootDividendsRootClaimable - } -} - #[crate::freeze_struct("c524ea54893ae91a")] #[derive(Encode, Decode, TypeInfo, Clone, PartialEq, Eq, Debug, DecodeWithMemTracking)] pub struct DissolveCleanupStatus { diff --git a/pallets/subtensor/src/subnets/leasing.rs b/pallets/subtensor/src/subnets/leasing.rs index 3aa08b6db1..1dfa1b6755 100644 --- a/pallets/subtensor/src/subnets/leasing.rs +++ b/pallets/subtensor/src/subnets/leasing.rs @@ -23,7 +23,7 @@ use frame_support::{ }; use frame_system::pallet_prelude::OriginFor; use frame_system::pallet_prelude::*; -use sp_core::blake2_256; +use sp_crypto_hashing::blake2_256; use sp_runtime::{Percent, traits::TrailingZeroInput}; use substrate_fixed::types::U64F64; use subtensor_runtime_common::{AlphaBalance, NetUid}; @@ -35,8 +35,8 @@ pub type CurrencyOf = ::Currency; pub type BalanceOf = as fungible::Inspect<::AccountId>>::Balance; -#[freeze_struct("8cc3d0594faed7dd")] -#[derive(Encode, Decode, Eq, PartialEq, Ord, PartialOrd, RuntimeDebug, TypeInfo)] +#[freeze_struct("9d744b7d73e5932b")] +#[derive(Encode, Decode, Eq, PartialEq, Ord, PartialOrd, Debug, TypeInfo)] pub struct SubnetLease { /// The beneficiary of the lease, able to operate the subnet through /// a proxy and taking ownership of the subnet at the end of the lease (if defined). diff --git a/pallets/subtensor/src/subnets/registration.rs b/pallets/subtensor/src/subnets/registration.rs index 664d5759b7..e976e69fcd 100644 --- a/pallets/subtensor/src/subnets/registration.rs +++ b/pallets/subtensor/src/subnets/registration.rs @@ -373,8 +373,7 @@ impl Pallet { pub fn get_block_hash_from_u64(block_number: u64) -> H256 { let block_number: BlockNumberFor = TryInto::>::try_into(block_number) - .ok() - .expect("convert u64 to block number."); + .unwrap_or_else(|_| panic!("convert u64 to block number.")); let block_hash_at_number: ::Hash = system::Pallet::::block_hash(block_number); let vec_hash: Vec = block_hash_at_number.as_ref().to_vec(); diff --git a/pallets/subtensor/src/tests/claim_root.rs b/pallets/subtensor/src/tests/claim_root.rs index bc756f50a0..990a07671c 100644 --- a/pallets/subtensor/src/tests/claim_root.rs +++ b/pallets/subtensor/src/tests/claim_root.rs @@ -948,12 +948,15 @@ fn test_claim_root_block_hash_indices() { let n = 15000u64; // 0 - let indices = - SubtensorModule::block_hash_to_indices(H256(sp_core::keccak_256(b"zero")), 0, n); + let indices = SubtensorModule::block_hash_to_indices( + H256(sp_crypto_hashing::keccak_256(b"zero")), + 0, + n, + ); assert!(indices.is_empty()); // 1 - let hash = sp_core::keccak_256(b"some"); + let hash = sp_crypto_hashing::keccak_256(b"some"); let mut indices = SubtensorModule::block_hash_to_indices(H256(hash), k, n); indices.sort(); @@ -967,7 +970,7 @@ fn test_claim_root_block_hash_indices() { assert_eq!(indices, expected_result); // 2 - let hash = sp_core::keccak_256(b"some2"); + let hash = sp_crypto_hashing::keccak_256(b"some2"); let mut indices = SubtensorModule::block_hash_to_indices(H256(hash), k, n); indices.sort(); diff --git a/pallets/subtensor/src/tests/consensus.rs b/pallets/subtensor/src/tests/consensus.rs index 495633d131..b99b145977 100644 --- a/pallets/subtensor/src/tests/consensus.rs +++ b/pallets/subtensor/src/tests/consensus.rs @@ -107,7 +107,7 @@ fn distribute_nodes( (validators, servers) = (0..network_n as u16) .collect::>() .iter() - .partition(|&i| *i as usize % (network_n / validators_n) == 0); + .partition(|&i| (*i as usize).is_multiple_of(network_n / validators_n)); } else if interleave == 2 { // random interleaving let mut permuted_uids: Vec = (0..network_n as u16).collect(); diff --git a/pallets/subtensor/src/tests/epoch.rs b/pallets/subtensor/src/tests/epoch.rs index b0383521a8..049d98b40e 100644 --- a/pallets/subtensor/src/tests/epoch.rs +++ b/pallets/subtensor/src/tests/epoch.rs @@ -100,7 +100,7 @@ fn distribute_nodes( (validators, servers) = (0..network_n as u16) .collect::>() .iter() - .partition(|&i| *i as usize % (network_n / validators_n) == 0); + .partition(|&i| (*i as usize).is_multiple_of(network_n / validators_n)); } else if interleave == 2 { // random interleaving let mut permuted_uids: Vec = (0..network_n as u16).collect(); @@ -1490,8 +1490,8 @@ fn test_active_stake() { SubtensorModule::get_emission_for_uid(netuid, 0), 274999999.into() ); // Note E = 0.5 * 0.55 * 1_000_000_000 = 275_000_000 (discrepancy) - for server in ((n / 2) as usize)..n as usize { - assert_eq!(bonds[0][server], I32F32::from_num(65_535)); // floor(0.55*(2^16-1))/(2^16-1), then max-upscale + for bond in bonds[0].iter().take(n as usize).skip((n / 2) as usize) { + assert_eq!(*bond, I32F32::from_num(65_535)); // floor(0.55*(2^16-1))/(2^16-1), then max-upscale } for validator in 1..(n / 2) { assert_eq!( @@ -1502,8 +1502,12 @@ fn test_active_stake() { SubtensorModule::get_emission_for_uid(netuid, validator), 224999999.into() ); // Note E = 0.5 * 0.45 * 1_000_000_000 = 225_000_000 (discrepancy) - for server in ((n / 2) as usize)..n as usize { - assert_eq!(bonds[validator as usize][server], I32F32::from_num(53619)); + for bond in bonds[validator as usize] + .iter() + .take(n as usize) + .skip((n / 2) as usize) + { + assert_eq!(*bond, I32F32::from_num(53619)); // floor(0.45*(2^16-1))/(2^16-1), then max-upscale } } @@ -1554,16 +1558,16 @@ fn test_active_stake() { SubtensorModule::get_emission_for_uid(netuid, 0), 272501132.into() ); // Note E = 0.5 * (0.55 * 0.9 + 0.5 * 0.1) * 1_000_000_000 = 272_500_000 (discrepancy) - for server in ((n / 2) as usize)..n as usize { - assert_eq!(bonds[0][server], I32F32::from_num(65_535)); // floor((0.55 * 0.9 + 0.5 * 0.1)*(2^16-1))/(2^16-1), then max-upscale + for bond in bonds[0].iter().take(n as usize).skip((n / 2) as usize) { + assert_eq!(*bond, I32F32::from_num(65_535)); // floor((0.55 * 0.9 + 0.5 * 0.1)*(2^16-1))/(2^16-1), then max-upscale } assert_eq!(SubtensorModule::get_dividends_for_uid(netuid, 1), 29818); // Note D = floor((0.45 * 0.9 + 0.5 * 0.1) * 65_535) assert_eq!( SubtensorModule::get_emission_for_uid(netuid, 1), 227498866.into() ); // Note E = 0.5 * (0.45 * 0.9 + 0.5 * 0.1) * 1_000_000_000 = 227_500_000 (discrepancy) - for server in ((n / 2) as usize)..n as usize { - assert_eq!(bonds[1][server], I32F32::from_num(54712)); // floor((0.45 * 0.9 + 0.5 * 0.1)/(0.55 * 0.9 + 0.5 * 0.1)*(2^16-1)) + for bond in bonds[1].iter().take(n as usize).skip((n / 2) as usize) { + assert_eq!(*bond, I32F32::from_num(54712)); // floor((0.45 * 0.9 + 0.5 * 0.1)/(0.55 * 0.9 + 0.5 * 0.1)*(2^16-1)) } }); } diff --git a/pallets/subtensor/src/tests/evm.rs b/pallets/subtensor/src/tests/evm.rs index d2e98779d4..db1ce2e863 100644 --- a/pallets/subtensor/src/tests/evm.rs +++ b/pallets/subtensor/src/tests/evm.rs @@ -8,13 +8,12 @@ use super::mock::*; use crate::*; use frame_support::testing_prelude::*; -use sp_core::{H160, Pair, U256, blake2_256, ecdsa, keccak_256}; +use sp_core::{H160, Pair, U256, ecdsa}; +use sp_crypto_hashing::{blake2_256, keccak_256}; use std::convert::AsRef; fn public_to_evm_key(pubkey: &ecdsa::Public) -> H160 { use libsecp256k1::PublicKey; - use sp_core::keccak_256; - let secp_pub = PublicKey::parse_compressed(&pubkey.0).expect("Invalid pubkey"); let uncompressed = secp_pub.serialize(); // 65 bytes: 0x04 + X + Y let hash = keccak_256(&uncompressed[1..]); // drop 0x04 diff --git a/pallets/subtensor/src/tests/leasing.rs b/pallets/subtensor/src/tests/leasing.rs index 0bc00d139d..2b54f37cdf 100644 --- a/pallets/subtensor/src/tests/leasing.rs +++ b/pallets/subtensor/src/tests/leasing.rs @@ -606,14 +606,12 @@ fn test_distribute_lease_network_dividends_multiple_contributors_works() { .ceil() .to_num::(); assert_eq!(contributor1_alpha_delta, expected_contributor1_alpha.into()); - assert_eq!( - System::events()[3].event, - RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { + assert!(System::events().iter().any(|record| record.event + == RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { lease_id, contributor: contributions[0].0.into(), alpha: expected_contributor1_alpha.into(), - },) - ); + },))); let expected_contributor2_alpha = SubnetLeaseShares::::get(lease_id, contributions[1].0) @@ -621,27 +619,23 @@ fn test_distribute_lease_network_dividends_multiple_contributors_works() { .ceil() .to_num::(); assert_eq!(contributor2_alpha_delta, expected_contributor2_alpha.into()); - assert_eq!( - System::events()[6].event, - RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { + assert!(System::events().iter().any(|record| record.event + == RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { lease_id, contributor: contributions[1].0.into(), alpha: expected_contributor2_alpha.into(), - },) - ); + },))); // The beneficiary should have received the remaining dividends let expected_beneficiary_alpha = distributed_alpha.to_u64() - (expected_contributor1_alpha + expected_contributor2_alpha); assert_eq!(beneficiary_alpha_delta, expected_beneficiary_alpha.into()); - assert_eq!( - System::events()[9].event, - RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { + assert!(System::events().iter().any(|record| record.event + == RuntimeEvent::SubtensorModule(Event::SubnetLeaseDividendsDistributed { lease_id, contributor: beneficiary.into(), alpha: expected_beneficiary_alpha.into(), - },) - ); + },))); // Ensure nothing was accumulated for later distribution assert_eq!( diff --git a/pallets/subtensor/src/tests/math.rs b/pallets/subtensor/src/tests/math.rs index 6591d975b0..6784f6cc8c 100644 --- a/pallets/subtensor/src/tests/math.rs +++ b/pallets/subtensor/src/tests/math.rs @@ -365,7 +365,7 @@ fn test_math_vec_to_fixed() { // Reshape vector to matrix with specified number of rows, cast to I32F32. pub fn vec_to_mat_fixed(vector: &[f32], rows: usize, transpose: bool) -> Vec> { assert!( - vector.len() % rows == 0, + vector.len().is_multiple_of(rows), "Vector of len {:?} cannot reshape to {rows} rows.", vector.len() ); @@ -418,7 +418,7 @@ fn vec_to_sparse_mat_fixed( transpose: bool, ) -> Vec> { assert!( - vector.len() % rows == 0, + vector.len().is_multiple_of(rows), "Vector of len {:?} cannot reshape to {rows} rows.", vector.len() ); diff --git a/pallets/subtensor/src/tests/mock.rs b/pallets/subtensor/src/tests/mock.rs index 8f0f7b5e04..99e9a0532d 100644 --- a/pallets/subtensor/src/tests/mock.rs +++ b/pallets/subtensor/src/tests/mock.rs @@ -624,7 +624,8 @@ impl frame_system::offchain::SigningTypes for Test { type Signature = test_crypto::Signature; } -pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; +type TxExtension = frame_system::AuthorizeCall; +pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; impl frame_system::offchain::CreateTransactionBase for Test where @@ -634,6 +635,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/pallets/subtensor/src/tests/mock_high_ed.rs b/pallets/subtensor/src/tests/mock_high_ed.rs index 94c7d2ad26..8016e7d20f 100644 --- a/pallets/subtensor/src/tests/mock_high_ed.rs +++ b/pallets/subtensor/src/tests/mock_high_ed.rs @@ -503,7 +503,8 @@ impl frame_system::offchain::SigningTypes for Test { type Signature = test_crypto::Signature; } -pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; +type TxExtension = frame_system::AuthorizeCall; +pub type UncheckedExtrinsic = sp_runtime::testing::TestXt; impl frame_system::offchain::CreateTransactionBase for Test where @@ -513,6 +514,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/pallets/subtensor/src/tests/networks.rs b/pallets/subtensor/src/tests/networks.rs index a1af973eb6..49ccbb08aa 100644 --- a/pallets/subtensor/src/tests/networks.rs +++ b/pallets/subtensor/src/tests/networks.rs @@ -228,15 +228,7 @@ fn dissolve_two_stakers_pro_rata_distribution() { let prod2 = (a2 as u128) * (pot as u128); let share1 = (prod1 / total) as u64; let share2 = (prod2 / total) as u64; - let mut distributed = share1 + share2; let mut rem = [(s1_cold, prod1 % total), (s2_cold, prod2 % total)]; - if distributed < pot { - rem.sort_by_key(|&(_c, r)| core::cmp::Reverse(r)); - let leftover = pot - distributed; - for _ in 0..leftover as usize { - distributed += 1; - } - } // Recompute exact expected shares using the same logic let mut expected1 = share1; let mut expected2 = share2; diff --git a/pallets/subtensor/src/tests/swap_coldkey.rs b/pallets/subtensor/src/tests/swap_coldkey.rs index 3fa2b2e073..fb1817f72a 100644 --- a/pallets/subtensor/src/tests/swap_coldkey.rs +++ b/pallets/subtensor/src/tests/swap_coldkey.rs @@ -10,7 +10,6 @@ use approx::assert_abs_diff_eq; use codec::Encode; use frame_support::dispatch::{DispatchInfo, GetDispatchInfo}; -use frame_support::error::BadOrigin; use frame_support::traits::OnInitialize; use frame_support::traits::schedule::DispatchTime; use frame_support::traits::schedule::v3::Named as ScheduleNamed; @@ -19,6 +18,7 @@ use frame_system::{Config, RawOrigin}; use share_pool::SafeFloat; use sp_core::{Get, H256, U256}; use sp_runtime::PerU16; +use sp_runtime::traits::BadOrigin; use sp_runtime::traits::Hash; use sp_runtime::traits::{DispatchInfoOf, DispatchTransaction, TransactionExtension}; use sp_runtime::{DispatchError, traits::TxBaseImplication}; diff --git a/pallets/subtensor/src/utils/evm.rs b/pallets/subtensor/src/utils/evm.rs index d01654a044..8e3ce1164a 100644 --- a/pallets/subtensor/src/utils/evm.rs +++ b/pallets/subtensor/src/utils/evm.rs @@ -3,7 +3,8 @@ use alloc::string::ToString; use frame_support::ensure; use frame_system::ensure_signed; -use sp_core::{H160, ecdsa::Signature, hashing::keccak_256}; +use sp_core::{H160, ecdsa::Signature}; +use sp_crypto_hashing::keccak_256; use sp_std::collections::btree_map::BTreeMap; use sp_std::vec::Vec; use subtensor_runtime_common::NetUid; diff --git a/pallets/subtensor/src/utils/misc.rs b/pallets/subtensor/src/utils/misc.rs index 4300f1a806..4c4512abf3 100644 --- a/pallets/subtensor/src/utils/misc.rs +++ b/pallets/subtensor/src/utils/misc.rs @@ -157,8 +157,7 @@ impl Pallet { // ======================== pub fn get_current_block_as_u64() -> u64 { TryInto::try_into(>::block_number()) - .ok() - .expect("blockchain will not exceed 2^64 blocks; QED.") + .unwrap_or_else(|_| panic!("blockchain will not exceed 2^64 blocks; QED.")) } // ============================== diff --git a/pallets/swap/src/pallet/balancer.rs b/pallets/swap/src/pallet/balancer.rs index 244e4ff9eb..b9f5843326 100644 --- a/pallets/swap/src/pallet/balancer.rs +++ b/pallets/swap/src/pallet/balancer.rs @@ -61,8 +61,8 @@ use subtensor_macros::freeze_struct; /// - ∆y: Tao paid in/out /// - w1: Base weight (a.k.a weight_base) /// - w2: Quote weight (a.k.a weight_quote) -#[freeze_struct("33a4fb0774da77c7")] -#[derive(Clone, Encode, Decode, PartialEq, Eq, RuntimeDebug, TypeInfo, MaxEncodedLen)] +#[freeze_struct("28380267604295c9")] +#[derive(Clone, Encode, Decode, PartialEq, Eq, Debug, TypeInfo, MaxEncodedLen)] pub struct Balancer { quote: Perquintill, } @@ -1005,7 +1005,7 @@ mod tests { // Print progress let done = counter.fetch_add(1, Ordering::Relaxed) + 1; - if done % 10_000_000 == 0 { + if done.is_multiple_of(10_000_000) { let progress = done as f64 / ITERATIONS as f64 * 100.0; // Replace with println for real-time progress log::debug!("progress = {progress:.4}%"); diff --git a/pallets/swap/src/pallet/mod.rs b/pallets/swap/src/pallet/mod.rs index 9cb5e9c4e9..af0ce6fe2a 100644 --- a/pallets/swap/src/pallet/mod.rs +++ b/pallets/swap/src/pallet/mod.rs @@ -291,7 +291,7 @@ mod pallet { pub struct TickIndex(i32); /// Struct representing a liquidity position ID, DEPRECATED -#[freeze_struct("e695cd6455c3f0cb")] +#[freeze_struct("c8df1b174a78d321")] #[derive( Clone, Copy, @@ -302,7 +302,7 @@ pub struct TickIndex(i32); Eq, MaxEncodedLen, PartialEq, - RuntimeDebug, + Debug, TypeInfo, )] pub struct PositionId(u128); diff --git a/pallets/transaction-fee/src/lib.rs b/pallets/transaction-fee/src/lib.rs index 918d9cd319..4aa9b2b14f 100644 --- a/pallets/transaction-fee/src/lib.rs +++ b/pallets/transaction-fee/src/lib.rs @@ -6,10 +6,7 @@ use frame_support::{ storage::{TransactionOutcome, with_transaction}, traits::{ Imbalance, IsSubType, OnUnbalanced, - fungible::{ - Balanced, Credit, Debt, DecreaseIssuance, Imbalance as FungibleImbalance, - IncreaseIssuance, Inspect, - }, + fungible::{Balanced, Credit, Debt, Inspect}, tokens::{Precision, WithdrawConsequence}, }, weights::{WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial}, @@ -27,8 +24,7 @@ use sp_runtime::{ // Pallets use pallet_subtensor::Call as SubtensorCall; -use pallet_transaction_payment::Config as PTPConfig; -use pallet_transaction_payment::OnChargeTransaction; +use pallet_transaction_payment::{Config as PTPConfig, OnChargeTransaction, TxCreditHold}; use subtensor_swap_interface::SwapHandler; // Misc @@ -89,11 +85,7 @@ impl Default for TransactionFeeHandler { } } -type BalancesImbalanceOf = FungibleImbalance< - ::Balance, - DecreaseIssuance, pallet_balances::Pallet>, - IncreaseIssuance, pallet_balances::Pallet>, ->; +type BalancesImbalanceOf = Credit, pallet_balances::Pallet>; impl OnUnbalanced> for TransactionFeeHandler where @@ -242,6 +234,12 @@ pub enum WithdrawnFee>> { /// pub struct SubtensorTxFeeHandler(PhantomData<(F, OU)>); +impl TxCreditHold for SubtensorTxFeeHandler { + // This custom adapter keeps its withdrawn fee in `LiquidityInfo` and does not expose a + // transaction-fee credit to other pallets. + type Credit = (); +} + pub struct SubtensorEvmFeeHandler(PhantomData<(F, OU)>); /// This implementation contains the list of calls that require paying transaction diff --git a/pallets/transaction-fee/src/tests/mock.rs b/pallets/transaction-fee/src/tests/mock.rs index 98ff259495..a8709d1d10 100644 --- a/pallets/transaction-fee/src/tests/mock.rs +++ b/pallets/transaction-fee/src/tests/mock.rs @@ -82,6 +82,7 @@ pub type BlockNumber = u64; pub type TestAuthId = test_crypto::TestAuthId; pub type TransactionExtensions = ( + frame_system::AuthorizeCall, frame_system::CheckNonZeroSender, frame_system::CheckWeight, pallet_transaction_payment::ChargeTransactionPayment, @@ -534,6 +535,31 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Test +where + RuntimeCall: From, +{ + type Extension = TransactionExtensions; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Test +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + ( + frame_system::AuthorizeCall::::new(), + frame_system::CheckNonZeroSender::::new(), + frame_system::CheckWeight::::new(), + pallet_transaction_payment::ChargeTransactionPayment::::from(0.into()), + ) + } +} + impl frame_system::offchain::CreateBare for Test where RuntimeCall: From, diff --git a/pallets/utility/src/tests.rs b/pallets/utility/src/tests.rs index 14020ec8bf..6805ce9d75 100644 --- a/pallets/utility/src/tests.rs +++ b/pallets/utility/src/tests.rs @@ -39,6 +39,7 @@ use sp_runtime::{ traits::{BadOrigin, Dispatchable}, }; +#[allow(dead_code)] type BlockNumber = u64; // example module to test behaviors. diff --git a/precompiles/Cargo.toml b/precompiles/Cargo.toml index 4c1b924ed9..5dea521e9c 100644 --- a/precompiles/Cargo.toml +++ b/precompiles/Cargo.toml @@ -29,6 +29,7 @@ pallet-subtensor-proxy.workspace = true precompile-utils.workspace = true scale-info.workspace = true sp-core.workspace = true +sp-crypto-hashing.workspace = true sp-io.workspace = true sp-runtime.workspace = true sp-std.workspace = true @@ -75,6 +76,7 @@ std = [ "precompile-utils/std", "scale-info/std", "sp-core/std", + "sp-crypto-hashing/std", "sp-io/std", "sp-runtime/std", "sp-std/std", diff --git a/precompiles/src/extensions.rs b/precompiles/src/extensions.rs index 984b70a91b..85a5b29ed9 100644 --- a/precompiles/src/extensions.rs +++ b/precompiles/src/extensions.rs @@ -11,7 +11,8 @@ use pallet_evm::{ }; use precompile_utils::EvmResult; use precompile_utils::prelude::RuntimeHelper; -use sp_core::{H160, U256, blake2_256}; +use sp_core::{H160, U256}; +use sp_crypto_hashing::blake2_256; use sp_runtime::traits::{Dispatchable, ExtensionPostDispatchWeightHandler}; use sp_std::vec::Vec; use subtensor_runtime_common::with_evm_context; diff --git a/precompiles/src/mock.rs b/precompiles/src/mock.rs index 0b0894d397..2192801ffd 100644 --- a/precompiles/src/mock.rs +++ b/precompiles/src/mock.rs @@ -20,7 +20,7 @@ use precompile_utils::testing::MockHandle; use scale_info::TypeInfo; use sp_core::{ConstU64, H160, H256, U256, crypto::AccountId32}; use sp_runtime::{ - BuildStorage, KeyTypeId, Perbill, Percent, RuntimeDebug, + BuildStorage, Debug, KeyTypeId, Perbill, Percent, testing::TestXt, traits::{BlakeTwo256, ConstU32, IdentityLookup}, }; @@ -31,7 +31,8 @@ use crate::PrecompileExt; pub(crate) type AccountId = AccountId32; pub(crate) type Block = frame_system::mocking::MockBlock; -pub(crate) type UncheckedExtrinsic = TestXt; +type TxExtension = frame_system::AuthorizeCall; +pub(crate) type UncheckedExtrinsic = TestXt; #[derive( Encode, @@ -45,7 +46,7 @@ pub(crate) type UncheckedExtrinsic = TestXt; PartialOrd, MaxEncodedLen, TypeInfo, - RuntimeDebug, + Debug, )] pub enum TestBalanceStatus { Test, @@ -414,6 +415,26 @@ where type RuntimeCall = RuntimeCall; } +impl frame_system::offchain::CreateTransaction for Runtime +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + UncheckedExtrinsic::new_transaction(call, extension) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Runtime +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + TxExtension::new() + } +} + impl frame_system::offchain::CreateBare for Runtime where RuntimeCall: From, diff --git a/primitives/share-pool/src/lib.rs b/primitives/share-pool/src/lib.rs index 848ee64448..1900f57cb8 100644 --- a/primitives/share-pool/src/lib.rs +++ b/primitives/share-pool/src/lib.rs @@ -1431,7 +1431,7 @@ mod tests { } let done_outer = checked.load(Ordering::Relaxed); - if done_outer % progress_step == 0 { + if done_outer.is_multiple_of(progress_step) { let invalid = skipped_invalid_sf.load(Ordering::Relaxed); let non_finite = skipped_non_finite.load(Ordering::Relaxed); log::debug!( @@ -1621,7 +1621,7 @@ mod tests { } let done = done_counter.fetch_add(1, Ordering::Relaxed) + 1; - if done % 10_000 == 0 { + if done.is_multiple_of(10_000) { let progress = done as f64 / total_cases as f64 * 100.0; log::debug!("div progress = {progress:.4}%"); } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index a94518b140..a8d9db2fda 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -307,6 +307,7 @@ runtime-benchmarks = [ "pallet-crowdloan/runtime-benchmarks", "runtime-common/runtime-benchmarks", "pallet-babe/runtime-benchmarks", + "pallet-session/runtime-benchmarks", "pallet-staking/runtime-benchmarks", "pallet-election-provider-multi-phase/runtime-benchmarks", "frame-election-provider-support/runtime-benchmarks", diff --git a/runtime/src/check_nonce.rs b/runtime/src/check_nonce.rs index 7ec9488d0d..59b15ee899 100644 --- a/runtime/src/check_nonce.rs +++ b/runtime/src/check_nonce.rs @@ -3,7 +3,7 @@ use codec::{Decode, DecodeWithMemTracking, Encode}; use frame_support::{ - RuntimeDebugNoBound, + DebugNoBound, dispatch::{DispatchInfo, Pays}, traits::Get, }; @@ -60,7 +60,7 @@ impl sp_std::fmt::Debug for CheckNonce { } /// Operation to perform from `validate` to `prepare` in [`CheckNonce`] transaction extension. -#[derive(RuntimeDebugNoBound)] +#[derive(DebugNoBound)] pub enum Val { /// Account and its nonce to check for. CheckNonce((T::AccountId, T::Nonce)), @@ -70,7 +70,7 @@ pub enum Val { /// Operation to perform from `prepare` to `post_dispatch_details` in [`CheckNonce`] transaction /// extension. -#[derive(RuntimeDebugNoBound)] +#[derive(DebugNoBound)] pub enum Pre { /// The transaction extension weight should not be refunded. NonceChecked, diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index e4e3a1a35b..df560c0e31 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -135,7 +135,7 @@ impl frame_system::offchain::SigningTypes for Runtime { pub struct FindAuraAuthors; impl pallet_shield::FindAuthors for FindAuraAuthors { fn find_current_author() -> Option { - let slot = Aura::current_slot_from_digests()?; + let slot = pallet_aura::CurrentSlot::::get(); let authorities = pallet_aura::Authorities::::get().into_inner(); let author_index = *slot % authorities.len() as u64; @@ -143,7 +143,7 @@ impl pallet_shield::FindAuthors for FindAuraAuthors { } fn find_next_next_author() -> Option { - let slot = Aura::current_slot_from_digests()?.checked_add(2)?; + let slot = pallet_aura::CurrentSlot::::get().checked_add(2)?; let authorities = pallet_aura::Authorities::::get().into_inner(); let author_index = slot % authorities.len() as u64; @@ -178,9 +178,44 @@ where type RuntimeCall = RuntimeCall; } -impl frame_system::offchain::CreateBare> for Runtime { - fn create_bare(call: Self::RuntimeCall) -> Self::Extrinsic { - UncheckedExtrinsic::new_bare(call) +impl frame_system::offchain::CreateTransaction for Runtime +where + RuntimeCall: From, +{ + type Extension = TxExtension; + + fn create_transaction(call: RuntimeCall, extension: Self::Extension) -> Self::Extrinsic { + fp_self_contained::UncheckedExtrinsic(generic::UncheckedExtrinsic::new_transaction( + call, extension, + )) + } +} + +impl frame_system::offchain::CreateAuthorizedTransaction for Runtime +where + RuntimeCall: From, +{ + fn create_extension() -> Self::Extension { + ( + ( + frame_system::AuthorizeCall::::new(), + frame_system::CheckNonZeroSender::::new(), + frame_system::CheckSpecVersion::::new(), + frame_system::CheckTxVersion::::new(), + frame_system::CheckGenesis::::new(), + check_mortality::CheckMortality::::from(generic::Era::Immortal), + check_nonce::CheckNonce::::from(0), + frame_system::CheckWeight::::new(), + ), + ( + ChargeTransactionPaymentWrapper::::new(TaoBalance::new(0)), + SudoTransactionExtension::::new(), + pallet_shield::CheckShieldedTxValidity::::new(), + pallet_subtensor::SubtensorTransactionExtension::::new(), + pallet_drand::drand_priority::DrandPriority::::new(), + ), + frame_metadata_hash_extension::CheckMetadataHash::::new(false), + ) } } @@ -235,7 +270,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 432, + spec_version: 433, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, @@ -265,8 +300,13 @@ parameter_types! { MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, ); - pub BlockLength: frame_system::limits::BlockLength = frame_system::limits::BlockLength - ::max_with_normal_ratio(10 * 1024 * 1024, NORMAL_DISPATCH_RATIO); + pub BlockLength: frame_system::limits::BlockLength = + frame_system::limits::BlockLength::builder() + .max_length(10 * 1024 * 1024) + .modify_max_length_for_class(frame_support::dispatch::DispatchClass::Normal, |max| { + *max = NORMAL_DISPATCH_RATIO * *max; + }) + .build(); pub const SS58Prefix: u8 = 42; } @@ -1464,6 +1504,7 @@ pub type Header = generic::Header; pub type Block = generic::Block; // The extensions to the basic transaction logic. pub type SystemTxExtension = ( + frame_system::AuthorizeCall, frame_system::CheckNonZeroSender, frame_system::CheckSpecVersion, frame_system::CheckTxVersion, @@ -1588,7 +1629,7 @@ impl_runtime_apis! { VERSION } - fn execute_block(block: Block) { + fn execute_block(block: ::LazyBlock) { Executive::execute_block(block); } @@ -1625,7 +1666,7 @@ impl_runtime_apis! { } fn check_inherents( - block: Block, + block: ::LazyBlock, data: sp_inherents::InherentData, ) -> sp_inherents::CheckInherentsResult { data.check_extrinsics(&block) @@ -1688,8 +1729,11 @@ impl_runtime_apis! { } impl sp_session::SessionKeys for Runtime { - fn generate_session_keys(seed: Option>) -> Vec { - opaque::SessionKeys::generate(seed) + fn generate_session_keys( + owner: Vec, + seed: Option>, + ) -> sp_session::OpaqueGeneratedSessionKeys { + opaque::SessionKeys::generate(&owner, seed).into() } fn decode_session_keys( @@ -2174,14 +2218,15 @@ impl_runtime_apis! { #[allow(clippy::expect_used)] fn execute_block( - block: Block, + block: ::LazyBlock, state_root_check: bool, signature_check: bool, - select: frame_try_runtime::TryStateSelect + select: frame_try_runtime::TryStateSelect, ) -> Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. - Executive::try_execute_block(block, state_root_check, signature_check, select).expect("execute-block failed") + Executive::try_execute_block(block, state_root_check, signature_check, select) + .expect("execute-block failed") } } diff --git a/runtime/tests/evm_transaction_fee.rs b/runtime/tests/evm_transaction_fee.rs index 19cab4c77d..e463285587 100644 --- a/runtime/tests/evm_transaction_fee.rs +++ b/runtime/tests/evm_transaction_fee.rs @@ -11,13 +11,12 @@ use subtensor_runtime_common::{AuthorshipInfo, TaoBalance}; fn new_test_ext() -> sp_io::TestExternalities { sp_tracing::try_init_simple(); - let mut ext: sp_io::TestExternalities = RuntimeGenesisConfig { + let ext: sp_io::TestExternalities = RuntimeGenesisConfig { ..Default::default() } .build_storage() .unwrap() .into(); - ext.execute_with(|| frame_system::Pallet::::set_block_number(1)); ext } diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 55003ecad6..e36742661e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "1.89" # rustc 1.89.0 (29483883e 2025-08-04) +channel = "1.93.0" # stable2606 / polkadot-v1.24.0 CI toolchain components = [ "cargo", "clippy", diff --git a/sdk/bittensor-core/Cargo.toml b/sdk/bittensor-core/Cargo.toml index 1a984794be..c43bf0bcfd 100644 --- a/sdk/bittensor-core/Cargo.toml +++ b/sdk/bittensor-core/Cargo.toml @@ -44,6 +44,7 @@ sodiumoxide = { version = "0.2", default-features = false, features = ["std"], o # build for wasm32; without std sp-core swaps in the pure-Rust k256. serde is # needed either way for the ss58 codec. sp-core = { workspace = true, features = ["full_crypto", "serde"] } +sp-crypto-hashing = { workspace = true } zeroize = "1" # timelock (absorbed from bittensor-drand). tle and w3f-bls inherit the diff --git a/sdk/bittensor-core/src/codec/decode.rs b/sdk/bittensor-core/src/codec/decode.rs index f65984d0c2..28bb7632b3 100644 --- a/sdk/bittensor-core/src/codec/decode.rs +++ b/sdk/bittensor-core/src/codec/decode.rs @@ -696,7 +696,7 @@ impl Runtime { ])); } let call_bytes = &cursor.data[start..cursor.offset]; - let call_hash = sp_core::hashing::blake2_256(call_bytes); + let call_hash = sp_crypto_hashing::blake2_256(call_bytes); Ok(Value::record(vec![ ( "call_index".into(), diff --git a/sdk/bittensor-core/src/codec/extrinsic.rs b/sdk/bittensor-core/src/codec/extrinsic.rs index 2323274bca..4101e4ba2c 100644 --- a/sdk/bittensor-core/src/codec/extrinsic.rs +++ b/sdk/bittensor-core/src/codec/extrinsic.rs @@ -6,7 +6,7 @@ #![allow(clippy::indexing_slicing, clippy::arithmetic_side_effects)] use scale_info::{form::PortableForm, TypeDef, Variant}; -use sp_core::hashing::blake2_256; +use sp_crypto_hashing::blake2_256; use crate::codec::decode::{compact_u128, Cursor}; use crate::codec::encode::compact; diff --git a/sdk/bittensor-core/src/codec/storage.rs b/sdk/bittensor-core/src/codec/storage.rs index a7dd8edb34..898910a967 100644 --- a/sdk/bittensor-core/src/codec/storage.rs +++ b/sdk/bittensor-core/src/codec/storage.rs @@ -10,7 +10,7 @@ // checks above them. #![allow(clippy::indexing_slicing)] -use sp_core::hashing::{blake2_128, blake2_256, twox_128, twox_64}; +use sp_crypto_hashing::{blake2_128, blake2_256, twox_128, twox_64}; use crate::codec::decode::Cursor; use crate::codec::value::Value; @@ -27,7 +27,7 @@ pub fn hash_param(hasher: &str, data: &[u8]) -> Result, CoreError> { out.extend_from_slice(data); out } - "Twox256" => sp_core::hashing::twox_256(data).to_vec(), + "Twox256" => sp_crypto_hashing::twox_256(data).to_vec(), "Twox128" => twox_128(data).to_vec(), "Twox64Concat" => { let mut out = twox_64(data).to_vec(); diff --git a/sdk/bittensor-core/src/keys/mod.rs b/sdk/bittensor-core/src/keys/mod.rs index a33bfc49a7..8ac5b91e2f 100644 --- a/sdk/bittensor-core/src/keys/mod.rs +++ b/sdk/bittensor-core/src/keys/mod.rs @@ -70,7 +70,7 @@ pub fn ss58_from_public(public_key: [u8; 32], ss58_format: u16) -> String { }; buf[7 + prefix_len..7 + prefix_len + 32].copy_from_slice(&public_key); let body_end = 7 + prefix_len + 32; - let checksum = sp_core::hashing::blake2_512(&buf[..body_end]); + let checksum = sp_crypto_hashing::blake2_512(&buf[..body_end]); buf[body_end] = checksum[0]; buf[body_end + 1] = checksum[1]; base58::base58_encode(&buf[7..body_end + 2]) diff --git a/sdk/bittensor-core/tests/e2e.rs b/sdk/bittensor-core/tests/e2e.rs index 4f165cea23..ddb3b15645 100644 --- a/sdk/bittensor-core/tests/e2e.rs +++ b/sdk/bittensor-core/tests/e2e.rs @@ -553,7 +553,7 @@ fn test_coldkey_swap_announcement_flow() { assert_success(&funded); let hash = bittensor_core::keys::public_key_from_ss58(&new_cold) - .map(|public| sp_core::hashing::blake2_256(&public)) + .map(|public| sp_crypto_hashing::blake2_256(&public)) .expect("new coldkey public key"); let announce = IntentCall::new( "announce_coldkey_swap", diff --git a/sdk/bittensor-core/tests/e2e_support/mod.rs b/sdk/bittensor-core/tests/e2e_support/mod.rs index 3c74c87722..47c4e21f40 100644 --- a/sdk/bittensor-core/tests/e2e_support/mod.rs +++ b/sdk/bittensor-core/tests/e2e_support/mod.rs @@ -17,7 +17,7 @@ use bittensor_core::codec::Value; use bittensor_core::keys::{public_key_from_ss58, ss58_from_public, Keypair, CRYPTO_SR25519}; use bittensor_core::transaction::{Executor, IntentCall, SignerRole, Spend, Wallet}; use bittensor_core::CoreError; -use sp_core::hashing::blake2_256; +use sp_crypto_hashing::blake2_256; pub const RAO_PER_TAO: u128 = 1_000_000_000; const DEFAULT_IMAGE: &str = "ghcr.io/raofoundation/subtensor-localnet:monorepo-sdk"; diff --git a/sdk/python/bittensor/_generated/calls.py b/sdk/python/bittensor/_generated/calls.py index 231c02371d..75a3080170 100644 --- a/sdk/python/bittensor/_generated/calls.py +++ b/sdk/python/bittensor/_generated/calls.py @@ -1,7 +1,7 @@ """Generated from runtime metadata by codegen. DO NOT EDIT BY HAND. Regenerate with: python -m codegen -Spec version: 432 +Spec version: 433 """ from typing import Any, NamedTuple @@ -669,12 +669,12 @@ class Multisig: @staticmethod def approve_as_multi(threshold: 'u16', other_signatories: 'Any', maybe_timepoint: 'Any', call_hash: 'Any', max_weight: 'Weight') -> Call: - 'Register approval for a dispatch to be made from a deterministic composite account if approved by a total of `threshold - 1` of `other_signatories`. Payment: `DepositBase` will be reserved if this is the first approval, plus `threshold` times `DepositFactor`. It is returned once this dispatch happens or is cancelled. The dispatch origin for this call must be _Signed_. - `threshold`: The total number of approvals for this dispatch before it is executed. - `other_signatories`: The accounts (other than the sender) who can approve this dispatch. May not be empty. - `maybe_timepoint`: If this is the first approval, then this must be `None`. If it is not the first approval, then it must be `Some`, with the timepoint (block number and transaction index) of the first approval transaction. - `call_hash`: The hash of the call to be executed. NOTE: If this is the final approval, you will want to use `as_multi` instead. ## Complexity - `O(S)`. - Up to one balance-reserve or unreserve operation. - One passthrough operation, one insert, both `O(S)` where `S` is the number of signatories. `S` is capped by `MaxSignatories`, with weight being proportional. - One encode & hash, both of complexity `O(S)`. - Up to one binary search and insert (`O(logS + S)`). - I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove. - One event. - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit taken for its lifetime of `DepositBase + threshold * DepositFactor`.' + 'Register approval for a dispatch to be made from a deterministic composite account if approved by a total of `threshold - 1` of `other_signatories`. **This function will NEVER execute the call, even if the approval threshold is reached.** It only registers approval. To actually execute the call, `as_multi` must be called with the full call data by any of the signatories. This function is more efficient than `as_multi` for intermediate approvals since it only requires the call hash, not the full call data. Payment: `DepositBase` will be reserved if this is the first approval, plus `threshold` times `DepositFactor`. It is returned once this dispatch happens or is cancelled. The dispatch origin for this call must be _Signed_. - `threshold`: The total number of approvals for this dispatch before it is executed. - `other_signatories`: The accounts (other than the sender) who can approve this dispatch. May not be empty. - `maybe_timepoint`: If this is the first approval, then this must be `None`. If it is not the first approval, then it must be `Some`, with the timepoint (block number and transaction index) of the first approval transaction. - `call_hash`: The hash of the call to be executed. NOTE: To execute the call after approvals are gathered, any signatory must call `as_multi` with the full call data. This function cannot execute the call. ## Complexity - `O(S)`. - Up to one balance-reserve or unreserve operation. - One passthrough operation, one insert, both `O(S)` where `S` is the number of signatories. `S` is capped by `MaxSignatories`, with weight being proportional. - One encode & hash, both of complexity `O(S)`. - Up to one binary search and insert (`O(logS + S)`). - I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove. - One event. - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit taken for its lifetime of `DepositBase + threshold * DepositFactor`.' return Call('Multisig', 'approve_as_multi', {'threshold': threshold, 'other_signatories': other_signatories, 'maybe_timepoint': maybe_timepoint, 'call_hash': call_hash, 'max_weight': max_weight}) @staticmethod def as_multi(threshold: 'u16', other_signatories: 'Any', maybe_timepoint: 'Any', call: 'RuntimeCall', max_weight: 'Weight') -> Call: - 'Register approval for a dispatch to be made from a deterministic composite account if approved by a total of `threshold - 1` of `other_signatories`. If there are enough, then dispatch the call. Payment: `DepositBase` will be reserved if this is the first approval, plus `threshold` times `DepositFactor`. It is returned once this dispatch happens or is cancelled. The dispatch origin for this call must be _Signed_. - `threshold`: The total number of approvals for this dispatch before it is executed. - `other_signatories`: The accounts (other than the sender) who can approve this dispatch. May not be empty. - `maybe_timepoint`: If this is the first approval, then this must be `None`. If it is not the first approval, then it must be `Some`, with the timepoint (block number and transaction index) of the first approval transaction. - `call`: The call to be executed. NOTE: Unless this is the final approval, you will generally want to use `approve_as_multi` instead, since it only requires a hash of the call. Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise on success, result is `Ok` and the result from the interior call, if it was executed, may be found in the deposited `MultisigExecuted` event. ## Complexity - `O(S + Z + Call)`. - Up to one balance-reserve or unreserve operation. - One passthrough operation, one insert, both `O(S)` where `S` is the number of signatories. `S` is capped by `MaxSignatories`, with weight being proportional. - One call encode & hash, both of complexity `O(Z)` where `Z` is tx-len. - One encode & hash, both of complexity `O(S)`. - Up to one binary search and insert (`O(logS + S)`). - I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove. - One event. - The weight of the `call`. - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit taken for its lifetime of `DepositBase + threshold * DepositFactor`.' + "Register approval for a dispatch to be made from a deterministic composite account if approved by a total of `threshold - 1` of `other_signatories`. **If the approval threshold is met (including the sender's approval), this will immediately execute the call.** This is the only way to execute a multisig call - `approve_as_multi` will never trigger execution. Payment: `DepositBase` will be reserved if this is the first approval, plus `threshold` times `DepositFactor`. It is returned once this dispatch happens or is cancelled. The dispatch origin for this call must be _Signed_. - `threshold`: The total number of approvals for this dispatch before it is executed. - `other_signatories`: The accounts (other than the sender) who can approve this dispatch. May not be empty. - `maybe_timepoint`: If this is the first approval, then this must be `None`. If it is not the first approval, then it must be `Some`, with the timepoint (block number and transaction index) of the first approval transaction. - `call`: The call to be executed. NOTE: For intermediate approvals (not the final approval), you should generally use `approve_as_multi` instead, since it only requires a hash of the call and is more efficient. Result is equivalent to the dispatched result if `threshold` is exactly `1`. Otherwise on success, result is `Ok` and the result from the interior call, if it was executed, may be found in the deposited `MultisigExecuted` event. ## Complexity - `O(S + Z + Call)`. - Up to one balance-reserve or unreserve operation. - One passthrough operation, one insert, both `O(S)` where `S` is the number of signatories. `S` is capped by `MaxSignatories`, with weight being proportional. - One call encode & hash, both of complexity `O(Z)` where `Z` is tx-len. - One encode & hash, both of complexity `O(S)`. - Up to one binary search and insert (`O(logS + S)`). - I/O: 1 read `O(S)`, up to 1 mutate `O(S)`. Up to one remove. - One event. - The weight of the `call`. - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit taken for its lifetime of `DepositBase + threshold * DepositFactor`." return Call('Multisig', 'as_multi', {'threshold': threshold, 'other_signatories': other_signatories, 'maybe_timepoint': maybe_timepoint, 'call': call, 'max_weight': max_weight}) @staticmethod @@ -727,7 +727,7 @@ class Scheduler: @staticmethod def cancel(when: 'u32', index: 'u32') -> Call: - 'Cancel an anonymously scheduled task.' + "Cancel a scheduled task (named or anonymous), by providing the block it is scheduled for execution in, as well as the index of the task in that block's agenda. In the case of a named task, it will remove it from the lookup table as well." return Call('Scheduler', 'cancel', {'when': when, 'index': index}) @staticmethod @@ -767,12 +767,12 @@ def schedule_named_after(id: 'Any', after: 'u32', maybe_periodic: 'Any', priorit @staticmethod def set_retry(task: 'Any', retries: 'u8', period: 'u32') -> Call: - "Set a retry configuration for a task so that, in case its scheduled run fails, it will be retried after `period` blocks, for a total amount of `retries` retries or until it succeeds. Tasks which need to be scheduled for a retry are still subject to weight metering and agenda space, same as a regular task. If a periodic task fails, it will be scheduled normally while the task is retrying. Tasks scheduled as a result of a retry for a periodic task are unnamed, non-periodic clones of the original task. Their retry configuration will be derived from the original task's configuration, but will have a lower value for `remaining` than the original `total_retries`." + "Set a retry configuration for a task so that, in case its scheduled run fails, it will be retried after `period` blocks, for a total amount of `retries` retries or until it succeeds. Tasks which need to be scheduled for a retry are still subject to weight metering and agenda space, same as a regular task. If a periodic task fails, it will be scheduled normally while the task is retrying. Tasks scheduled as a result of a retry for a periodic task are unnamed, non-periodic clones of the original task. Their retry configuration will be derived from the original task's configuration, but will have a lower value for `remaining` than the original `total_retries`. This call **cannot** be used to set a retry configuration for a named task." return Call('Scheduler', 'set_retry', {'task': task, 'retries': retries, 'period': period}) @staticmethod def set_retry_named(id: 'Any', retries: 'u8', period: 'u32') -> Call: - "Set a retry configuration for a named task so that, in case its scheduled run fails, it will be retried after `period` blocks, for a total amount of `retries` retries or until it succeeds. Tasks which need to be scheduled for a retry are still subject to weight metering and agenda space, same as a regular task. If a periodic task fails, it will be scheduled normally while the task is retrying. Tasks scheduled as a result of a retry for a periodic task are unnamed, non-periodic clones of the original task. Their retry configuration will be derived from the original task's configuration, but will have a lower value for `remaining` than the original `total_retries`." + "Set a retry configuration for a named task so that, in case its scheduled run fails, it will be retried after `period` blocks, for a total amount of `retries` retries or until it succeeds. Tasks which need to be scheduled for a retry are still subject to weight metering and agenda space, same as a regular task. If a periodic task fails, it will be scheduled normally while the task is retrying. Tasks scheduled as a result of a retry for a periodic task are unnamed, non-periodic clones of the original task. Their retry configuration will be derived from the original task's configuration, but will have a lower value for `remaining` than the original `total_retries`. This is the only way to set a retry configuration for a named task." return Call('Scheduler', 'set_retry_named', {'id': id, 'retries': retries, 'period': period}) diff --git a/sdk/python/bittensor/_generated/constants.py b/sdk/python/bittensor/_generated/constants.py index 9427d725ba..ec2dcba493 100644 --- a/sdk/python/bittensor/_generated/constants.py +++ b/sdk/python/bittensor/_generated/constants.py @@ -1,7 +1,7 @@ """Generated from runtime metadata by codegen. DO NOT EDIT BY HAND. Regenerate with: python -m codegen -Spec version: 432 +Spec version: 433 Pallet constant descriptors: unpack into substrate.constant. """ diff --git a/sdk/python/bittensor/_generated/errors.py b/sdk/python/bittensor/_generated/errors.py index 791d708aab..7b67acbc5e 100644 --- a/sdk/python/bittensor/_generated/errors.py +++ b/sdk/python/bittensor/_generated/errors.py @@ -1,7 +1,7 @@ """Generated from runtime metadata by codegen. DO NOT EDIT BY HAND. Regenerate with: python -m codegen -Spec version: 432 +Spec version: 433 """ from dataclasses import dataclass diff --git a/sdk/python/bittensor/_generated/runtime_apis.py b/sdk/python/bittensor/_generated/runtime_apis.py index f855e18c4a..765f2ddce4 100644 --- a/sdk/python/bittensor/_generated/runtime_apis.py +++ b/sdk/python/bittensor/_generated/runtime_apis.py @@ -1,7 +1,7 @@ """Generated from runtime metadata by codegen. DO NOT EDIT BY HAND. Regenerate with: python -m codegen -Spec version: 432 +Spec version: 433 Runtime API method descriptors: unpack into substrate.runtime_call. """ diff --git a/sdk/python/bittensor/_generated/storage.py b/sdk/python/bittensor/_generated/storage.py index 38380e7171..407dc035cb 100644 --- a/sdk/python/bittensor/_generated/storage.py +++ b/sdk/python/bittensor/_generated/storage.py @@ -1,7 +1,7 @@ """Generated from runtime metadata by codegen. DO NOT EDIT BY HAND. Regenerate with: python -m codegen -Spec version: 432 +Spec version: 433 Storage item descriptors: unpack into substrate.query/query_map. Each carries its VALUE's type identity (value_type_ident) so normalization can key on the runtime's own type names without a node round-trip. """ @@ -26,7 +26,7 @@ class System: ExtrinsicCount = Item('System', 'ExtrinsicCount', 'u32') InherentsApplied = Item('System', 'InherentsApplied', 'bool') BlockWeight = Item('System', 'BlockWeight', 'PerDispatchClass') - AllExtrinsicsLen = Item('System', 'AllExtrinsicsLen', 'u32') + BlockSize = Item('System', 'BlockSize', 'u32') BlockHash = Item('System', 'BlockHash', 'H256') ExtrinsicData = Item('System', 'ExtrinsicData', 'Vec') Number = Item('System', 'Number', 'u32') @@ -36,6 +36,7 @@ class System: EventCount = Item('System', 'EventCount', 'u32') EventTopics = Item('System', 'EventTopics', 'Vec<(u32, u32)>') LastRuntimeUpgrade = Item('System', 'LastRuntimeUpgrade', 'LastRuntimeUpgradeInfo') + BlocksTillUpgrade = Item('System', 'BlocksTillUpgrade', 'u8') UpgradedToU32RefCount = Item('System', 'UpgradedToU32RefCount', 'bool') UpgradedToTripleRefCount = Item('System', 'UpgradedToTripleRefCount', 'bool') ExecutionPhase = Item('System', 'ExecutionPhase', 'Phase') @@ -74,6 +75,7 @@ class Balances: class TransactionPayment: NextFeeMultiplier = Item('TransactionPayment', 'NextFeeMultiplier', 'FixedU128') StorageVersion = Item('TransactionPayment', 'StorageVersion', 'Releases') + TxPaymentCredit = Item('TransactionPayment', 'TxPaymentCredit', '()') class SubtensorModule: MinActivityCutoff = Item('SubtensorModule', 'MinActivityCutoff', 'u16') diff --git a/support/procedural-fork/src/construct_runtime/expand/call.rs b/support/procedural-fork/src/construct_runtime/expand/call.rs index cc467c31d3..07c6970d10 100644 --- a/support/procedural-fork/src/construct_runtime/expand/call.rs +++ b/support/procedural-fork/src/construct_runtime/expand/call.rs @@ -75,7 +75,7 @@ pub fn expand_outer_dispatch( #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeCall { #variant_defs diff --git a/support/procedural-fork/src/construct_runtime/expand/freeze_reason.rs b/support/procedural-fork/src/construct_runtime/expand/freeze_reason.rs index 131c919ef0..453506d456 100644 --- a/support/procedural-fork/src/construct_runtime/expand/freeze_reason.rs +++ b/support/procedural-fork/src/construct_runtime/expand/freeze_reason.rs @@ -60,7 +60,7 @@ pub fn expand_outer_freeze_reason(pallet_decls: &[Pallet], scrate: &TokenStream) Copy, Clone, Eq, PartialEq, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeFreezeReason { #( #freeze_reason_variants )* diff --git a/support/procedural-fork/src/construct_runtime/expand/hold_reason.rs b/support/procedural-fork/src/construct_runtime/expand/hold_reason.rs index 58870a3218..2236688b04 100644 --- a/support/procedural-fork/src/construct_runtime/expand/hold_reason.rs +++ b/support/procedural-fork/src/construct_runtime/expand/hold_reason.rs @@ -60,7 +60,7 @@ pub fn expand_outer_hold_reason(pallet_decls: &[Pallet], scrate: &TokenStream) - Copy, Clone, Eq, PartialEq, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeHoldReason { #( #hold_reason_variants )* diff --git a/support/procedural-fork/src/construct_runtime/expand/lock_id.rs b/support/procedural-fork/src/construct_runtime/expand/lock_id.rs index 67c2fb9335..f4e5c3c675 100644 --- a/support/procedural-fork/src/construct_runtime/expand/lock_id.rs +++ b/support/procedural-fork/src/construct_runtime/expand/lock_id.rs @@ -53,7 +53,7 @@ pub fn expand_outer_lock_id(pallet_decls: &[Pallet], scrate: &TokenStream) -> To Copy, Clone, Eq, PartialEq, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeLockId { #( #lock_id_variants )* diff --git a/support/procedural-fork/src/construct_runtime/expand/origin.rs b/support/procedural-fork/src/construct_runtime/expand/origin.rs index 58c8adec51..2180d13913 100644 --- a/support/procedural-fork/src/construct_runtime/expand/origin.rs +++ b/support/procedural-fork/src/construct_runtime/expand/origin.rs @@ -202,7 +202,7 @@ pub fn expand_outer_origin( } #[derive( - Clone, PartialEq, Eq, #scrate::__private::RuntimeDebug, #scrate::__private::codec::Encode, + Clone, PartialEq, Eq, #scrate::__private::Debug, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::scale_info::TypeInfo, #scrate::__private::codec::MaxEncodedLen, )] #[allow(non_camel_case_types)] diff --git a/support/procedural-fork/src/construct_runtime/expand/outer_enums.rs b/support/procedural-fork/src/construct_runtime/expand/outer_enums.rs index 3747cedea2..e76adda842 100644 --- a/support/procedural-fork/src/construct_runtime/expand/outer_enums.rs +++ b/support/procedural-fork/src/construct_runtime/expand/outer_enums.rs @@ -166,7 +166,7 @@ pub fn expand_outer_enum( #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] #[allow(non_camel_case_types)] pub enum #enum_name_ident { diff --git a/support/procedural-fork/src/construct_runtime/expand/slash_reason.rs b/support/procedural-fork/src/construct_runtime/expand/slash_reason.rs index 0695d81020..b7eeee0979 100644 --- a/support/procedural-fork/src/construct_runtime/expand/slash_reason.rs +++ b/support/procedural-fork/src/construct_runtime/expand/slash_reason.rs @@ -53,7 +53,7 @@ pub fn expand_outer_slash_reason(pallet_decls: &[Pallet], scrate: &TokenStream) Copy, Clone, Eq, PartialEq, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeSlashReason { #( #slash_reason_variants )* diff --git a/support/procedural-fork/src/construct_runtime/expand/task.rs b/support/procedural-fork/src/construct_runtime/expand/task.rs index 94a5f52bb3..eafdd0779b 100644 --- a/support/procedural-fork/src/construct_runtime/expand/task.rs +++ b/support/procedural-fork/src/construct_runtime/expand/task.rs @@ -79,7 +79,7 @@ pub fn expand_outer_task( #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] pub enum RuntimeTask { #( #task_variants )* diff --git a/support/procedural-fork/src/construct_runtime/mod.rs b/support/procedural-fork/src/construct_runtime/mod.rs index cf39972461..3669c188c1 100644 --- a/support/procedural-fork/src/construct_runtime/mod.rs +++ b/support/procedural-fork/src/construct_runtime/mod.rs @@ -465,7 +465,7 @@ fn construct_runtime_final_expansion( }; #[derive( - Clone, Copy, PartialEq, Eq, #scrate::sp_runtime::RuntimeDebug, + Clone, Copy, PartialEq, Eq, #scrate::sp_runtime::Debug, #scrate::__private::scale_info::TypeInfo )] pub struct #name; diff --git a/support/procedural-fork/src/dynamic_params.rs b/support/procedural-fork/src/dynamic_params.rs index eeb7720798..985674d06f 100644 --- a/support/procedural-fork/src/dynamic_params.rs +++ b/support/procedural-fork/src/dynamic_params.rs @@ -289,7 +289,7 @@ impl ToTokens for DynamicPalletParamAttr { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum Parameters { @@ -307,7 +307,7 @@ impl ToTokens for DynamicPalletParamAttr { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum #key_ident { @@ -325,7 +325,7 @@ impl ToTokens for DynamicPalletParamAttr { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum #value_ident { @@ -359,7 +359,7 @@ impl ToTokens for DynamicPalletParamAttr { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, #scrate::__private::scale_info::TypeInfo )] #vis struct #key_names; @@ -409,7 +409,7 @@ impl ToTokens for DynamicPalletParamAttr { Clone, PartialEq, Eq, - #scrate::sp_runtime::RuntimeDebug, + #scrate::sp_runtime::Debug, )] #vis struct #key_values(pub #value_types); @@ -496,7 +496,7 @@ impl ToTokens for DynamicParamAggregatedEnum { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::sp_runtime::RuntimeDebug, + #scrate::sp_runtime::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum #name { @@ -515,7 +515,7 @@ impl ToTokens for DynamicParamAggregatedEnum { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::sp_runtime::RuntimeDebug, + #scrate::sp_runtime::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum #params_key_ident { @@ -533,7 +533,7 @@ impl ToTokens for DynamicParamAggregatedEnum { #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, - #scrate::sp_runtime::RuntimeDebug, + #scrate::sp_runtime::Debug, #scrate::__private::scale_info::TypeInfo )] #vis enum #params_value_ident { diff --git a/support/procedural-fork/src/no_bound/clone.rs b/support/procedural-fork/src/no_bound/clone.rs index 17039bdc87..b66cbe8d80 100644 --- a/support/procedural-fork/src/no_bound/clone.rs +++ b/support/procedural-fork/src/no_bound/clone.rs @@ -33,7 +33,7 @@ pub fn derive_clone_no_bound(input: proc_macro::TokenStream) -> proc_macro::Toke ) }); - quote::quote!( Self { #( #fields, )* } ) + quote::quote!( #name { #( #fields, )* } ) } syn::Fields::Unnamed(unnamed) => { let fields = unnamed @@ -47,10 +47,10 @@ pub fn derive_clone_no_bound(input: proc_macro::TokenStream) -> proc_macro::Toke ) }); - quote::quote!( Self ( #( #fields, )* ) ) + quote::quote!( #name ( #( #fields, )* ) ) } syn::Fields::Unit => { - quote::quote!(Self) + quote::quote!(#name) } }, syn::Data::Enum(enum_) => { @@ -65,7 +65,7 @@ pub fn derive_clone_no_bound(input: proc_macro::TokenStream) -> proc_macro::Toke ) }); quote::quote!( - Self::#ident { #( ref #captured, )* } => Self::#ident { #( #cloned, )*} + #name::#ident { #( ref #captured, )* } => #name::#ident { #( #cloned, )*} ) } syn::Fields::Unnamed(unnamed) => { @@ -80,10 +80,10 @@ pub fn derive_clone_no_bound(input: proc_macro::TokenStream) -> proc_macro::Toke ) }); quote::quote!( - Self::#ident ( #( ref #captured, )* ) => Self::#ident ( #( #cloned, )*) + #name::#ident ( #( ref #captured, )* ) => #name::#ident ( #( #cloned, )*) ) } - syn::Fields::Unit => quote::quote!( Self::#ident => Self::#ident ), + syn::Fields::Unit => quote::quote!( #name::#ident => #name::#ident ), } }); diff --git a/support/procedural-fork/src/no_bound/default.rs b/support/procedural-fork/src/no_bound/default.rs index 615268d7bd..67e1d497ff 100644 --- a/support/procedural-fork/src/no_bound/default.rs +++ b/support/procedural-fork/src/no_bound/default.rs @@ -36,7 +36,7 @@ pub fn derive_default_no_bound(input: proc_macro::TokenStream) -> proc_macro::To } }); - quote!(Self { #( #fields, )* }) + quote!(#name { #( #fields, )* }) } Fields::Unnamed(unnamed) => { let fields = unnamed.unnamed.iter().map(|field| { @@ -45,10 +45,10 @@ pub fn derive_default_no_bound(input: proc_macro::TokenStream) -> proc_macro::To } }); - quote!(Self( #( #fields, )* )) + quote!(#name( #( #fields, )* )) } Fields::Unit => { - quote!(Self) + quote!(#name) } }, Data::Enum(enum_) => { @@ -106,7 +106,7 @@ pub fn derive_default_no_bound(input: proc_macro::TokenStream) -> proc_macro::To let variant_ident = &default_variant.ident; - let fully_qualified_variant_path = quote!(Self::#variant_ident); + let fully_qualified_variant_path = quote!(#name::#variant_ident); match &default_variant.fields { Fields::Named(named) => { diff --git a/support/procedural-fork/src/pallet/parse/composite.rs b/support/procedural-fork/src/pallet/parse/composite.rs index f679710b9a..2682249195 100644 --- a/support/procedural-fork/src/pallet/parse/composite.rs +++ b/support/procedural-fork/src/pallet/parse/composite.rs @@ -159,7 +159,7 @@ impl CompositeDef { Copy, Clone, Eq, PartialEq, #scrate::__private::codec::Encode, #scrate::__private::codec::Decode, #scrate::__private::codec::MaxEncodedLen, #scrate::__private::scale_info::TypeInfo, - #scrate::__private::RuntimeDebug, + #scrate::__private::Debug, )] }; item.attrs.push(derive_attr); diff --git a/support/procedural-fork/src/runtime/expand/mod.rs b/support/procedural-fork/src/runtime/expand/mod.rs index b51012541b..aeadd853ec 100644 --- a/support/procedural-fork/src/runtime/expand/mod.rs +++ b/support/procedural-fork/src/runtime/expand/mod.rs @@ -271,7 +271,7 @@ fn construct_runtime_final_expansion( }; #[derive( - Clone, Copy, PartialEq, Eq, #scrate::sp_runtime::RuntimeDebug, + Clone, Copy, PartialEq, Eq, #scrate::sp_runtime::Debug, #scrate::__private::scale_info::TypeInfo )] pub struct #name; diff --git a/vendor/frontier/Cargo.lock b/vendor/frontier/Cargo.lock index b8bbf1aad6..9df96a46f3 100644 --- a/vendor/frontier/Cargo.lock +++ b/vendor/frontier/Cargo.lock @@ -14,20 +14,11 @@ dependencies = [ [[package]] name = "addr2line" -version = "0.19.0" +version = "0.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" dependencies = [ - "gimli 0.27.3", -] - -[[package]] -name = "addr2line" -version = "0.24.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" -dependencies = [ - "gimli 0.31.1", + "gimli 0.32.3", ] [[package]] @@ -42,7 +33,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 0.14.7", ] @@ -54,7 +45,7 @@ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" dependencies = [ "cfg-if", "cipher 0.4.4", - "cpufeatures", + "cpufeatures 0.2.17", ] [[package]] @@ -71,6 +62,17 @@ dependencies = [ "subtle 2.6.1", ] +[[package]] +name = "ahash" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9" +dependencies = [ + "getrandom 0.2.17", + "once_cell", + "version_check", +] + [[package]] name = "ahash" version = "0.8.12" @@ -78,7 +80,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" dependencies = [ "cfg-if", - "getrandom 0.3.3", + "getrandom 0.3.4", "once_cell", "version_check", "zerocopy", @@ -86,9 +88,9 @@ dependencies = [ [[package]] name = "aho-corasick" -version = "1.1.3" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" dependencies = [ "memchr", ] @@ -99,12 +101,6 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - [[package]] name = "android_system_properties" version = "0.1.5" @@ -116,9 +112,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.19" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" dependencies = [ "anstyle", "anstyle-parse", @@ -131,44 +127,44 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.11" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" [[package]] name = "anstyle-parse" -version = "0.2.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" dependencies = [ "utf8parse", ] [[package]] name = "anstyle-query" -version = "1.1.3" +version = "1.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "anstyle-wincon" -version = "3.0.9" +version = "3.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" dependencies = [ "anstyle", "once_cell_polyfill", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "anyhow" -version = "1.0.98" +version = "1.0.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" +checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" [[package]] name = "approx" @@ -190,9 +186,15 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] +[[package]] +name = "arbitrary" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" + [[package]] name = "ark-bls12-377" version = "0.4.0" @@ -263,14 +265,14 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43d68f2d516162846c1238e755a7c4d131b892b70cc70c471a8e3ca3ed818fce" dependencies = [ - "ahash", + "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", "fnv", - "hashbrown 0.15.4", + "hashbrown 0.15.5", "itertools 0.13.0", "num-bigint", "num-integer", @@ -320,7 +322,7 @@ dependencies = [ "ark-ff-macros 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "digest 0.10.7", "educe", "itertools 0.13.0", @@ -347,7 +349,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" dependencies = [ "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -373,7 +375,7 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -395,13 +397,13 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "579305839da207f02b89cd1679e50e67b4331e2f9294a57693e5051b7703fe27" dependencies = [ - "ahash", + "ahash 0.8.12", "ark-ff 0.5.0", "ark-serialize 0.5.0", "ark-std 0.5.0", "educe", "fnv", - "hashbrown 0.15.4", + "hashbrown 0.15.5", ] [[package]] @@ -424,7 +426,7 @@ checksum = "3f4d068aaf107ebcd7dfb52bc748f8030e0fc930ac8e360146ca54c1203088f7" dependencies = [ "ark-serialize-derive 0.5.0", "ark-std 0.5.0", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "digest 0.10.7", "num-bigint", ] @@ -448,7 +450,7 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -458,7 +460,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", - "rand 0.8.5", + "rand 0.8.7", ] [[package]] @@ -468,7 +470,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "246a225cc6131e9ee4f24619af0f19d67761fff15d7ccc22e42b80846e69449a" dependencies = [ "num-traits", - "rand 0.8.5", + "rand 0.8.7", ] [[package]] @@ -482,14 +484,14 @@ dependencies = [ "ark-std 0.5.0", "digest 0.10.7", "rand_core 0.6.4", - "sha3", + "sha3 0.10.9", ] [[package]] name = "ark-vrf" -version = "0.1.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9501da18569b2afe0eb934fb7afd5a247d238b94116155af4dd068f319adfe6d" +checksum = "9b9bd02dbd2f282fe742d51f681adb2745a79dc8a025bc8d16cac9b255d55bf7" dependencies = [ "ark-bls12-381 0.5.0", "ark-ec 0.5.0", @@ -498,7 +500,7 @@ dependencies = [ "ark-serialize 0.5.0", "ark-std 0.5.0", "digest 0.10.7", - "rand_chacha 0.3.1", + "generic-array 0.14.7", "sha2 0.10.9", "w3f-ring-proof", "zeroize", @@ -512,11 +514,12 @@ checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293" [[package]] name = "array-bytes" -version = "9.1.2" +version = "9.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4449507daf4f07a8c8309e122d32a53d15c9f33e77eaf01c839fea42ccd4d673" +checksum = "27d55334c98d756b32dcceb60248647ab34f027690f87f9a362fd292676ee927" dependencies = [ "smallvec", + "thiserror 2.0.18", ] [[package]] @@ -536,9 +539,9 @@ dependencies = [ [[package]] name = "arrayvec" -version = "0.7.6" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" [[package]] name = "asn1-rs" @@ -549,7 +552,7 @@ dependencies = [ "asn1-rs-derive 0.5.1", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", "thiserror 1.0.69", @@ -558,17 +561,17 @@ dependencies = [ [[package]] name = "asn1-rs" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60" +checksum = "b7f43a50ac4fdca5df8e885c21b835997f0a1cdee65494a6847694a98652d9d8" dependencies = [ "asn1-rs-derive 0.6.0", "asn1-rs-impl", "displaydoc", - "nom", + "nom 7.1.3", "num-traits", "rusticata-macros", - "thiserror 2.0.12", + "thiserror 2.0.18", "time", ] @@ -580,8 +583,8 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -592,8 +595,8 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -604,15 +607,9 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] -[[package]] -name = "assert_matches" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" - [[package]] name = "async-channel" version = "1.9.0" @@ -638,9 +635,9 @@ dependencies = [ [[package]] name = "async-executor" -version = "1.13.2" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb812ffb58524bdd10860d7d974e2f01cc0950c2438a74ee5ec2e2280c6c4ffa" +checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a" dependencies = [ "async-task", "concurrent-queue", @@ -652,9 +649,9 @@ dependencies = [ [[package]] name = "async-fs" -version = "2.1.3" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09f7e37c0ed80b2a977691c47dae8625cfb21e205827106c64f7c588766b2e50" +checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5" dependencies = [ "async-lock", "blocking", @@ -663,29 +660,29 @@ dependencies = [ [[package]] name = "async-io" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19634d6336019ef220f09fd31168ce5c184b295cbf80345437cc36094ef223ca" +checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc" dependencies = [ - "async-lock", + "autocfg", "cfg-if", "concurrent-queue", "futures-io", "futures-lite", "parking", "polling", - "rustix 1.0.8", + "rustix", "slab", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] name = "async-lock" -version = "3.4.0" +version = "3.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.4.1", "event-listener-strategy", "pin-project-lite", ] @@ -703,9 +700,9 @@ dependencies = [ [[package]] name = "async-process" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65daa13722ad51e6ab1a1b9c01299142bc75135b337923cfa10e79bbbd669f00" +checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75" dependencies = [ "async-channel 2.5.0", "async-io", @@ -714,16 +711,16 @@ dependencies = [ "async-task", "blocking", "cfg-if", - "event-listener 5.4.0", + "event-listener 5.4.1", "futures-lite", - "rustix 1.0.8", + "rustix", ] [[package]] name = "async-signal" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f567af260ef69e1d52c2b560ce0ea230763e6fbb9214a85d768760a920e3e3c1" +checksum = "52b5aaafa020cf5053a01f2a60e8ff5dccf550f0f77ec54a4e47285ac2bab485" dependencies = [ "async-io", "async-lock", @@ -731,10 +728,10 @@ dependencies = [ "cfg-if", "futures-core", "futures-io", - "rustix 1.0.8", + "rustix", "signal-hook-registry", "slab", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -745,13 +742,13 @@ checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" [[package]] name = "async-trait" -version = "0.1.88" +version = "0.1.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5" +checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -820,28 +817,28 @@ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "autocfg" -version = "1.5.0" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" [[package]] name = "backtrace" -version = "0.3.75" +version = "0.3.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002" +checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" dependencies = [ - "addr2line 0.24.2", + "addr2line", "cfg-if", "libc", "miniz_oxide", - "object 0.36.7", + "object 0.37.3", "rustc-demangle", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -857,16 +854,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" [[package]] -name = "base58" -version = "0.2.0" +name = "base256emoji" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" +checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c" +dependencies = [ + "const-str", + "match-lookup", +] [[package]] -name = "base64" -version = "0.21.7" +name = "base45" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240e56f4d3c453c36faacb695c535a4d5f8c7d23dac175014f32eb0a71012a03" + +[[package]] +name = "base58" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" [[package]] name = "base64" @@ -876,48 +883,36 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" [[package]] name = "base64ct" -version = "1.6.0" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" [[package]] name = "binary-merkle-tree" -version = "16.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "hash-db", "log", "parity-scale-codec", ] -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - [[package]] name = "bindgen" -version = "0.65.1" +version = "0.72.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5" +checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.13.1", "cexpr", "clang-sys", - "lazy_static", - "lazycell", - "peeking_take_while", - "prettyplease", + "itertools 0.13.0", "proc-macro2", "quote", "regex", - "rustc-hash 1.1.0", - "shlex", - "syn 2.0.104", + "rustc-hash 2.1.3", + "shlex 1.3.0", + "syn 2.0.119", ] [[package]] @@ -939,45 +934,51 @@ dependencies = [ [[package]] name = "bip39" -version = "2.2.0" +version = "2.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43d193de1f7487df1914d3a568b772458861d33f9c54249612cc2893d6915054" +checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc" dependencies = [ - "bitcoin_hashes 0.13.0", + "bitcoin_hashes", + "rand 0.8.7", + "rand_core 0.6.4", "serde", "unicode-normalization", ] [[package]] -name = "bitcoin-internals" -version = "0.2.0" +name = "bitcoin-consensus-encoding" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" +checksum = "207311705279250ba465076a1bac4b1ac982855fff73fc5f67e22158ac58cdc9" +dependencies = [ + "bitcoin-internals", + "hex-conservative 1.2.0", + "serde", +] [[package]] -name = "bitcoin-io" -version = "0.1.3" +name = "bitcoin-internals" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b47c4ab7a93edb0c7198c5535ed9b52b63095f4e9b45279c6736cec4b856baf" +checksum = "d573f4cf32996a8dce612e4348cece65a241f1882ed594047c9ba348e8869fa5" [[package]] -name = "bitcoin_hashes" -version = "0.13.0" +name = "bitcoin-io" +version = "0.1.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" +checksum = "bb5de036369d1ac59d3c1819ebc4d850f89466f5401c571a285b6ed564a4cb78" dependencies = [ - "bitcoin-internals", - "hex-conservative 0.1.2", + "bitcoin-consensus-encoding", ] [[package]] name = "bitcoin_hashes" -version = "0.14.0" +version = "0.14.101" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +checksum = "bca4c7abb40c8817d77403c880988cfd484f23ab2365726afb2f798363e2c4a2" dependencies = [ "bitcoin-io", - "hex-conservative 0.2.1", + "hex-conservative 0.2.2", ] [[package]] @@ -988,15 +989,15 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.9.1" +version = "2.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967" +checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" [[package]] name = "bitvec" -version = "1.0.1" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" dependencies = [ "funty", "radium", @@ -1038,37 +1039,27 @@ dependencies = [ [[package]] name = "blake2b_simd" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06e903a20b159e944f91ec8499fe1e55651480c541ea0a584f5d967c49ad9d99" -dependencies = [ - "arrayref", - "arrayvec 0.7.6", - "constant_time_eq 0.3.1", -] - -[[package]] -name = "blake2s_simd" -version = "1.0.3" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90f7deecfac93095eb874a40febd69427776e24e1bd7f87f33ac62d6f0174df" +checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3" dependencies = [ "arrayref", - "arrayvec 0.7.6", - "constant_time_eq 0.3.1", + "arrayvec 0.7.8", + "constant_time_eq 0.4.2", ] [[package]] name = "blake3" -version = "1.8.2" +version = "1.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0" +checksum = "0aa83c34e62843d924f905e0f5c866eb1dd6545fc4d719e803d9ba6030371fce" dependencies = [ "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "cc", "cfg-if", - "constant_time_eq 0.3.1", + "constant_time_eq 0.4.2", + "cpufeatures 0.3.0", ] [[package]] @@ -1089,6 +1080,15 @@ dependencies = [ "generic-array 0.14.7", ] +[[package]] +name = "block-buffer" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2f6c7dbe95a6ed67ad9f18e57daf93a2f034c524b99fd2b76d18fdfeb6660aa" +dependencies = [ + "hybrid-array 0.4.13", +] + [[package]] name = "blocking" version = "1.6.2" @@ -1104,10 +1104,11 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.2.4" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64ad8a0bed7827f0b07a5d23cec2e58cc02038a99e4ca81616cb2bb2025f804d" +checksum = "dee8eddd066a8825ec5570528e6880471210fd5d88cb6abbe1cfdd51ca249c33" dependencies = [ + "jam-codec", "log", "parity-scale-codec", "scale-info", @@ -1135,13 +1136,13 @@ dependencies = [ [[package]] name = "bstr" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4" +checksum = "1f7dc094d718f2e1c1559ad110e27eeaae14a5465d3d56dd6dbd793079fbd530" dependencies = [ "memchr", - "regex-automata 0.4.9", - "serde", + "regex-automata 0.4.16", + "serde_core", ] [[package]] @@ -1155,9 +1156,12 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.20.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" +dependencies = [ + "allocator-api2", +] [[package]] name = "byte-slice-cast" @@ -1173,9 +1177,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.23.1" +version = "1.25.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c76a5792e44e4abe34d3abf15636779261d45a7450612059293d1d2cfc63422" +checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424" [[package]] name = "byteorder" @@ -1185,9 +1189,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" -version = "1.10.1" +version = "1.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" [[package]] name = "bzip2-sys" @@ -1211,11 +1215,11 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.10" +version = "1.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0da45bc31171d8d6960122e222a67740df867c1dd53b4d51caa297084c185cab" +checksum = "5f2d30e4173c4026932d51d31d6b0613b1fd3014bf3f9f8943d4ba139c437ba0" dependencies = [ - "serde", + "serde_core", ] [[package]] @@ -1235,7 +1239,7 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.26", + "semver 1.0.28", "serde", "serde_json", "thiserror 1.0.69", @@ -1249,13 +1253,14 @@ checksum = "fd6c0e7b807d60291f42f33f58480c0bfafe28ed08286446f45e463728cf9c1c" [[package]] name = "cc" -version = "1.2.30" +version = "1.2.67" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7" +checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38" dependencies = [ + "find-msvc-tools", "jobserver", "libc", - "shlex", + "shlex 2.0.1", ] [[package]] @@ -1270,7 +1275,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -1284,9 +1289,9 @@ dependencies = [ [[package]] name = "cfg-if" -version = "1.0.1" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" [[package]] name = "cfg_aliases" @@ -1296,9 +1301,9 @@ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] name = "cfg_aliases" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" [[package]] name = "chacha" @@ -1318,7 +1323,18 @@ checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818" dependencies = [ "cfg-if", "cipher 0.4.4", - "cpufeatures", + "cpufeatures 0.2.17", +] + +[[package]] +name = "chacha20" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "rand_core 0.10.1", ] [[package]] @@ -1328,7 +1344,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35" dependencies = [ "aead", - "chacha20", + "chacha20 0.9.1", "cipher 0.4.4", "poly1305", "zeroize", @@ -1336,11 +1352,10 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.41" +version = "0.4.45" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" dependencies = [ - "android-tzdata", "iana-time-zone", "js-sys", "num-traits", @@ -1351,26 +1366,12 @@ dependencies = [ [[package]] name = "cid" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" -dependencies = [ - "core2", - "multibase", - "multihash 0.17.0", - "serde", - "unsigned-varint 0.7.2", -] - -[[package]] -name = "cid" -version = "0.11.1" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" +checksum = "21a304f95f84d169a6f31c4d0a30d784643aaa0bbc9c1e449a2c23e963ec4971" dependencies = [ - "core2", "multibase", - "multihash 0.19.3", + "multihash", "unsigned-varint 0.8.0", ] @@ -1389,7 +1390,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" dependencies = [ - "crypto-common", + "crypto-common 0.1.7", "inout", "zeroize", ] @@ -1402,14 +1403,13 @@ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", - "libloading", ] [[package]] name = "clap" -version = "4.5.42" +version = "4.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882" +checksum = "dd059f9da4f5c36b3787f65d38ccaab1cc315f07b01f89abc8359ee6a8205011" dependencies = [ "clap_builder", "clap_derive", @@ -1417,9 +1417,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.42" +version = "4.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966" +checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b" dependencies = [ "anstream", "anstyle", @@ -1430,38 +1430,47 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.5.41" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "clap_lex" -version = "0.7.5" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "coarsetime" -version = "0.1.36" +version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91849686042de1b41cd81490edc83afbcb0abe5a9b6f2c4114f23ce8cca1bcf4" +checksum = "e58eb270476aa4fc7843849f8a35063e8743b4dbcdf6dd0f8ea0886980c204c2" dependencies = [ "libc", "wasix", "wasm-bindgen", ] +[[package]] +name = "cobs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" +dependencies = [ + "thiserror 2.0.18", +] + [[package]] name = "codespan-reporting" -version = "0.12.0" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81" +checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681" dependencies = [ "serde", "termcolor", @@ -1470,9 +1479,9 @@ dependencies = [ [[package]] name = "colorchoice" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" [[package]] name = "combine" @@ -1486,9 +1495,9 @@ dependencies = [ [[package]] name = "comfy-table" -version = "7.1.4" +version = "7.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a65ebfec4fb190b6f90e944a817d60499ee0744e582530e2c9900a22e591d9a" +checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47" dependencies = [ "unicode-segmentation", "unicode-width", @@ -1524,15 +1533,14 @@ dependencies = [ [[package]] name = "const-hex" -version = "1.14.1" +version = "1.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83e22e0ed40b96a48d3db274f72fd365bd78f67af39b6bbd47e8a15e1c6207ff" +checksum = "33e2a781ebdf4467d1428dc4593067825fb646f6871475098d8577421af73558" dependencies = [ "cfg-if", - "cpufeatures", - "hex", + "cpufeatures 0.2.17", "proptest", - "serde", + "serde_core", ] [[package]] @@ -1541,6 +1549,12 @@ version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" +[[package]] +name = "const-oid" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" + [[package]] name = "const-random" version = "0.1.18" @@ -1556,18 +1570,25 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "once_cell", "tiny-keccak", ] +[[package]] +name = "const-str" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3" + [[package]] name = "const_format" -version = "0.2.34" +version = "0.2.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd" +checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e" dependencies = [ "const_format_proc_macros", + "konst", ] [[package]] @@ -1589,9 +1610,9 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.3.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" [[package]] name = "convert_case" @@ -1599,6 +1620,24 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" +[[package]] +name = "convert_case" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca" +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" @@ -1626,90 +1665,140 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] -name = "core2" -version = "0.4.0" +name = "cpp_demangle" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505" +checksum = "f2bb79cb74d735044c972aae58ed0aaa9a837e85b01106a54c39e42e97f62253" dependencies = [ - "memchr", + "cfg-if", ] [[package]] -name = "cpp_demangle" -version = "0.3.5" +name = "cpufeatures" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" dependencies = [ - "cfg-if", + "libc", ] [[package]] name = "cpufeatures" -version = "0.2.17" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201" dependencies = [ "libc", ] +[[package]] +name = "cranelift-assembler-x64" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3cd990d8a6304475bbad64534a0d418f5572f44d5f011437e6b9f1ee7d5c2570" +dependencies = [ + "cranelift-assembler-x64-meta", +] + +[[package]] +name = "cranelift-assembler-x64-meta" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccabe4636007296721080e02d7dab46d4319638ec4e3f6f7402fcb46dc5122c6" +dependencies = [ + "cranelift-srcgen", +] + [[package]] name = "cranelift-bforest" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" +checksum = "da7ed173c870c0aea202a9830880156905a028a88df076e35ce383a8acbf90a7" dependencies = [ "cranelift-entity", ] +[[package]] +name = "cranelift-bitset" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "800cc586df98b12c502e76707c96565e40629a5322eaa15aaa34ba05f5721e31" +dependencies = [ + "serde", + "serde_derive", +] + [[package]] name = "cranelift-codegen" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6e8c31ad3b2270e9aeec38723888fe1b0ace3bea2b06b3f749ccf46661d3220" +checksum = "ae93f863f9094ae34d2567f9edb0ae2c41d35228b286598354dd78b198868ebd" dependencies = [ "bumpalo", + "cranelift-assembler-x64", "cranelift-bforest", + "cranelift-bitset", "cranelift-codegen-meta", "cranelift-codegen-shared", + "cranelift-control", "cranelift-entity", "cranelift-isle", - "gimli 0.27.3", - "hashbrown 0.13.2", + "gimli 0.32.3", + "hashbrown 0.15.5", "log", - "regalloc2 0.6.1", + "pulley-interpreter", + "regalloc2 0.12.2", + "rustc-hash 2.1.3", + "serde", "smallvec", "target-lexicon", + "wasmtime-internal-math", ] [[package]] name = "cranelift-codegen-meta" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8ac5ac30d62b2d66f12651f6b606dbdfd9c2cfd0908de6b387560a277c5c9da" +checksum = "38c505162bcf77dcb859905b3eac56a1917fc3cf326424fb06e7732031e3a8ae" dependencies = [ + "cranelift-assembler-x64-meta", "cranelift-codegen-shared", + "cranelift-srcgen", + "heck 0.5.0", + "pulley-interpreter", ] [[package]] name = "cranelift-codegen-shared" -version = "0.95.1" +version = "0.123.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3b786958bcb79bdb5fbae095af58f0c2da7d7895c475c991f6a6bb5a9c7e6d9" + +[[package]] +name = "cranelift-control" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" +checksum = "2faf9a5009bce7f725ce2af7a08c4883ebac6af933e7e0aa7d84f976f4e6deb5" +dependencies = [ + "arbitrary", +] [[package]] name = "cranelift-entity" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40099d38061b37e505e63f89bab52199037a72b931ad4868d9089ff7268660b0" +checksum = "017271194ba5e101d626560d0d6767efd341468d1ba0f4d015f19fe64020b65b" dependencies = [ + "cranelift-bitset", "serde", + "serde_derive", ] [[package]] name = "cranelift-frontend" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" +checksum = "f80847f0929967f0cec82f9e0543b3901e0f0063690405891f22107b5a130fd8" dependencies = [ "cranelift-codegen", "log", @@ -1719,15 +1808,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80de6a7d0486e4acbd5f9f87ec49912bf4c8fb6aea00087b989685460d4469ba" +checksum = "75904abbc0e7b46d20f7a49c8042c8a4481c0db4253b99889c723c566295d506" [[package]] name = "cranelift-native" -version = "0.95.1" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6b03e0e03801c4b3fd8ce0758a94750c07a44e7944cc0ffbf0d3f2e7c79b00" +checksum = "6e0135923540574362e16f01bf40000664263840991039ff3041ba717de6cf3a" dependencies = [ "cranelift-codegen", "libc", @@ -1735,35 +1824,25 @@ dependencies = [ ] [[package]] -name = "cranelift-wasm" -version = "0.95.1" +name = "cranelift-srcgen" +version = "0.123.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" -dependencies = [ - "cranelift-codegen", - "cranelift-entity", - "cranelift-frontend", - "itertools 0.10.5", - "log", - "smallvec", - "wasmparser", - "wasmtime-types", -] +checksum = "93fb12f76c482e034f6ebefa843c914e74112f088215d8d36d33a649f9fab99b" [[package]] name = "crc" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675" +checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" dependencies = [ "crc-catalog", ] [[package]] name = "crc-catalog" -version = "2.4.0" +version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" +checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853" [[package]] name = "crc32fast" @@ -1782,18 +1861,18 @@ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" [[package]] name = "crossbeam-channel" -version = "0.5.15" +version = "0.5.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-deque" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" dependencies = [ "crossbeam-epoch", "crossbeam-utils", @@ -1801,27 +1880,27 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.18" +version = "0.9.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-queue" -version = "0.3.12" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" +checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" dependencies = [ "crossbeam-utils", ] [[package]] name = "crossbeam-utils" -version = "0.8.21" +version = "0.8.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" [[package]] name = "crunchy" @@ -1843,9 +1922,9 @@ dependencies = [ [[package]] name = "crypto-common" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", @@ -1853,8 +1932,17 @@ dependencies = [ ] [[package]] -name = "crypto-mac" -version = "0.7.0" +name = "crypto-common" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce6e4c961d6cd6c9a86db418387425e8bdeaf05b3c8bc1411e6dca4c252f1453" +dependencies = [ + "hybrid-array 0.4.13", +] + +[[package]] +name = "crypto-mac" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" dependencies = [ @@ -1898,8 +1986,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.18.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1909,7 +1997,8 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus-babe", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sc-network-types", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -1919,28 +2008,34 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" -version = "0.21.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.29.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "array-bytes 6.2.3", "bytes", "cumulus-pallet-parachain-system-proc-macro", "cumulus-primitives-core", "cumulus-primitives-parachain-inherent", "cumulus-primitives-proof-size-hostfunction", + "derive-where", + "docify", "environmental", "frame-benchmarking", "frame-support", "frame-system", - "hashbrown 0.15.4", + "hashbrown 0.15.5", "impl-trait-for-tuples", "log", "pallet-message-queue", "parity-scale-codec", "polkadot-parachain-primitives", + "polkadot-primitives", "polkadot-runtime-parachains", "scale-info", + "sp-api", "sp-consensus-babe", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-externalities", "sp-inherents", "sp-io", @@ -1957,18 +2052,18 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.6.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "cumulus-pallet-weight-reclaim" -version = "0.3.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.11.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "derive-where", @@ -1986,8 +2081,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" -version = "0.19.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2003,8 +2098,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.19.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.26.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2017,8 +2112,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.13.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.20.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -2027,8 +2122,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "12.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "20.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -2044,8 +2139,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.24.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.32.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2058,18 +2153,23 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-state-machine", + "sp-storage", "sp-version", "thiserror 1.0.69", ] [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.20.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.27.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", "polkadot-primitives", + "sp-consensus-babe", + "sp-core", + "sp-io", + "sp-keyring", "sp-runtime", "sp-state-machine", "sp-trie", @@ -2082,7 +2182,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "curve25519-dalek-derive", "digest 0.10.7", "fiat-crypto", @@ -2099,69 +2199,69 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "cxx" -version = "1.0.161" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3523cc02ad831111491dd64b27ad999f1ae189986728e477604e61b81f828df" +checksum = "00424da159cc5adcb4eeea7e7b5cb1d96df41f5fa695ec596922181bdc36232a" dependencies = [ "cc", + "cxx-build", "cxxbridge-cmd", "cxxbridge-flags", "cxxbridge-macro", - "foldhash", + "foldhash 0.2.0", "link-cplusplus", ] [[package]] name = "cxx-build" -version = "1.0.161" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212b754247a6f07b10fa626628c157593f0abf640a3dd04cce2760eca970f909" +checksum = "43e05269dbed4dab7072ae0f04ef31799ad189d52ce2ac12710c2997b754f86a" dependencies = [ "cc", "codespan-reporting", - "indexmap 2.10.0", + "indexmap", "proc-macro2", "quote", "scratch", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "cxxbridge-cmd" -version = "1.0.161" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f426a20413ec2e742520ba6837c9324b55ffac24ead47491a6e29f933c5b135a" +checksum = "e2f017b07e0da7f425642339faff0edc9f0de6459a18180183d086d1f3381e89" dependencies = [ "clap", "codespan-reporting", - "indexmap 2.10.0", + "indexmap", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "cxxbridge-flags" -version = "1.0.161" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a258b6069020b4e5da6415df94a50ee4f586a6c38b037a180e940a43d06a070d" +checksum = "293d267f43a5778bf3b89fff2a658f081166e7f152d9640e2ee3d917d065a5fc" [[package]] name = "cxxbridge-macro" -version = "1.0.161" +version = "1.0.197" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8dec184b52be5008d6eaf7e62fc1802caf1ad1227d11b3b7df2c409c7ffc3f4" +checksum = "72dd233dc128223fe85d2afa5c617c79743c0f47fb495b69234b5da680d4986a" dependencies = [ - "indexmap 2.10.0", + "indexmap", "proc-macro2", "quote", - "rustversion", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2170,8 +2270,18 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" dependencies = [ - "darling_core", - "darling_macro", + "darling_core 0.20.11", + "darling_macro 0.20.11", +] + +[[package]] +name = "darling" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d" +dependencies = [ + "darling_core 0.23.0", + "darling_macro 0.23.0", ] [[package]] @@ -2185,7 +2295,20 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "darling_core" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0" +dependencies = [ + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.119", ] [[package]] @@ -2194,9 +2317,20 @@ version = "0.20.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ - "darling_core", + "darling_core 0.20.11", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "darling_macro" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d" +dependencies = [ + "darling_core 0.23.0", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2209,20 +2343,20 @@ dependencies = [ "hashbrown 0.14.5", "lock_api", "once_cell", - "parking_lot_core 0.9.11", + "parking_lot_core 0.9.12", ] [[package]] name = "data-encoding" -version = "2.9.0" +version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" [[package]] name = "data-encoding-macro" -version = "0.1.18" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" +checksum = "3259c913752a86488b501ed8680446a5ed2d5aeac6e596cb23ba3800768ea32c" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -2230,12 +2364,21 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.16" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" +checksum = "ccc2776f0c61eca1ca32528f85548abd1a4be8fb53d1b21c013e4f18da1e7090" dependencies = [ "data-encoding", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", ] [[package]] @@ -2244,7 +2387,8 @@ 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", "zeroize", ] @@ -2256,7 +2400,7 @@ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ "asn1-rs 0.6.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -2268,9 +2412,9 @@ version = "10.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -2278,12 +2422,9 @@ dependencies = [ [[package]] name = "deranged" -version = "0.4.0" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" -dependencies = [ - "powerfmt", -] +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" [[package]] name = "derivative" @@ -2304,18 +2445,18 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "derive-where" -version = "1.5.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "510c292c8cf384b1a340b816a9a6cf2599eb8f566a44949024af88418000c50b" +checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2324,11 +2465,11 @@ version = "0.99.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" dependencies = [ - "convert_case", + "convert_case 0.4.0", "proc-macro2", "quote", "rustc_version", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2337,7 +2478,16 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" dependencies = [ - "derive_more-impl", + "derive_more-impl 1.0.0", +] + +[[package]] +name = "derive_more" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" +dependencies = [ + "derive_more-impl 2.1.1", ] [[package]] @@ -2348,7 +2498,21 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", + "unicode-xid", +] + +[[package]] +name = "derive_more-impl" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb" +dependencies = [ + "convert_case 0.10.0", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.119", "unicode-xid", ] @@ -2383,11 +2547,22 @@ 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 2.6.1", ] +[[package]] +name = "digest" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2" +dependencies = [ + "block-buffer 0.12.1", + "const-oid 0.10.2", + "crypto-common 0.2.2", +] + [[package]] name = "directories" version = "5.0.1" @@ -2441,13 +2616,13 @@ dependencies = [ [[package]] name = "displaydoc" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2471,7 +2646,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.104", + "syn 2.0.119", "termcolor", "toml 0.8.23", "walkdir", @@ -2497,9 +2672,9 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dtoa" -version = "1.0.10" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" [[package]] name = "dyn-clonable" @@ -2519,7 +2694,7 @@ checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2570,16 +2745,17 @@ dependencies = [ [[package]] name = "ed25519-zebra" -version = "4.0.3" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d9ce6874da5d4415896cd45ffbc4d1cfc0c4f9c079427bd870742c30f2f65a9" +checksum = "775765289f7c6336c18d3d66127527820dd45ffd9eb3b6b8ee4708590e6c20f5" dependencies = [ "curve25519-dalek", "ed25519", - "hashbrown 0.14.5", - "hex", + "hashbrown 0.16.1", + "pkcs8", "rand_core 0.6.4", "sha2 0.10.9", + "subtle 2.6.1", "zeroize", ] @@ -2592,14 +2768,14 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "either" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e" dependencies = [ "serde", ] @@ -2624,6 +2800,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "embedded-io" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced" + +[[package]] +name = "embedded-io" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" + [[package]] name = "encode_unicode" version = "1.0.0" @@ -2639,27 +2827,47 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "enum-display" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02058bb25d8d0605829af88230427dd5cd50661590bd2b09d1baf7c64c417f24" +dependencies = [ + "enum-display-macro", +] + +[[package]] +name = "enum-display-macro" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4be2cf2fe7b971b1865febbacd4d8df544aa6bd377cca011a6d69dcf4c60d94" +dependencies = [ + "convert_case 0.6.0", + "quote", + "syn 1.0.109", ] [[package]] name = "enum-ordinalize" -version = "4.3.0" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5" +checksum = "07f808d588c10e464ea6f7d3eaed500049eff30aaac103460f61828c2d65b3eb" dependencies = [ "enum-ordinalize-derive", ] [[package]] name = "enum-ordinalize-derive" -version = "4.3.1" +version = "4.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff" +checksum = "42e528e2d34ba8a67a1a650b86beae8ef69fc5fdb638016f386b973226590432" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2679,7 +2887,7 @@ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -2690,30 +2898,17 @@ checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "env_filter" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0" -dependencies = [ - "log", - "regex", -] - -[[package]] -name = "env_logger" -version = "0.10.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580" +checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" dependencies = [ - "humantime", - "is-terminal", "log", "regex", - "termcolor", ] [[package]] @@ -2730,12 +2925,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" [[package]] name = "errno" -version = "0.3.13" +version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] @@ -2768,7 +2963,7 @@ dependencies = [ "rlp", "scale-info", "serde", - "sha3", + "sha3 0.10.9", "trie-root", ] @@ -2796,9 +2991,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "event-listener" -version = "5.4.0" +version = "5.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae" +checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" dependencies = [ "concurrent-queue", "parking", @@ -2811,7 +3006,7 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" dependencies = [ - "event-listener 5.4.0", + "event-listener 5.4.1", "pin-project-lite", ] @@ -2833,7 +3028,7 @@ dependencies = [ "rlp", "scale-info", "serde", - "sha3", + "sha3 0.10.9", ] [[package]] @@ -2870,7 +3065,7 @@ dependencies = [ "environmental", "evm-core", "primitive-types", - "sha3", + "sha3 0.10.9", ] [[package]] @@ -2894,26 +3089,32 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "fallible-iterator" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" +checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" [[package]] -name = "fallible-iterator" -version = "0.3.0" +name = "fastbloom" +version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649" +checksum = "ef975e30683b2d965054bb0a836f8973857c4ebf6acf274fe46617cd285060d8" +dependencies = [ + "foldhash 0.2.0", + "libm", + "portable-atomic", + "siphasher 1.0.3", +] [[package]] name = "fastrand" -version = "2.3.0" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" +checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" [[package]] name = "fatality" @@ -2932,11 +3133,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.10.0", - "proc-macro-crate 3.3.0", + "indexmap", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -3019,7 +3220,7 @@ dependencies = [ "sp-block-builder", "sp-consensus", "sp-runtime", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -3039,7 +3240,7 @@ dependencies = [ "maplit", "parity-db", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-block-builder", "sc-client-api", "sc-client-db", @@ -3072,7 +3273,7 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-block-builder", "sc-client-api", "sc-client-db", @@ -3112,7 +3313,7 @@ dependencies = [ "pallet-evm", "parity-scale-codec", "prometheus", - "rand 0.9.2", + "rand 0.9.5", "rlp", "sc-block-builder", "sc-client-api", @@ -3141,7 +3342,7 @@ dependencies = [ "substrate-prometheus-endpoint", "substrate-test-runtime-client", "tempfile", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", ] @@ -3156,7 +3357,7 @@ dependencies = [ "rustc-hex", "serde", "serde_json", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", ] [[package]] @@ -3234,26 +3435,14 @@ dependencies = [ "winapi", ] -[[package]] -name = "file-per-thread-logger" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" -dependencies = [ - "env_logger", - "log", -] - [[package]] name = "filetime" -version = "0.2.25" +version = "0.2.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759" dependencies = [ "cfg-if", "libc", - "libredox", - "windows-sys 0.59.0", ] [[package]] @@ -3268,10 +3457,16 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "scale-info", ] +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + [[package]] name = "fixed-hash" version = "0.8.0" @@ -3279,7 +3474,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", - "rand 0.8.5", + "rand 0.8.7", "rustc-hex", "static_assertions", ] @@ -3304,7 +3499,7 @@ checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095" dependencies = [ "futures-core", "futures-sink", - "spin 0.9.8", + "spin 0.9.9", ] [[package]] @@ -3319,6 +3514,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "foreign-types" version = "0.3.2" @@ -3336,17 +3537,17 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" -version = "13.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "12.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", ] [[package]] name = "form_urlencoded" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" dependencies = [ "percent-encoding", ] @@ -3459,15 +3660,19 @@ dependencies = [ [[package]] name = "fragile" -version = "2.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" +checksum = "8878864ba14bb86e818a412bfd6f18f9eabd4ec0f008a28e8f7eb61db532fcf9" +dependencies = [ + "futures-core", +] [[package]] name = "frame-benchmarking" -version = "41.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "anyhow", "frame-support", "frame-support-procedural", "frame-system", @@ -3489,15 +3694,17 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "49.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "58.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "Inflector", + "anyhow", "array-bytes 6.2.3", "chrono", "clap", "comfy-table", "cumulus-client-parachain-inherent", + "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", "env_filter", "frame-benchmarking", @@ -3512,8 +3719,8 @@ dependencies = [ "parity-scale-codec", "polkadot-parachain-primitives", "polkadot-primitives", - "rand 0.8.5", - "rand_pcg", + "rand 0.8.7", + "rand_pcg 0.3.1", "sc-block-builder", "sc-chain-spec", "sc-cli", @@ -3525,12 +3732,14 @@ dependencies = [ "sc-runtime-utilities", "sc-service", "sc-sysinfo", + "sc-virtualization", "serde", "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-database", "sp-externalities", "sp-genesis-builder", @@ -3545,6 +3754,7 @@ dependencies = [ "sp-transaction-pool", "sp-trie", "sp-version", + "sp-virtualization", "sp-wasm-interface", "subxt", "subxt-signer", @@ -3554,33 +3764,35 @@ dependencies = [ [[package]] name = "frame-decode" -version = "0.7.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" +checksum = "c470df86cf28818dd3cd2fc4667b80dbefe2236c722c3dc1d09e7c6c82d6dfcd" dependencies = [ - "frame-metadata 21.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", + "scale-encode", "scale-info", "scale-type-resolver", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "thiserror 2.0.18", ] [[package]] name = "frame-election-provider-solution-type" -version = "16.1.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "frame-election-provider-support" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3596,8 +3808,8 @@ dependencies = [ [[package]] name = "frame-executive" -version = "41.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "aquamarine", "frame-support", @@ -3614,32 +3826,9 @@ dependencies = [ [[package]] name = "frame-metadata" -version = "20.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26de808fa6461f2485dc51811aefed108850064994fb4a62b3ac21ffa62ac8df" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", - "serde", -] - -[[package]] -name = "frame-metadata" -version = "21.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20dfd1d7eae1d94e32e869e2fb272d81f52dd8db57820a373adb83ea24d7d862" -dependencies = [ - "cfg-if", - "parity-scale-codec", - "scale-info", -] - -[[package]] -name = "frame-metadata" -version = "23.0.0" +version = "23.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c26fcb0454397c522c05fdad5380c4e622f8a875638af33bff5a320d1fc965" +checksum = "9ba5be0edbdb824843a0f9c6f0906ecfc66c5316218d74457003218b24909ed0" dependencies = [ "cfg-if", "parity-scale-codec", @@ -3649,8 +3838,8 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.9.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.16.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "const-hex", @@ -3665,8 +3854,8 @@ dependencies = [ [[package]] name = "frame-storage-access-test-runtime" -version = "0.2.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "cumulus-pallet-parachain-system", "parity-scale-codec", @@ -3679,16 +3868,17 @@ dependencies = [ [[package]] name = "frame-support" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "aquamarine", "array-bytes 6.2.3", "binary-merkle-tree", "bitflags 1.3.2", + "derive-where", "docify", "environmental", - "frame-metadata 23.0.0", + "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -3720,8 +3910,8 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "34.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "40.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "Inflector", "cfg-expr", @@ -3734,36 +3924,36 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.104", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", + "syn 2.0.119", ] [[package]] name = "frame-support-procedural-tools" -version = "13.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "10.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "frame-support-procedural-tools-derive" -version = "12.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "frame-system" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "cfg-if", "docify", @@ -3781,8 +3971,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -3795,8 +3985,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "parity-scale-codec", @@ -3805,8 +3995,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.47.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.54.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support", "parity-scale-codec", @@ -3962,9 +4152,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" [[package]] name = "futures" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876" +checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" dependencies = [ "futures-channel", "futures-core", @@ -3987,9 +4177,9 @@ dependencies = [ [[package]] name = "futures-channel" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" dependencies = [ "futures-core", "futures-sink", @@ -3997,20 +4187,19 @@ dependencies = [ [[package]] name = "futures-core" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" [[package]] name = "futures-executor" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" dependencies = [ "futures-core", "futures-task", "futures-util", - "num_cpus", ] [[package]] @@ -4021,20 +4210,20 @@ checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" dependencies = [ "futures-core", "lock_api", - "parking_lot 0.12.4", + "parking_lot 0.12.5", ] [[package]] name = "futures-io" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" [[package]] name = "futures-lite" -version = "2.6.0" +version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532" +checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad" dependencies = [ "fastrand", "futures-core", @@ -4045,13 +4234,13 @@ dependencies = [ [[package]] name = "futures-macro" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -4067,27 +4256,27 @@ dependencies = [ [[package]] name = "futures-sink" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" [[package]] name = "futures-task" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" [[package]] name = "futures-timer" -version = "3.0.3" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" +checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968" [[package]] name = "futures-util" -version = "0.3.31" +version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ "futures-channel", "futures-core", @@ -4097,7 +4286,6 @@ dependencies = [ "futures-task", "memchr", "pin-project-lite", - "pin-utils", "slab", ] @@ -4111,17 +4299,16 @@ dependencies = [ ] [[package]] -name = "generator" -version = "0.8.5" +name = "fxprof-processed-profile" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d18470a76cb7f8ff746cf1f7470914f900252ec36bbc40b569d74b1258446827" +checksum = "27d12c0aed7f1e24276a241aadc4cb8ea9f83000f34bc062b7cc2d51e3b0fabd" dependencies = [ - "cc", - "cfg-if", - "libc", - "log", - "rustversion", - "windows 0.61.3", + "bitflags 2.13.1", + "debugid", + "fxhash", + "serde", + "serde_json", ] [[package]] @@ -4156,38 +4343,50 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" dependencies = [ "cfg-if", "js-sys", "libc", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", "wasm-bindgen", ] [[package]] name = "getrandom" -version = "0.3.3" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" dependencies = [ "cfg-if", - "js-sys", "libc", - "r-efi", - "wasi 0.14.2+wasi-0.2.4", - "wasm-bindgen", + "r-efi 5.3.0", + "wasip2", ] [[package]] -name = "getrandom_or_panic" -version = "0.0.3" +name = "getrandom" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" dependencies = [ - "rand 0.8.5", + "cfg-if", + "js-sys", + "libc", + "r-efi 6.0.0", + "rand_core 0.10.1", + "wasm-bindgen", +] + +[[package]] +name = "getrandom_or_panic" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ea1015b5a70616b688dc230cfe50c8af89d972cb132d5a622814d29773b10b9" +dependencies = [ + "rand 0.8.7", "rand_core 0.6.4", ] @@ -4203,30 +4402,30 @@ dependencies = [ [[package]] name = "gimli" -version = "0.27.3" +version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ - "fallible-iterator 0.2.0", - "indexmap 1.9.3", + "fallible-iterator", "stable_deref_trait", ] [[package]] name = "gimli" -version = "0.31.1" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" dependencies = [ - "fallible-iterator 0.3.0", + "fallible-iterator", + "indexmap", "stable_deref_trait", ] [[package]] name = "glob" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "governor" @@ -4240,10 +4439,10 @@ dependencies = [ "futures-timer", "no-std-compat", "nonzero_ext", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "portable-atomic", "quanta", - "rand 0.8.5", + "rand 0.8.7", "smallvec", "spinning_top", ] @@ -4271,7 +4470,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.10.0", + "indexmap", "slab", "tokio", "tokio-util", @@ -4280,17 +4479,17 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.11" +version = "0.4.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17da50a276f1e01e0ba6c029e47b7100754904ee8a278f886546e98575380785" +checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155" dependencies = [ "atomic-waker", "bytes", "fnv", "futures-core", "futures-sink", - "http 1.3.1", - "indexmap 2.10.0", + "http 1.4.2", + "indexmap", "slab", "tokio", "tokio-util", @@ -4331,6 +4530,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" @@ -4338,7 +4540,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash", + "ahash 0.8.12", ] [[package]] @@ -4347,22 +4549,39 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", + "ahash 0.8.12", + "allocator-api2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ "allocator-api2", + "equivalent", + "foldhash 0.1.5", "serde", ] [[package]] name = "hashbrown" -version = "0.15.4" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.2.0", ] +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + [[package]] name = "hashlink" version = "0.8.4" @@ -4378,7 +4597,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1" dependencies = [ - "hashbrown 0.15.4", + "hashbrown 0.15.5", ] [[package]] @@ -4393,12 +4612,6 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" -[[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" @@ -4410,23 +4623,23 @@ name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -dependencies = [ - "serde", -] [[package]] name = "hex-conservative" -version = "0.1.2" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" +checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f" +dependencies = [ + "arrayvec 0.7.8", +] [[package]] name = "hex-conservative" -version = "0.2.1" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5313b072ce3c597065a808dbf612c4c8e8590bdbf8b579508bf7a762c5eae6cd" +checksum = "35431185f361ccf3ffc58254628af5f1f5d5f28531da2e02e5d6c82bbc282a10" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", ] [[package]] @@ -4451,7 +4664,7 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.8.5", + "rand 0.8.7", "socket2 0.5.10", "thiserror 1.0.69", "tinyvec", @@ -4476,9 +4689,9 @@ dependencies = [ "idna", "ipnet", "once_cell", - "rand 0.9.2", + "rand 0.9.5", "ring 0.17.14", - "thiserror 2.0.12", + "thiserror 2.0.18", "tinyvec", "tokio", "tracing", @@ -4497,8 +4710,8 @@ dependencies = [ "ipconfig", "lru-cache", "once_cell", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "resolv-conf", "smallvec", "thiserror 1.0.69", @@ -4518,11 +4731,11 @@ dependencies = [ "ipconfig", "moka", "once_cell", - "parking_lot 0.12.4", - "rand 0.9.2", + "parking_lot 0.12.5", + "rand 0.9.5", "resolv-conf", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -4579,12 +4792,11 @@ dependencies = [ [[package]] name = "http" -version = "1.3.1" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" dependencies = [ "bytes", - "fnv", "itoa", ] @@ -4601,24 +4813,24 @@ dependencies = [ [[package]] name = "http-body" -version = "1.0.1" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" dependencies = [ "bytes", - "http 1.3.1", + "http 1.4.2", ] [[package]] name = "http-body-util" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +checksum = "e9f41fd6a08e4d4ec69df65976da761afd5ad5e58a9d4acb46bd1c953a9e3ff2" dependencies = [ "bytes", "futures-core", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "pin-project-lite", ] @@ -4635,16 +4847,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] -name = "humantime" -version = "2.2.0" +name = "hybrid-array" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f" +checksum = "f2d35805454dc9f8662a98d6d61886ffe26bd465f5960e0e55345c70d5c0d2a9" +dependencies = [ + "typenum", +] [[package]] name = "hybrid-array" -version = "0.2.3" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2d35805454dc9f8662a98d6d61886ffe26bd465f5960e0e55345c70d5c0d2a9" +checksum = "818356c5132c1fede50f837ca96afbe78ff42413047f4abb886217845e1b6c8c" dependencies = [ "typenum", ] @@ -4675,16 +4890,17 @@ dependencies = [ [[package]] name = "hyper" -version = "1.6.0" +version = "1.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" dependencies = [ + "atomic-waker", "bytes", "futures-channel", - "futures-util", - "h2 0.4.11", - "http 1.3.1", - "http-body 1.0.1", + "futures-core", + "h2 0.4.15", + "http 1.4.2", + "http-body 1.1.0", "httparse", "httpdate", "itoa", @@ -4696,17 +4912,16 @@ dependencies = [ [[package]] name = "hyper-rustls" -version = "0.27.7" +version = "0.27.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" dependencies = [ - "http 1.3.1", - "hyper 1.6.0", + "http 1.4.2", + "hyper 1.10.1", "hyper-util", "log", "rustls", "rustls-native-certs", - "rustls-pki-types", "tokio", "tokio-rustls", "tower-service", @@ -4714,20 +4929,19 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.16" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ "bytes", "futures-channel", - "futures-core", "futures-util", - "http 1.3.1", - "http-body 1.0.1", - "hyper 1.6.0", + "http 1.4.2", + "http-body 1.1.0", + "hyper 1.10.1", "libc", "pin-project-lite", - "socket2 0.6.0", + "socket2 0.6.5", "tokio", "tower-service", "tracing", @@ -4735,9 +4949,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.63" +version = "0.1.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -4745,7 +4959,7 @@ dependencies = [ "js-sys", "log", "wasm-bindgen", - "windows-core 0.61.2", + "windows-core 0.62.2", ] [[package]] @@ -4759,12 +4973,13 @@ dependencies = [ [[package]] name = "icu_collections" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" dependencies = [ "displaydoc", "potential_utf", + "utf8_iter", "yoke", "zerofrom", "zerovec", @@ -4772,9 +4987,9 @@ dependencies = [ [[package]] name = "icu_locale_core" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" dependencies = [ "displaydoc", "litemap", @@ -4785,11 +5000,10 @@ dependencies = [ [[package]] name = "icu_normalizer" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" dependencies = [ - "displaydoc", "icu_collections", "icu_normalizer_data", "icu_properties", @@ -4800,42 +5014,38 @@ dependencies = [ [[package]] name = "icu_normalizer_data" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" [[package]] name = "icu_properties" -version = "2.0.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" dependencies = [ - "displaydoc", "icu_collections", "icu_locale_core", "icu_properties_data", "icu_provider", - "potential_utf", "zerotrie", "zerovec", ] [[package]] name = "icu_properties_data" -version = "2.0.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" [[package]] name = "icu_provider" -version = "2.0.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" dependencies = [ "displaydoc", "icu_locale_core", - "stable_deref_trait", - "tinystr", "writeable", "yoke", "zerofrom", @@ -4851,9 +5061,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" [[package]] name = "idna" -version = "1.0.3" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" dependencies = [ "idna_adapter", "smallvec", @@ -4862,9 +5072,9 @@ dependencies = [ [[package]] name = "idna_adapter" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" dependencies = [ "icu_normalizer", "icu_properties", @@ -4872,19 +5082,19 @@ dependencies = [ [[package]] name = "if-addrs" -version = "0.10.2" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cabb0019d51a643781ff15c9c8a3e5dedc365c47211270f4e8f82812fedd8f0a" +checksum = "c0a05c691e1fae256cf7013d99dad472dc52d5543322761f83ec8d47eab40d2b" dependencies = [ "libc", - "windows-sys 0.48.0", + "windows-sys 0.61.2", ] [[package]] name = "if-watch" -version = "3.2.1" +version = "3.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdf9d64cfcf380606e64f9a0bcf493616b65331199f984151a6fa11a7b3cde38" +checksum = "71c02a5161c313f0cbdbadc511611893584a10a7b6153cb554bdf83ddce99ec2" dependencies = [ "async-io", "core-foundation 0.9.4", @@ -4900,7 +5110,7 @@ dependencies = [ "rtnetlink", "system-configuration", "tokio", - "windows 0.53.0", + "windows 0.62.2", ] [[package]] @@ -4916,7 +5126,7 @@ dependencies = [ "http 0.2.12", "hyper 0.14.32", "log", - "rand 0.8.5", + "rand 0.8.7", "tokio", "url", "xmltree", @@ -4968,7 +5178,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -4992,31 +5202,16 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", -] - -[[package]] -name = "indexmap" -version = "2.10.0" +version = "2.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661" +checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9" dependencies = [ "equivalent", - "hashbrown 0.15.4", + "hashbrown 0.17.1", + "serde", + "serde_core", ] -[[package]] -name = "indexmap-nostd" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e04e2fd2b8188ea827b32ef11de88377086d690286ab35747ef7f9bf3ccb590" - [[package]] name = "inout" version = "0.1.4" @@ -5044,28 +5239,6 @@ dependencies = [ "num-traits", ] -[[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 = "io-uring" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" -dependencies = [ - "bitflags 2.9.1", - "cfg-if", - "libc", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -5074,38 +5247,39 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" [[package]] name = "ipconfig" -version = "0.3.2" +version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" dependencies = [ - "socket2 0.5.10", + "socket2 0.6.5", "widestring", - "windows-sys 0.48.0", - "winreg", + "windows-registry", + "windows-result", + "windows-sys 0.61.2", ] [[package]] name = "ipnet" -version = "2.11.0" +version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" [[package]] name = "is-terminal" -version = "0.4.16" +version = "0.4.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" +checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46" dependencies = [ - "hermit-abi 0.5.2", + "hermit-abi", "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "is_terminal_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" [[package]] name = "itertools" @@ -5154,9 +5328,57 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "ittapi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1" +dependencies = [ + "anyhow", + "ittapi-sys", + "log", +] + +[[package]] +name = "ittapi-sys" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc" +dependencies = [ + "cc", +] + +[[package]] +name = "jam-codec" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb948eace373d99de60501a02fb17125d30ac632570de20dccc74370cdd611b9" +dependencies = [ + "arrayvec 0.7.8", + "bitvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "jam-codec-derive", + "rustversion", + "serde", +] + +[[package]] +name = "jam-codec-derive" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "319af585c4c8a6b5552a52b7787a1ab3e4d59df7614190b1f85b9b842488789d" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn 2.0.119", +] [[package]] name = "jni" @@ -5167,7 +5389,7 @@ dependencies = [ "cesu8", "cfg-if", "combine", - "jni-sys", + "jni-sys 0.3.1", "log", "thiserror 1.0.69", "walkdir", @@ -5176,35 +5398,58 @@ dependencies = [ [[package]] name = "jni-sys" -version = "0.3.0" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258" +dependencies = [ + "jni-sys 0.4.1", +] + +[[package]] +name = "jni-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2" +dependencies = [ + "jni-sys-macros", +] + +[[package]] +name = "jni-sys-macros" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" +checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264" +dependencies = [ + "quote", + "syn 2.0.119", +] [[package]] name = "jobserver" -version = "0.1.33" +version = "0.1.35" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" +checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.4.3", "libc", ] [[package]] name = "js-sys" -version = "0.3.77" +version = "0.3.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" dependencies = [ - "once_cell", + "cfg-if", + "futures-util", "wasm-bindgen", ] [[package]] name = "jsonrpsee" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37b26c20e2178756451cfeb0661fb74c47dd5988cb7e3939de7e9241fd604d42" +checksum = "72c4b1f204b655b36b24dc4939af20366c649431d4711863bbbae5c495f3eeb4" dependencies = [ "jsonrpsee-client-transport", "jsonrpsee-core", @@ -5218,13 +5463,13 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bacb85abf4117092455e1573625e21b8f8ef4dec8aff13361140b2dc266cdff2" +checksum = "b3e1420b1792cff778e2a1ebaa44115f156ee62a94dd106eaa51163f037d2023" dependencies = [ - "base64 0.22.1", + "base64", "futures-util", - "http 1.3.1", + "http 1.4.2", "jsonrpsee-core", "pin-project", "rustls", @@ -5241,22 +5486,22 @@ dependencies = [ [[package]] name = "jsonrpsee-core" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456196007ca3a14db478346f58c7238028d55ee15c1df15115596e411ff27925" +checksum = "f49bfa9334963e1c85866b39dff3ffcc81f1c286eb23334267c5cb97677543a4" dependencies = [ "async-trait", "bytes", "futures-timer", "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", "jsonrpsee-types", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", - "rand 0.8.5", - "rustc-hash 2.1.1", + "rand 0.8.7", + "rustc-hash 2.1.3", "serde", "serde_json", "thiserror 1.0.69", @@ -5267,28 +5512,28 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e65763c942dfc9358146571911b0cd1c361c2d63e2d2305622d40d36376ca80" +checksum = "f5248249c016692f1465a753057ae8347681995dd490c2cb65c48b14b46215a8" dependencies = [ "heck 0.5.0", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "jsonrpsee-server" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55e363146da18e50ad2b51a0a7925fc423137a0b1371af8235b1c231a0647328" +checksum = "c625c78b8d545478370b6e7a2a191b0d921f831a9eef38dc1e7efb57e7a5472f" dependencies = [ "futures-util", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", - "hyper 1.6.0", + "hyper 1.10.1", "hyper-util", "jsonrpsee-core", "jsonrpsee-types", @@ -5307,11 +5552,11 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a8e70baf945b6b5752fc8eb38c918a48f1234daf11355e07106d963f860089" +checksum = "41d86fc943f81dab0ecdd6c0240b6e0f55ad57a2ea9ad8ad7efe8456fb9cc7a4" dependencies = [ - "http 1.3.1", + "http 1.4.2", "serde", "serde_json", "thiserror 1.0.69", @@ -5319,11 +5564,11 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.24.9" +version = "0.24.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b3323d890aa384f12148e8d2a1fd18eb66e9e7e825f9de4fa53bcc19b93eef" +checksum = "9df5bd5c38c0906a6e8b3a38c8c22cc8525fda25fd1a03a3fe010686aea66b70" dependencies = [ - "http 1.3.1", + "http 1.4.2", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -5346,11 +5591,21 @@ dependencies = [ [[package]] name = "keccak" -version = "0.1.5" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653" +dependencies = [ + "cpufeatures 0.2.17", +] + +[[package]] +name = "keccak" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecc2af9a1119c51f12a14607e783cb977bde58bc069ff0c3da1095e635d70654" +checksum = "9e24a010dd405bd7ed803e5253182815b41bf2e6a80cc3bfc066658e03a198aa" dependencies = [ - "cpufeatures", + "cfg-if", + "cpufeatures 0.3.0", ] [[package]] @@ -5379,6 +5634,21 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" +[[package]] +name = "konst" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb" +dependencies = [ + "konst_macro_rules", +] + +[[package]] +name = "konst_macro_rules" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" + [[package]] name = "kvdb" version = "0.13.0" @@ -5395,21 +5665,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bf7a85fe66f9ff9cd74e169fdd2c94c6e1e74c412c99a73b4df3200b5d3760b2" dependencies = [ "kvdb", - "parking_lot 0.12.4", + "parking_lot 0.12.5", ] [[package]] name = "kvdb-rocksdb" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b644c70b92285f66bfc2032922a79000ea30af7bc2ab31902992a5dcb9b434f6" +checksum = "739ac938a308a9a8b6772fd1d840fd9c0078f9c74fe294feaf32faae727102cc" dependencies = [ "kvdb", "num_cpus", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "regex", "rocksdb", - "smallvec", ] [[package]] @@ -5418,36 +5687,26 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" dependencies = [ - "spin 0.9.8", + "spin 0.9.9", ] [[package]] -name = "lazycell" -version = "1.3.0" +name = "leb128fmt" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" [[package]] name = "libc" -version = "0.2.174" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" - -[[package]] -name = "libloading" -version = "0.8.8" +version = "0.2.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667" -dependencies = [ - "cfg-if", - "windows-targets 0.53.3", -] +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" [[package]] name = "libm" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" [[package]] name = "libp2p" @@ -5459,7 +5718,7 @@ dependencies = [ "either", "futures", "futures-timer", - "getrandom 0.2.16", + "getrandom 0.2.17", "libp2p-allow-block-list", "libp2p-connection-limits", "libp2p-core", @@ -5478,7 +5737,7 @@ dependencies = [ "libp2p-upnp", "libp2p-websocket", "libp2p-yamux", - "multiaddr 0.18.2", + "multiaddr", "pin-project", "rw-stream-sink", "thiserror 1.0.69", @@ -5519,14 +5778,14 @@ dependencies = [ "futures", "futures-timer", "libp2p-identity", - "multiaddr 0.18.2", - "multihash 0.19.3", + "multiaddr", + "multihash", "multistream-select", "once_cell", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", "quick-protobuf", - "rand 0.8.5", + "rand 0.8.7", "rw-stream-sink", "smallvec", "thiserror 1.0.69", @@ -5547,7 +5806,7 @@ dependencies = [ "hickory-resolver 0.24.4", "libp2p-core", "libp2p-identity", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "smallvec", "tracing", ] @@ -5566,7 +5825,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "lru", + "lru 0.12.5", "quick-protobuf", "quick-protobuf-codec", "smallvec", @@ -5577,18 +5836,18 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.2.12" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3104e13b51e4711ff5738caa1fb54467c8604c2e94d607e27745bcf709068774" +checksum = "9525f3831544f7ae497bde79adf114ef127b0fbbb97edbbf692a80408636421c" dependencies = [ "bs58", "ed25519-dalek", "hkdf", - "multihash 0.19.3", - "quick-protobuf", - "rand 0.8.5", + "multihash", + "prost 0.14.4", + "rand 0.8.7", "sha2 0.10.9", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "zeroize", ] @@ -5599,7 +5858,7 @@ version = "0.46.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ced237d0bd84bbebb7c2cad4c073160dacb4fe40534963c32ed6d4c6bb7702a3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "asynchronous-codec 0.7.0", "bytes", "either", @@ -5612,7 +5871,7 @@ dependencies = [ "libp2p-swarm", "quick-protobuf", "quick-protobuf-codec", - "rand 0.8.5", + "rand 0.8.7", "sha2 0.10.9", "smallvec", "thiserror 1.0.69", @@ -5635,7 +5894,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.5", + "rand 0.8.7", "smallvec", "socket2 0.5.10", "tokio", @@ -5673,11 +5932,11 @@ dependencies = [ "futures", "libp2p-core", "libp2p-identity", - "multiaddr 0.18.2", - "multihash 0.19.3", + "multiaddr", + "multihash", "once_cell", "quick-protobuf", - "rand 0.8.5", + "rand 0.8.7", "sha2 0.10.9", "snow", "static_assertions", @@ -5699,7 +5958,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.5", + "rand 0.8.7", "tracing", "void", "web-time", @@ -5718,9 +5977,9 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-tls", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "quinn", - "rand 0.8.5", + "rand 0.8.7", "ring 0.17.14", "rustls", "socket2 0.5.10", @@ -5742,7 +6001,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "rand 0.8.5", + "rand 0.8.7", "smallvec", "tracing", "void", @@ -5762,10 +6021,10 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm-derive", - "lru", + "lru 0.12.5", "multistream-select", "once_cell", - "rand 0.8.5", + "rand 0.8.7", "smallvec", "tokio", "tracing", @@ -5782,7 +6041,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -5848,7 +6107,7 @@ dependencies = [ "futures-rustls", "libp2p-core", "libp2p-identity", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project-lite", "rw-stream-sink", "soketto", @@ -5870,33 +6129,29 @@ dependencies = [ "thiserror 1.0.69", "tracing", "yamux 0.12.1", - "yamux 0.13.5", + "yamux 0.13.10", ] [[package]] name = "libredox" -version = "0.1.9" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3" +checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" dependencies = [ - "bitflags 2.9.1", "libc", - "redox_syscall 0.5.17", ] [[package]] name = "librocksdb-sys" -version = "0.11.0+8.1.1" +version = "0.17.3+10.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e" +checksum = "cef2a00ee60fe526157c9023edab23943fae1ce2ab6f4abb2a807c1746835de9" dependencies = [ "bindgen", "bzip2-sys", "cc", - "glob", "libc", "libz-sys", - "tikv-jemalloc-sys", ] [[package]] @@ -5906,13 +6161,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e79019718125edc905a079a70cfa5f3820bc76139fc91d6f9abc27ea2a887139" dependencies = [ "arrayref", - "base64 0.22.1", + "base64", "digest 0.9.0", "hmac-drbg", "libsecp256k1-core", "libsecp256k1-gen-ecmult", "libsecp256k1-gen-genmult", - "rand 0.8.5", + "rand 0.8.7", "serde", "sha2 0.9.9", "typenum", @@ -5960,9 +6215,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.22" +version = "1.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d" +checksum = "85bc9657773828b90eeb625adff10eeac83cc21bbfd8e23a03eaa8a33c9e28d9" dependencies = [ "cc", "pkg-config", @@ -5971,9 +6226,9 @@ dependencies = [ [[package]] name = "link-cplusplus" -version = "1.0.10" +version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a6f6da007f968f9def0d65a05b187e2960183de70c160204ecfccf0ee330212" +checksum = "7f78c730aaa7d0b9336a299029ea49f9ee53b0ed06e9202e8cb7db9bae7b8c82" dependencies = [ "cc", ] @@ -5986,9 +6241,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" [[package]] name = "linked_hash_set" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bae85b5be22d9843c80e5fc80e9b64c8a3b1f98f867c709956eca3efff4e92e2" +checksum = "984fb35d06508d1e69fc91050cceba9c0b748f983e6739fa2c7a9237154c52c8" dependencies = [ "linked-hash-map", ] @@ -6004,21 +6259,9 @@ dependencies = [ [[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.9.4" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" [[package]] name = "lioness" @@ -6034,42 +6277,46 @@ dependencies = [ [[package]] name = "litemap" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" [[package]] name = "litep2p" -version = "0.9.5" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14fb10e63363204b89d91e1292df83322fd9de5d7fa76c3d5c78ddc2f8f3efa9" +checksum = "67508e7500fe69a99a038d2fba84fb30f23cac9d98bfeb7f5a1389ddd137b579" dependencies = [ "async-trait", "bs58", "bytes", - "cid 0.11.1", + "cid", "ed25519-dalek", + "enum-display", "futures", "futures-timer", "hickory-resolver 0.25.2", - "indexmap 2.10.0", + "indexmap", + "ip_network", "libc", "mockall", - "multiaddr 0.17.1", - "multihash 0.17.0", + "multiaddr", + "multihash", + "multihash-codetable", "network-interface", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", "prost 0.13.5", - "prost-build", - "rand 0.8.5", + "prost-build 0.14.4", + "rand 0.8.7", + "ring 0.17.14", "serde", - "sha2 0.10.9", + "sha2 0.11.0", "simple-dns", "smallvec", "snow", "socket2 0.5.10", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tokio-tungstenite", @@ -6080,38 +6327,33 @@ dependencies = [ "url", "x25519-dalek", "x509-parser 0.17.0", - "yamux 0.13.5", + "yamux 0.13.10", "yasna", "zeroize", ] [[package]] name = "lock_api" -version = "0.4.13" +version = "0.4.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ - "autocfg", "scopeguard", ] [[package]] name = "log" -version = "0.4.27" +version = "0.4.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" [[package]] -name = "loom" -version = "0.7.2" +name = "lru" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" dependencies = [ - "cfg-if", - "generator", - "scoped-tls", - "tracing", - "tracing-subscriber", + "hashbrown 0.12.3", ] [[package]] @@ -6120,7 +6362,7 @@ version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" dependencies = [ - "hashbrown 0.15.4", + "hashbrown 0.15.5", ] [[package]] @@ -6158,10 +6400,10 @@ dependencies = [ ] [[package]] -name = "mach" -version = "0.3.2" +name = "mach2" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" dependencies = [ "libc", ] @@ -6175,7 +6417,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -6189,7 +6431,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -6200,7 +6442,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -6211,14 +6453,14 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "macrotest" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bf02346400dec0d7e4af0aa787c28acf174ce54a9c77f6507a1ee62e2aa2ca2" +checksum = "cd198afd908012e57564b66e43e7d4d19056cec7e6232e9e6d54a1798622f81d" dependencies = [ "diff", "fastrand", @@ -6227,8 +6469,8 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "syn 2.0.104", - "toml 0.9.4", + "syn 2.0.119", + "toml 1.1.3+spec-1.1.0", ] [[package]] @@ -6237,6 +6479,17 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" +[[package]] +name = "match-lookup" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + [[package]] name = "matchers" version = "0.1.0" @@ -6248,9 +6501,9 @@ dependencies = [ [[package]] name = "matrixmultiply" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08" +checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7" dependencies = [ "autocfg", "rawpointer", @@ -6258,17 +6511,17 @@ dependencies = [ [[package]] name = "memchr" -version = "2.7.5" +version = "2.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" [[package]] name = "memfd" -version = "0.6.4" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" +checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" dependencies = [ - "rustix 0.38.44", + "rustix", ] [[package]] @@ -6282,42 +6535,33 @@ dependencies = [ [[package]] name = "memmap2" -version = "0.9.7" +version = "0.9.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28" +checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" dependencies = [ "libc", ] -[[package]] -name = "memoffset" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" -dependencies = [ - "autocfg", -] - [[package]] name = "memory-db" version = "0.34.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e300c54e3239a86f9c61cc63ab0f03862eb40b1c6e065dc6fd6ceaeff6da93d" dependencies = [ - "foldhash", + "foldhash 0.1.5", "hash-db", - "hashbrown 0.15.4", + "hashbrown 0.15.5", ] [[package]] name = "merkleized-metadata" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3e3e3f549d27d2dc054372f320ddf68045a833fab490563ff70d4cf1b9d91ea" +checksum = "a55738f9a2a91692acbdc68066e4b60d4101a8599a474e039dbd449cf2cff701" dependencies = [ - "array-bytes 9.1.2", + "array-bytes 9.3.0", "blake3", - "frame-metadata 23.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", "scale-info", @@ -6330,7 +6574,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58c38e2799fc0978b65dfff8023ec7843e2330bb462f19198840b34b6582397d" dependencies = [ "byteorder", - "keccak", + "keccak 0.1.6", "rand_core 0.6.4", "zeroize", ] @@ -6352,13 +6596,13 @@ dependencies = [ [[package]] name = "mio" -version = "1.0.4" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" dependencies = [ "libc", - "wasi 0.11.1+wasi-snapshot-preview1", - "windows-sys 0.59.0", + "wasi", + "windows-sys 0.61.2", ] [[package]] @@ -6368,7 +6612,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "daa3eb39495d8e2e2947a1d862852c90cc6a4a8845f8b41c8829cb9fcc047f4a" dependencies = [ "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "bitflags 1.3.2", "blake2 0.10.6", "c2-chacha", @@ -6377,8 +6621,8 @@ dependencies = [ "hashlink 0.8.4", "lioness", "log", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_distr", "subtle 2.6.1", @@ -6392,10 +6636,10 @@ version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de49b3df74c35498c0232031bb7e85f9389f913e2796169c8ab47a53993a18f" dependencies = [ - "hybrid-array", + "hybrid-array 0.2.3", "kem", "rand_core 0.6.4", - "sha3", + "sha3 0.10.9", "zeroize", ] @@ -6422,25 +6666,23 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "moka" -version = "0.12.10" +version = "0.12.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9321642ca94a4282428e6ea4af8cc2ca4eac48ac7a6a4ea8f33f76d0ce70926" +checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046" dependencies = [ "crossbeam-channel", "crossbeam-epoch", "crossbeam-utils", - "loom", - "parking_lot 0.12.4", + "equivalent", + "parking_lot 0.12.5", "portable-atomic", - "rustc_version", "smallvec", "tagptr", - "thiserror 1.0.69", "uuid", ] @@ -6450,25 +6692,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "685a9ac4b61f4e728e1d2c6a7844609c16527aeb5e6c865915c08e619c16410f" -[[package]] -name = "multiaddr" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" -dependencies = [ - "arrayref", - "byteorder", - "data-encoding", - "log", - "multibase", - "multihash 0.17.0", - "percent-encoding", - "serde", - "static_assertions", - "unsigned-varint 0.7.2", - "url", -] - [[package]] name = "multiaddr" version = "0.18.2" @@ -6480,7 +6703,7 @@ dependencies = [ "data-encoding", "libp2p-identity", "multibase", - "multihash 0.19.3", + "multihash", "percent-encoding", "serde", "static_assertions", @@ -6490,54 +6713,60 @@ dependencies = [ [[package]] name = "multibase" -version = "0.9.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +checksum = "7e0e4a371cbf1dfd666b658ba137763edb23c45beb43cfe369b5593cd6b437b6" dependencies = [ "base-x", + "base256emoji", + "base45", "data-encoding", "data-encoding-macro", ] [[package]] name = "multihash" -version = "0.17.0" +version = "0.19.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "577c63b00ad74d57e8c9aa870b5fccebf2fd64a308a5aee9f1bb88e4aea19447" +dependencies = [ + "unsigned-varint 0.8.0", +] + +[[package]] +name = "multihash-codetable" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" +checksum = "60384411b100398c5b2fdca476eed82e9898d09f2c60d1b1b66c5080ebe06118" dependencies = [ "blake2b_simd", - "blake2s_simd", - "blake3", - "core2", - "digest 0.10.7", + "digest 0.11.3", "multihash-derive", - "sha2 0.10.9", - "sha3", - "unsigned-varint 0.7.2", + "sha2 0.11.0", + "sha3 0.11.0", ] [[package]] -name = "multihash" -version = "0.19.3" +name = "multihash-derive" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d" +checksum = "4723acdce756db211a53f01b3419dbdf63cb48cef5df86260f55309364735fbf" dependencies = [ - "core2", - "unsigned-varint 0.8.0", + "multihash", + "multihash-derive-impl", ] [[package]] -name = "multihash-derive" -version = "0.8.1" +name = "multihash-derive-impl" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d6d4752e6230d8ef7adf7bd5d8c4b1f6561c1014c5ba9a37445ccefe18aa1db" +checksum = "f932556f78452e5604cef711349d337ec081a9aa3c96e67b3127c8f5df05d550" dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro-error", + "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", - "synstructure 0.12.6", + "syn 2.0.119", + "synstructure", ] [[package]] @@ -6562,9 +6791,9 @@ dependencies = [ [[package]] name = "nalgebra" -version = "0.33.2" +version = "0.33.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26aecdf64b707efd1310e3544d709c5c0ac61c13756046aaaba41be5c4f66a3b" +checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd" dependencies = [ "approx", "matrixmultiply", @@ -6581,7 +6810,7 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7bddcd3bf5144b6392de80e04c347cd7fab2508f6df16a85fc496ecd5cec39bc" dependencies = [ - "rand 0.8.5", + "rand 0.8.7", ] [[package]] @@ -6592,9 +6821,9 @@ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" [[package]] name = "native-tls" -version = "0.2.14" +version = "0.2.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e" +checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2" dependencies = [ "libc", "log", @@ -6602,70 +6831,54 @@ dependencies = [ "openssl-probe", "openssl-sys", "schannel", - "security-framework 2.11.1", + "security-framework", "security-framework-sys", "tempfile", ] [[package]] name = "netlink-packet-core" -version = "0.7.0" +version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72724faf704479d67b388da142b186f916188505e7e0b26719019c525882eda4" +checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4" dependencies = [ - "anyhow", - "byteorder", - "netlink-packet-utils", + "paste", ] [[package]] name = "netlink-packet-route" -version = "0.17.1" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053998cea5a306971f88580d0829e90f270f940befd7cf928da179d4187a5a66" +checksum = "4ce3636fa715e988114552619582b530481fd5ef176a1e5c1bf024077c2c9445" dependencies = [ - "anyhow", - "bitflags 1.3.2", - "byteorder", + "bitflags 2.13.1", "libc", + "log", "netlink-packet-core", - "netlink-packet-utils", -] - -[[package]] -name = "netlink-packet-utils" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ede8a08c71ad5a95cdd0e4e52facd37190977039a4704eb82a283f713747d34" -dependencies = [ - "anyhow", - "byteorder", - "paste", - "thiserror 1.0.69", ] [[package]] name = "netlink-proto" -version = "0.11.5" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72452e012c2f8d612410d89eea01e2d9b56205274abb35d53f60200b2ec41d60" +checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128" dependencies = [ "bytes", "futures", "log", "netlink-packet-core", "netlink-sys", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "netlink-sys" -version = "0.8.7" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16c903aa70590cb93691bf97a767c8d1d6122d2cc9070433deb3bbf36ce8bd23" +checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae" dependencies = [ "bytes", - "futures", + "futures-util", "libc", "log", "tokio", @@ -6673,24 +6886,25 @@ dependencies = [ [[package]] name = "network-interface" -version = "2.0.2" +version = "2.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "862f41f1276e7148fb597fc55ed8666423bebe045199a1298c3515a73ec5cdd9" +checksum = "4ddcb8865ad3d9950f22f42ffa0ef0aecbfbf191867b3122413602b0a360b2a6" dependencies = [ "cc", "libc", - "thiserror 2.0.12", + "thiserror 2.0.18", "winapi", ] [[package]] name = "nix" -version = "0.26.4" +version = "0.30.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" +checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.13.1", "cfg-if", + "cfg_aliases 0.2.2", "libc", ] @@ -6722,6 +6936,15 @@ dependencies = [ "minimal-lexical", ] +[[package]] +name = "nom" +version = "8.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405" +dependencies = [ + "memchr", +] + [[package]] name = "nonempty" version = "0.7.0" @@ -6736,9 +6959,9 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] name = "ntapi" -version = "0.4.1" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" dependencies = [ "winapi", ] @@ -6769,9 +6992,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.6" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" dependencies = [ "num-integer", "num-traits", @@ -6788,20 +7011,9 @@ dependencies = [ [[package]] name = "num-conv" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" - -[[package]] -name = "num-derive" -version = "0.4.2" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.104", -] +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" [[package]] name = "num-format" @@ -6809,7 +7021,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "itoa", ] @@ -6824,11 +7036,10 @@ dependencies = [ [[package]] name = "num-iter" -version = "0.1.45" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" dependencies = [ - "autocfg", "num-integer", "num-traits", ] @@ -6860,15 +7071,15 @@ version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" dependencies = [ - "hermit-abi 0.5.2", + "hermit-abi", "libc", ] [[package]] name = "num_enum" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" dependencies = [ "num_enum_derive", "rustversion", @@ -6876,34 +7087,34 @@ dependencies = [ [[package]] name = "num_enum_derive" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "object" -version = "0.30.4" +version = "0.36.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ - "crc32fast", - "hashbrown 0.13.2", - "indexmap 1.9.3", "memchr", ] [[package]] name = "object" -version = "0.36.7" +version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ + "crc32fast", + "hashbrown 0.15.5", + "indexmap", "memchr", ] @@ -6922,14 +7133,14 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", ] [[package]] name = "once_cell" -version = "1.21.3" +version = "1.21.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" dependencies = [ "critical-section", "portable-atomic", @@ -6937,9 +7148,9 @@ dependencies = [ [[package]] name = "once_cell_polyfill" -version = "1.70.1" +version = "1.70.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "opaque-debug" @@ -6955,15 +7166,14 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[package]] name = "openssl" -version = "0.10.73" +version = "0.10.81" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8" +checksum = "77823a27f0babb03091cb9ed9ef80af3b39dbc82f97e8fa530374b7dafd87a45" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", "cfg-if", "foreign-types", "libc", - "once_cell", "openssl-macros", "openssl-sys", ] @@ -6976,20 +7186,20 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "openssl-probe" -version = "0.1.6" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e" +checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe" [[package]] name = "openssl-sys" -version = "0.9.109" +version = "0.9.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571" +checksum = "b47e7e6bb2c38cd930d25a23b40fa52e068c10e85f3e03a7f5ba5aaca5713695" dependencies = [ "cc", "libc", @@ -7027,10 +7237,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43dfaf083aef571385fccfdc3a2f8ede8d0a1863160455d4f2b014d8f7d04a3f" dependencies = [ "expander", - "indexmap 2.10.0", + "indexmap", "itertools 0.11.0", "petgraph 0.6.5", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", "syn 1.0.109", @@ -7042,10 +7252,24 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" +[[package]] +name = "pallet-accumulate-and-forward" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-runtime", +] + [[package]] name = "pallet-asset-conversion" -version = "23.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7062,8 +7286,8 @@ dependencies = [ [[package]] name = "pallet-asset-rate" -version = "20.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7076,8 +7300,8 @@ dependencies = [ [[package]] name = "pallet-aura" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support", "frame-system", @@ -7092,8 +7316,8 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support", "frame-system", @@ -7107,8 +7331,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support", "frame-system", @@ -7120,8 +7344,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,8 +7367,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "42.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -7173,8 +7397,8 @@ dependencies = [ [[package]] name = "pallet-broker" -version = "0.20.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitvec", "frame-benchmarking", @@ -7208,8 +7432,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7217,10 +7441,11 @@ dependencies = [ "frame-system", "log", "parity-scale-codec", - "rand 0.8.5", + "rand 0.8.7", "scale-info", "sp-arithmetic", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-io", "sp-npos-elections", "sp-runtime", @@ -7318,7 +7543,7 @@ version = "0.1.0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -7463,8 +7688,8 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -7481,8 +7706,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7518,8 +7743,8 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7534,8 +7759,8 @@ dependencies = [ [[package]] name = "pallet-message-queue" -version = "44.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "environmental", "frame-benchmarking", @@ -7553,8 +7778,8 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "parity-scale-codec", @@ -7565,13 +7790,14 @@ dependencies = [ [[package]] name = "pallet-session" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", "log", + "pallet-balances", "pallet-timestamp", "parity-scale-codec", "scale-info", @@ -7584,10 +7810,26 @@ dependencies = [ "sp-trie", ] +[[package]] +name = "pallet-session-benchmarking" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "pallet-session", + "pallet-staking", + "parity-scale-codec", + "rand 0.8.7", + "sp-runtime", + "sp-session", +] + [[package]] name = "pallet-staking" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7608,8 +7850,8 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" -version = "23.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "19.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "sp-arithmetic", @@ -7617,8 +7859,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -7632,8 +7874,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -7650,12 +7892,13 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "serde", @@ -7665,8 +7908,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "44.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "52.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -7681,8 +7924,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7693,8 +7936,8 @@ dependencies = [ [[package]] name = "pallet-treasury" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -7712,8 +7955,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7727,8 +7970,8 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "49.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "frame-benchmarking", "frame-support", @@ -7739,19 +7982,6 @@ dependencies = [ "sp-runtime", ] -[[package]] -name = "parity-bip39" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e69bf016dc406eff7d53a7d3f7cf1c2e72c82b9088aac1118591e36dd2cd3e9" -dependencies = [ - "bitcoin_hashes 0.13.0", - "rand 0.8.5", - "rand_core 0.6.4", - "serde", - "unicode-normalization", -] - [[package]] name = "parity-db" version = "0.4.13" @@ -7766,8 +7996,8 @@ dependencies = [ "log", "lz4", "memmap2 0.5.10", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "siphasher 0.3.11", "snap", "winapi", @@ -7779,7 +8009,7 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "bitvec", "byte-slice-cast", "bytes", @@ -7796,10 +8026,10 @@ version = "3.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -7827,12 +8057,12 @@ dependencies = [ [[package]] name = "parking_lot" -version = "0.12.4" +version = "0.12.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" dependencies = [ "lock_api", - "parking_lot_core 0.9.11", + "parking_lot_core 0.9.12", ] [[package]] @@ -7851,15 +8081,15 @@ dependencies = [ [[package]] name = "parking_lot_core" -version = "0.9.11" +version = "0.9.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.5.17", + "redox_syscall 0.5.18", "smallvec", - "windows-targets 0.52.6", + "windows-link", ] [[package]] @@ -7897,43 +8127,45 @@ dependencies = [ ] [[package]] -name = "peeking_take_while" -version = "0.1.2" +name = "pem" +version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" +dependencies = [ + "base64", + "serde_core", +] [[package]] -name = "pem" -version = "3.0.5" +name = "pem-rfc7468" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38af38e8470ac9dee3ce1bae1af9c1671fffc44ddfd8bd1d0a3445bf349a8ef3" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" dependencies = [ - "base64 0.22.1", - "serde", + "base64ct", ] [[package]] name = "percent-encoding" -version = "2.3.1" +version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.8.1" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323" +checksum = "47627dd7305c6a2d6c8c6bcd24c5a4c17dbbf425f4f9c5313e724b38fc9782e9" dependencies = [ "memchr", - "thiserror 2.0.12", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.8.1" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc" +checksum = "4b4254325ecad416ab689e27ba51da03ba01a9632bc6e108f5fe7c3c4ad29d58" dependencies = [ "pest", "pest_generator", @@ -7941,25 +8173,24 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.8.1" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966" +checksum = "6c4c0e91ead7a8f7acecbca6f003fc2e8282b1dbe2dd9c9d2f16aba42995e0a7" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "pest_meta" -version = "2.8.1" +version = "2.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5" +checksum = "f9744bc48116fee06334924bb5f2bad41eed5e89bd26e29b0b799f9a3f82c210" dependencies = [ "pest", - "sha2 0.10.9", ] [[package]] @@ -7969,7 +8200,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset 0.4.2", - "indexmap 2.10.0", + "indexmap", ] [[package]] @@ -7979,34 +8210,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" dependencies = [ "fixedbitset 0.5.7", - "indexmap 2.10.0", + "indexmap", +] + +[[package]] +name = "petgraph" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455" +dependencies = [ + "fixedbitset 0.5.7", + "hashbrown 0.15.5", + "indexmap", ] +[[package]] +name = "picosimd" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7823ffd00d2b55ebe51750a19f47f2a33cb1f1d135f5cba893379b81c4d44856" + [[package]] name = "pin-project" -version = "1.1.10" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.10" +version = "1.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "pin-project-lite" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" [[package]] name = "pin-utils" @@ -8016,9 +8264,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "piper" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1" dependencies = [ "atomic-waker", "fastrand", @@ -8037,15 +8285,15 @@ dependencies = [ [[package]] name = "pkg-config" -version = "0.3.32" +version = "0.3.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" +checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e" [[package]] name = "polkadot-ckb-merkle-mountain-range" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "221c71b432b38e494a0fdedb5f720e4cb974edf03a0af09e5b2238dbac7e6947" +checksum = "f70a16374b7a26b74bfb4788254f8fd64c3406034e81694142cf93f1dd59368f" dependencies = [ "cfg-if", "itertools 0.10.5", @@ -8053,8 +8301,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "18.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -8064,8 +8312,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "24.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bs58", "futures", @@ -8081,8 +8329,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "24.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -8094,7 +8342,7 @@ dependencies = [ "parity-scale-codec", "polkadot-node-primitives", "polkadot-primitives", - "rand 0.8.5", + "rand 0.8.7", "sc-authority-discovery", "sc-network", "sc-network-types", @@ -8106,8 +8354,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "20.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitvec", "bounded-vec", @@ -8130,8 +8378,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "24.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "derive_more 0.99.20", @@ -8158,8 +8406,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "24.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "32.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", @@ -8178,9 +8426,10 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "17.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "array-bytes 6.2.3", "bounded-collections", "derive_more 0.99.20", "parity-scale-codec", @@ -8194,8 +8443,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "19.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "25.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitvec", "bounded-collections", @@ -8223,8 +8472,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "20.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitvec", "frame-benchmarking", @@ -8273,8 +8522,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "21.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bs58", "frame-benchmarking", @@ -8285,8 +8534,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "20.0.2" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -8304,6 +8553,7 @@ dependencies = [ "pallet-message-queue", "pallet-mmr", "pallet-session", + "pallet-session-benchmarking", "pallet-staking", "pallet-timestamp", "parity-scale-codec", @@ -8311,7 +8561,7 @@ dependencies = [ "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-metrics", - "rand 0.8.5", + "rand 0.8.7", "rand_chacha 0.3.1", "scale-info", "serde", @@ -8333,8 +8583,8 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" -version = "0.10.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.18.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-benchmarking", @@ -8354,6 +8604,7 @@ dependencies = [ "sp-consensus-aura", "sp-consensus-grandpa", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-genesis-builder", "sp-inherents", "sp-io", @@ -8368,27 +8619,14 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "20.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "polkadot-primitives", "tracing-gum", ] -[[package]] -name = "polkavm" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2a01db119bb3a86572c0641ba6e7c9786fbd2ac89c25b43b688c4e353787526" -dependencies = [ - "libc", - "log", - "polkavm-assembler 0.24.0", - "polkavm-common 0.24.0", - "polkavm-linux-raw 0.24.0", -] - [[package]] name = "polkavm" version = "0.25.0" @@ -8403,12 +8641,17 @@ dependencies = [ ] [[package]] -name = "polkavm-assembler" -version = "0.24.0" +name = "polkavm" +version = "0.33.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eea6105f3f344abe0bf0151d67b3de6f5d24353f2393355ecf3f5f6e06d7fd0b" +checksum = "d90ece49c68657299648e20469517e22c6ec38321307bb14a69c27a33927a491" dependencies = [ + "libc", "log", + "picosimd", + "polkavm-assembler 0.33.0", + "polkavm-common 0.33.0", + "polkavm-linux-raw 0.33.0", ] [[package]] @@ -8421,13 +8664,12 @@ dependencies = [ ] [[package]] -name = "polkavm-common" -version = "0.24.0" +name = "polkavm-assembler" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d91ed9e5af472f729fcf3b3c1cf17508ddbb3505259dd6e2ee0fb5a29e105d22" +checksum = "00010f7924647dbf6f468d85d0fcfe4c3587cfb4557ef13f3682dbece8fd57f0" dependencies = [ "log", - "polkavm-assembler 0.24.0", ] [[package]] @@ -8441,12 +8683,14 @@ dependencies = [ ] [[package]] -name = "polkavm-derive" -version = "0.24.0" +name = "polkavm-common" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "176144f8661117ea95fa7cf868c9a62d6b143e8a2ebcb7582464c3faade8669a" +checksum = "9e44a9487003cf5b9fc4462bbcf105cc37d5d9b18b40edf5ed50dd20ed1fdb27" dependencies = [ - "polkavm-derive-impl-macro 0.24.0", + "log", + "picosimd", + "polkavm-assembler 0.33.0", ] [[package]] @@ -8459,15 +8703,12 @@ dependencies = [ ] [[package]] -name = "polkavm-derive-impl" -version = "0.24.0" +name = "polkavm-derive" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5a21844afdfcc10c92b9ef288ccb926211af27478d1730fcd55e4aec710179d" +checksum = "3ef966bc8518a66ce12d4edb73f2c4094cae72bb23258bc9e9b2802cc9d6cd79" dependencies = [ - "polkavm-common 0.24.0", - "proc-macro2", - "quote", - "syn 2.0.104", + "polkavm-derive-impl-macro 0.33.0", ] [[package]] @@ -8479,17 +8720,19 @@ dependencies = [ "polkavm-common 0.25.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] -name = "polkavm-derive-impl-macro" -version = "0.24.0" +name = "polkavm-derive-impl" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba0ef0f17ad81413ea1ca5b1b67553aedf5650c88269b673d3ba015c83bc2651" +checksum = "f0c2166ad71dd7f51dcdd0d91b70d408a8b3610fa6e94d8202dd4b7185607181" dependencies = [ - "polkavm-derive-impl 0.24.0", - "syn 2.0.104", + "polkavm-common 0.33.0", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -8499,49 +8742,59 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0105f050c7bce74fa4327a3e8e5c8a6368e39a7c93c5e8e99b33df90c097c859" dependencies = [ "polkavm-derive-impl 0.25.0", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "polkavm-derive-impl-macro" +version = "0.33.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7ac2ac8ec5b938e249fa97b5ebb1e6fa47000c81a25eba6bf0f13edb8d430e4" +dependencies = [ + "polkavm-derive-impl 0.33.0", + "syn 2.0.119", ] [[package]] name = "polkavm-linker" -version = "0.24.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06c95a521a1331024ebe5823ffdfba9ea6df40b934b0804049d5171887579806" +checksum = "046d371182d27b707e116d1637ccdc8514e0e123130139ecff62bd78d987c622" dependencies = [ "dirs", "gimli 0.31.1", "hashbrown 0.14.5", "log", "object 0.36.7", - "polkavm-common 0.24.0", + "polkavm-common 0.33.0", "regalloc2 0.9.3", "rustc-demangle", ] [[package]] name = "polkavm-linux-raw" -version = "0.24.0" +version = "0.25.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ec0b13e26ec7234dba213ca17118c70c562809bdce0eefe84f92613d5c8da26" +checksum = "30993b46019e02b9d3de07e09d84f5b4474244ec966028fa95a38547076ffd93" [[package]] name = "polkavm-linux-raw" -version = "0.25.0" +version = "0.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30993b46019e02b9d3de07e09d84f5b4474244ec966028fa95a38547076ffd93" +checksum = "42063d4a1c52e569f7794df27dab3e19c9fa8946184023257bdbb43eb4a94be5" [[package]] name = "polling" -version = "3.9.0" +version = "3.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ee9b2fa7a4517d2c91ff5bc6c297a427a96749d15f98fcdbb22c05571a4d4b7" +checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" dependencies = [ "cfg-if", "concurrent-queue", - "hermit-abi 0.5.2", + "hermit-abi", "pin-project-lite", - "rustix 1.0.8", - "windows-sys 0.60.2", + "rustix", + "windows-sys 0.61.2", ] [[package]] @@ -8550,7 +8803,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf" dependencies = [ - "cpufeatures", + "cpufeatures 0.2.17", "opaque-debug 0.3.1", "universal-hash", ] @@ -8562,22 +8815,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "opaque-debug 0.3.1", "universal-hash", ] [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3" + +[[package]] +name = "postcard" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24" +dependencies = [ + "cobs", + "embedded-io 0.4.0", + "embedded-io 0.6.1", + "serde", +] [[package]] name = "potential_utf" -version = "0.1.2" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" dependencies = [ "zerovec", ] @@ -8638,8 +8903,8 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.104", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", + "syn 2.0.119", "trybuild", ] @@ -8665,9 +8930,9 @@ dependencies = [ [[package]] name = "predicates" -version = "3.1.3" +version = "3.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573" +checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe" dependencies = [ "anstyle", "predicates-core", @@ -8675,15 +8940,15 @@ dependencies = [ [[package]] name = "predicates-core" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa" +checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144" [[package]] name = "predicates-tree" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c" +checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2" dependencies = [ "predicates-core", "termtree", @@ -8691,12 +8956,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.36" +version = "0.2.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -8732,21 +8997,11 @@ dependencies = [ [[package]] name = "proc-macro-crate" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" -dependencies = [ - "thiserror 1.0.69", - "toml 0.5.11", -] - -[[package]] -name = "proc-macro-crate" -version = "3.3.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" dependencies = [ - "toml_edit", + "toml_edit 0.25.13+spec-1.1.0", ] [[package]] @@ -8792,7 +9047,7 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -8803,14 +9058,14 @@ checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "proc-macro2" -version = "1.0.95" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -8825,7 +9080,7 @@ dependencies = [ "fnv", "lazy_static", "memchr", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "thiserror 1.0.69", ] @@ -8837,7 +9092,7 @@ checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca" dependencies = [ "dtoa", "itoa", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "prometheus-client-derive-encode", ] @@ -8849,22 +9104,21 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "proptest" -version = "1.7.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fcdab19deb5195a31cf7726a210015ff1496ba1464fd42cb4f537b8b01b471f" +checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744" dependencies = [ - "bitflags 2.9.1", - "lazy_static", + "bitflags 2.13.1", "num-traits", - "rand 0.9.2", + "rand 0.9.5", "rand_chacha 0.9.0", "rand_xorshift", - "regex-syntax 0.8.5", + "regex-syntax 0.8.11", "unarray", ] @@ -8888,6 +9142,16 @@ dependencies = [ "prost-derive 0.13.5", ] +[[package]] +name = "prost" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1" +dependencies = [ + "bytes", + "prost-derive 0.14.4", +] + [[package]] name = "prost-build" version = "0.13.5" @@ -8902,9 +9166,28 @@ dependencies = [ "petgraph 0.7.1", "prettyplease", "prost 0.13.5", - "prost-types", + "prost-types 0.13.5", + "regex", + "syn 2.0.119", + "tempfile", +] + +[[package]] +name = "prost-build" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03da047801ff44bb6a4d407d4860c05fd70bb81714e6b2f3812603d5b145b042" +dependencies = [ + "heck 0.5.0", + "itertools 0.14.0", + "log", + "multimap", + "petgraph 0.8.3", + "prettyplease", + "prost 0.14.4", + "prost-types 0.14.4", "regex", - "syn 2.0.104", + "syn 2.0.119", "tempfile", ] @@ -8918,7 +9201,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -8931,7 +9214,20 @@ dependencies = [ "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "prost-derive" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -8944,12 +9240,35 @@ dependencies = [ ] [[package]] -name = "psm" -version = "0.1.26" +name = "prost-types" +version = "0.14.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f" +checksum = "f94967dc7688f3054c7fac87473ffae4cc4c3904800e2d9f5b857246d8963b0a" dependencies = [ - "cc", + "prost 0.14.4", +] + +[[package]] +name = "pulley-interpreter" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "558181096e0df4984f45cfc3a7087052df4a61c36089b135a08ceca9cbd352fb" +dependencies = [ + "cranelift-bitset", + "log", + "pulley-macros", + "wasmtime-internal-math", +] + +[[package]] +name = "pulley-macros" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5d52e2f14e168d75cdabe9bd5fb1ff18a1b119dc6699684aee895dbc3524da9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", ] [[package]] @@ -8962,7 +9281,7 @@ dependencies = [ "libc", "once_cell", "raw-cpuid", - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", "web-sys", "winapi", ] @@ -8991,20 +9310,20 @@ dependencies = [ [[package]] name = "quinn" -version = "0.11.8" +version = "0.11.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "626214629cda6781b6dc1d316ba307189c85ba657213ce642d9c77670f8202c8" +checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" dependencies = [ "bytes", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "futures-io", "pin-project-lite", "quinn-proto", "quinn-udp", - "rustc-hash 2.1.1", + "rustc-hash 2.1.3", "rustls", - "socket2 0.5.10", - "thiserror 2.0.12", + "socket2 0.6.5", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -9012,20 +9331,21 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.11.12" +version = "0.11.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49df843a9161c85bb8aae55f101bc0bac8bcafd637a620d9122fd7e0b2f7422e" +checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560" dependencies = [ "bytes", - "getrandom 0.3.3", + "getrandom 0.4.3", "lru-slab", - "rand 0.9.2", + "rand 0.10.2", + "rand_pcg 0.10.2", "ring 0.17.14", - "rustc-hash 2.1.1", + "rustc-hash 2.1.3", "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.12", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -9033,23 +9353,23 @@ dependencies = [ [[package]] name = "quinn-udp" -version = "0.5.13" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcebb1209ee276352ef14ff8732e24cc2b02bbac986cd74a4c81bcb2f9881970" +checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694" dependencies = [ - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", "once_cell", - "socket2 0.5.10", + "socket2 0.6.5", "tracing", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "quote" -version = "1.0.40" +version = "1.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" +checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" dependencies = [ "proc-macro2", ] @@ -9060,6 +9380,12 @@ version = "5.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + [[package]] name = "radium" version = "0.7.0" @@ -9068,9 +9394,9 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" -version = "0.8.5" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a" dependencies = [ "libc", "rand_chacha 0.3.1", @@ -9079,12 +9405,23 @@ dependencies = [ [[package]] name = "rand" -version = "0.9.2" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" +checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_core 0.9.5", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20 0.10.1", + "getrandom 0.4.3", + "rand_core 0.10.1", ] [[package]] @@ -9104,7 +9441,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" dependencies = [ "ppv-lite86", - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] @@ -9113,18 +9450,24 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", ] [[package]] name = "rand_core" -version = "0.9.3" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.3.4", ] +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + [[package]] name = "rand_distr" version = "0.4.3" @@ -9132,7 +9475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", - "rand 0.8.5", + "rand 0.8.7", ] [[package]] @@ -9144,22 +9487,31 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_pcg" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" +dependencies = [ + "rand_core 0.10.1", +] + [[package]] name = "rand_xorshift" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a" dependencies = [ - "rand_core 0.9.3", + "rand_core 0.9.5", ] [[package]] name = "raw-cpuid" -version = "11.5.0" +version = "11.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146" +checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", ] [[package]] @@ -9170,9 +9522,9 @@ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3" [[package]] name = "rayon" -version = "1.10.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" dependencies = [ "either", "rayon-core", @@ -9180,9 +9532,9 @@ dependencies = [ [[package]] name = "rayon-core" -version = "1.12.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" dependencies = [ "crossbeam-deque", "crossbeam-utils", @@ -9211,11 +9563,11 @@ dependencies = [ [[package]] name = "redox_syscall" -version = "0.5.17" +version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", ] [[package]] @@ -9224,66 +9576,68 @@ version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ - "getrandom 0.2.16", + "getrandom 0.2.17", "libredox", "thiserror 1.0.69", ] [[package]] name = "ref-cast" -version = "1.0.24" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a0ae411dbe946a674d89546582cea4ba2bb8defac896622d6496f14c23ba5cf" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.24" +version = "1.0.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1165225c21bff1f3bbce98f5a1f889949bc902d3575308cc7b0de30b4f6d27c7" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "regalloc2" -version = "0.6.1" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" +checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" dependencies = [ - "fxhash", + "hashbrown 0.13.2", "log", + "rustc-hash 1.1.0", "slice-group-by", "smallvec", ] [[package]] name = "regalloc2" -version = "0.9.3" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad156d539c879b7a24a363a2016d77961786e71f48f2e2fc8302a92abd2429a6" +checksum = "5216b1837de2149f8bc8e6d5f88a9326b63b8c836ed58ce4a0a29ec736a59734" dependencies = [ - "hashbrown 0.13.2", + "allocator-api2", + "bumpalo", + "hashbrown 0.15.5", "log", - "rustc-hash 1.1.0", - "slice-group-by", + "rustc-hash 2.1.3", "smallvec", ] [[package]] name = "regex" -version = "1.11.1" +version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.4.9", - "regex-syntax 0.8.5", + "regex-automata 0.4.16", + "regex-syntax 0.8.11", ] [[package]] @@ -9297,13 +9651,13 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.9" +version = "0.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.8.5", + "regex-syntax 0.8.11", ] [[package]] @@ -9314,15 +9668,15 @@ checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] name = "regex-syntax" -version = "0.8.5" +version = "0.8.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" [[package]] name = "resolv-conf" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95325155c684b1c89f7765e30bc1c42e4a6da51ca513615660cb8a62ef9a88e3" +checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" [[package]] name = "rfc6979" @@ -9357,7 +9711,7 @@ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" dependencies = [ "cc", "cfg-if", - "getrandom 0.2.16", + "getrandom 0.2.17", "libc", "untrusted 0.9.0", "windows-sys 0.52.0", @@ -9391,14 +9745,14 @@ checksum = "652db34deaaa57929e10ca18e5454a32cb0efc351ae80d320334bbf907b908b3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "rocksdb" -version = "0.21.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" +checksum = "ddb7af00d2b17dbd07d82c0063e25411959748ff03e8d4f96134c2ff41fce34f" dependencies = [ "libc", "librocksdb-sys", @@ -9412,26 +9766,26 @@ checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" [[package]] name = "rpassword" -version = "7.4.0" +version = "7.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66d4c8b64f049c6721ec8ccec37ddfc3d641c4a7fca57e8f2a89de509c73df39" +checksum = "2da316a15f47e3d053de9cb2c439650bd8fa4aaeb9365f2e5f27f492ff73c196" dependencies = [ "libc", "rtoolbox", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "rtnetlink" -version = "0.13.1" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a552eb82d19f38c3beed3f786bd23aa434ceb9ac43ab44419ca6d67a7e186c0" +checksum = "4b960d5d873a75b5be9761b1e73b146f52dddcd27bac75263f40fba686d4d7b5" dependencies = [ - "futures", + "futures-channel", + "futures-util", "log", "netlink-packet-core", "netlink-packet-route", - "netlink-packet-utils", "netlink-proto", "netlink-sys", "nix", @@ -9441,19 +9795,19 @@ dependencies = [ [[package]] name = "rtoolbox" -version = "0.0.3" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cc970b249fbe527d6e02e0a227762c9108b2f49d81094fe357ffc6d14d7f6f" +checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] name = "rustc-demangle" -version = "0.1.26" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" +checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb" [[package]] name = "rustc-hash" @@ -9463,9 +9817,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustc-hash" -version = "2.1.1" +version = "2.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" [[package]] name = "rustc-hex" @@ -9479,7 +9833,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ - "semver 1.0.26", + "semver 1.0.28", ] [[package]] @@ -9488,81 +9842,54 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom", -] - -[[package]] -name = "rustix" -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.9.1", - "errno", - "libc", - "linux-raw-sys 0.4.15", - "windows-sys 0.59.0", + "nom 7.1.3", ] [[package]] name = "rustix" -version = "1.0.8" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", "errno", "libc", - "linux-raw-sys 0.9.4", - "windows-sys 0.60.2", + "linux-raw-sys", + "windows-sys 0.61.2", ] [[package]] name = "rustls" -version = "0.23.31" +version = "0.23.42" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" +checksum = "3c54fcab019b409d04215d3a17cb438fd7fbf192ee61461f20f4fe18704bc138" dependencies = [ "log", "once_cell", "ring 0.17.14", "rustls-pki-types", - "rustls-webpki 0.103.4", + "rustls-webpki 0.103.13", "subtle 2.6.1", "zeroize", ] [[package]] name = "rustls-native-certs" -version = "0.8.1" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcff2dd52b58a8d98a70243663a0d234c4e2b79235637849d15913394a247d3" +checksum = "dab5152771c58876a2146916e53e35057e1a4dfa2b9df0f0305b07f611fdea4d" dependencies = [ "openssl-probe", "rustls-pki-types", "schannel", - "security-framework 3.2.0", + "security-framework", ] [[package]] name = "rustls-pki-types" -version = "1.12.0" +version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" +checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" dependencies = [ "web-time", "zeroize", @@ -9582,8 +9909,8 @@ dependencies = [ "rustls", "rustls-native-certs", "rustls-platform-verifier-android", - "rustls-webpki 0.103.4", - "security-framework 3.2.0", + "rustls-webpki 0.103.13", + "security-framework", "security-framework-sys", "webpki-root-certs 0.26.11", "windows-sys 0.59.0", @@ -9607,9 +9934,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.4" +version = "0.103.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" dependencies = [ "ring 0.17.14", "rustls-pki-types", @@ -9618,19 +9945,15 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.21" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" [[package]] name = "ruzstd" -version = "0.6.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" -dependencies = [ - "byteorder", - "derive_more 0.99.20", -] +checksum = "a7c1c839d570d835527c9a5e4db7cb2198683a988cb9d7293fc8674e6bd58fc8" [[package]] name = "rw-stream-sink" @@ -9645,9 +9968,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.20" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" [[package]] name = "safe_arch" @@ -9678,8 +10001,8 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "32.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "39.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "sp-core", @@ -9689,8 +10012,8 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.51.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", @@ -9700,11 +10023,12 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", - "rand 0.8.5", + "prost-build 0.13.5", + "rand 0.8.7", "sc-client-api", "sc-network", "sc-network-types", + "sc-service", "serde", "serde_json", "sp-api", @@ -9720,8 +10044,8 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.56.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "futures", "log", @@ -9736,33 +10060,35 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", + "sp-state-machine", + "sp-trie", "stp-shield", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" -version = "0.45.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.51.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "sp-api", "sp-block-builder", "sp-blockchain", "sp-core", + "sp-externalities", "sp-inherents", "sp-runtime", - "sp-trie", ] [[package]] name = "sc-chain-spec" -version = "44.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "51.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "docify", - "memmap2 0.9.7", + "memmap2 0.9.11", "parity-scale-codec", "sc-chain-spec-derive", "sc-client-api", @@ -9773,7 +10099,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -9783,21 +10109,22 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" -version = "12.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "sc-cli" -version = "0.53.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.61.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", + "bip39", "chrono", "clap", "fdlimit", @@ -9806,9 +10133,8 @@ dependencies = [ "libp2p-identity", "log", "names", - "parity-bip39", "parity-scale-codec", - "rand 0.8.5", + "rand 0.8.7", "regex", "rpassword", "sc-client-api", @@ -9836,14 +10162,14 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "fnv", "futures", "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-executor", "sc-transaction-pool-api", "sc-utils", @@ -9862,8 +10188,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.47.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.54.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "hash-db", "kvdb", @@ -9873,7 +10199,7 @@ dependencies = [ "log", "parity-db", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-client-api", "sc-state-db", "schnellru", @@ -9890,14 +10216,14 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", "log", "mockall", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-client-api", "sc-network-types", "sc-utils", @@ -9913,13 +10239,15 @@ dependencies = [ [[package]] name = "sc-consensus-aura" -version = "0.51.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", + "fork-tree", "futures", "log", "parity-scale-codec", + "parking_lot 0.12.5", "sc-block-builder", "sc-client-api", "sc-consensus", @@ -9942,8 +10270,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.51.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "fork-tree", @@ -9953,7 +10281,7 @@ dependencies = [ "num-rational", "num-traits", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-client-api", "sc-consensus", "sc-consensus-epochs", @@ -9968,18 +10296,19 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-inherents", "sp-keystore", "sp-runtime", + "sp-timestamp", "substrate-prometheus-endpoint", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-epochs" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "fork-tree", "parity-scale-codec", @@ -9991,10 +10320,10 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" -version = "0.36.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.43.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "ahash", + "ahash 0.8.12", "array-bytes 6.2.3", "async-trait", "dyn-clone", @@ -10004,11 +10333,12 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "sc-block-builder", "sc-chain-spec", "sc-client-api", + "sc-client-db", "sc-consensus", "sc-network", "sc-network-common", @@ -10026,7 +10356,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -10035,10 +10365,9 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" -version = "0.52.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "assert_matches", "async-trait", "futures", "futures-timer", @@ -10060,18 +10389,20 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", + "sp-externalities", "sp-inherents", "sp-keystore", "sp-runtime", "sp-timestamp", + "sp-trie", "substrate-prometheus-endpoint", "thiserror 1.0.69", ] [[package]] name = "sc-consensus-slots" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", @@ -10089,15 +10420,16 @@ dependencies = [ "sp-inherents", "sp-runtime", "sp-state-machine", + "sp-trie", ] [[package]] name = "sc-executor" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.50.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-executor-common", "sc-executor-polkavm", "sc-executor-wasmtime", @@ -10116,10 +10448,10 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.39.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.47.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "polkavm 0.24.0", + "polkavm 0.33.1", "sc-allocator", "sp-maybe-compressed-blob", "sp-wasm-interface", @@ -10129,24 +10461,25 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" -version = "0.36.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.44.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", - "polkavm 0.24.0", + "polkavm 0.33.1", "sc-executor-common", + "sp-runtime-interface", "sp-wasm-interface", ] [[package]] name = "sc-executor-wasmtime" -version = "0.39.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.47.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "anyhow", "log", - "parking_lot 0.12.4", - "rustix 0.36.17", + "parking_lot 0.12.5", + "rustix", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -10156,8 +10489,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "console", "futures", @@ -10172,11 +10505,11 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "36.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "42.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "serde_json", "sp-application-crypto", "sp-core", @@ -10186,11 +10519,11 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.21.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.28.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "blake2 0.10.6", "bytes", "futures", @@ -10198,7 +10531,7 @@ dependencies = [ "log", "mixnet", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-client-api", "sc-network", "sc-network-types", @@ -10214,15 +10547,15 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.51.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", "async-trait", "asynchronous-codec 0.6.2", "bytes", - "cid 0.9.0", + "cid", "either", "fnv", "futures", @@ -10234,12 +10567,12 @@ dependencies = [ "log", "mockall", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "partial_sort", "pin-project", "prost 0.12.6", - "prost-build", - "rand 0.8.5", + "prost-build 0.13.5", + "rand 0.8.7", "sc-client-api", "sc-network-common", "sc-network-types", @@ -10251,6 +10584,7 @@ dependencies = [ "sp-arithmetic", "sp-blockchain", "sp-core", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-runtime", "substrate-prometheus-endpoint", "thiserror 1.0.69", @@ -10264,8 +10598,8 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.49.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.55.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -10274,10 +10608,10 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.51.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "ahash", + "ahash 0.8.12", "futures", "futures-timer", "log", @@ -10293,8 +10627,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -10302,7 +10636,7 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-network", "sc-network-types", @@ -10312,10 +10646,34 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "sc-network-statement" +version = "0.41.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "array-bytes 6.2.3", + "async-channel 1.9.0", + "fastbloom", + "futures", + "governor", + "log", + "parity-scale-codec", + "rand 0.8.7", + "sc-network", + "sc-network-common", + "sc-network-sync", + "sc-network-types", + "sp-consensus", + "sp-runtime", + "sp-statement-store", + "substrate-prometheus-endpoint", + "tokio", +] + [[package]] name = "sc-network-sync" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "async-channel 1.9.0", @@ -10326,7 +10684,7 @@ dependencies = [ "mockall", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-consensus", "sc-network", @@ -10338,7 +10696,6 @@ dependencies = [ "sp-arithmetic", "sp-blockchain", "sp-consensus", - "sp-consensus-grandpa", "sp-core", "sp-runtime", "substrate-prometheus-endpoint", @@ -10349,8 +10706,8 @@ dependencies = [ [[package]] name = "sc-network-transactions" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.57.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "futures", @@ -10368,8 +10725,8 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.17.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.22.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bs58", "bytes", @@ -10378,9 +10735,9 @@ dependencies = [ "libp2p-kad", "litep2p", "log", - "multiaddr 0.18.2", - "multihash 0.19.3", - "rand 0.8.5", + "multiaddr", + "multihash", + "rand 0.8.7", "serde", "serde_with", "thiserror 1.0.69", @@ -10389,22 +10746,22 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "46.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "53.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bytes", "fnv", "futures", "futures-timer", "http-body-util", - "hyper 1.6.0", + "hyper 1.10.1", "hyper-rustls", "hyper-util", "num_cpus", "once_cell", "parity-scale-codec", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "rustls", "sc-client-api", "sc-network", @@ -10423,8 +10780,8 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" -version = "0.20.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10432,19 +10789,21 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "46.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "54.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "async-channel 1.9.0", "futures", "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-block-builder", "sc-chain-spec", "sc-client-api", "sc-mixnet", "sc-rpc-api", + "sc-statement-store", "sc-tracing", "sc-transaction-pool-api", "sc-utils", @@ -10464,8 +10823,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.50.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.58.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10478,28 +10837,32 @@ dependencies = [ "sp-core", "sp-rpc", "sp-runtime", + "sp-statement-store", "sp-version", "thiserror 1.0.69", ] [[package]] name = "sc-rpc-server" -version = "23.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "31.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "dyn-clone", "forwarded-header-value", "futures", "governor", - "http 1.3.1", + "http 1.4.2", "http-body-util", - "hyper 1.6.0", + "hyper 1.10.1", "ip_network", "jsonrpsee", "log", + "prometheus", "sc-rpc-api", + "sc-utils", "serde", "serde_json", + "sp-core", "substrate-prometheus-endpoint", "tokio", "tower", @@ -10508,19 +10871,21 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.51.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.59.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", + "cid", "futures", "futures-util", "hex", "itertools 0.11.0", "jsonrpsee", "log", + "multihash-codetable", "parity-scale-codec", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "sc-chain-spec", "sc-client-api", "sc-rpc", @@ -10529,6 +10894,7 @@ dependencies = [ "serde", "sp-api", "sp-blockchain", + "sp-consensus", "sp-core", "sp-rpc", "sp-runtime", @@ -10541,14 +10907,14 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" -version = "0.3.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.10.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "sc-executor", "sc-executor-common", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-state-machine", "sp-wasm-interface", "thiserror 1.0.69", @@ -10556,8 +10922,8 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.52.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.60.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "directories", @@ -10567,9 +10933,9 @@ dependencies = [ "jsonrpsee", "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", - "rand 0.8.5", + "rand 0.8.7", "sc-chain-spec", "sc-client-api", "sc-client-db", @@ -10620,47 +10986,72 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.39.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.45.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", + "sp-core", +] + +[[package]] +name = "sc-statement-store" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "async-channel 1.9.0", + "futures", + "itertools 0.11.0", + "log", + "parity-db", + "parking_lot 0.12.5", + "sc-client-api", + "sc-keystore", + "sc-network-statement", + "sc-utils", + "sp-api", + "sp-blockchain", "sp-core", + "sp-runtime", + "sp-statement-store", + "sp-storage", + "substrate-prometheus-endpoint", + "tokio", ] [[package]] name = "sc-sysinfo" -version = "43.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "50.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "derive_more 0.99.20", "futures", "libc", "log", - "rand 0.8.5", - "rand_pcg", + "rand 0.8.7", + "rand_pcg 0.3.1", "regex", "sc-telemetry", "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-io", ] [[package]] name = "sc-telemetry" -version = "29.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "33.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "chrono", "futures", "libp2p", "log", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", - "rand 0.8.5", + "rand 0.8.7", "sc-utils", "serde", "serde_json", @@ -10670,8 +11061,8 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "chrono", "console", @@ -10679,7 +11070,7 @@ dependencies = [ "libc", "log", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "rustc-hash 1.1.0", "sc-client-api", "sc-tracing-proc-macro", @@ -10698,28 +11089,28 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" -version = "11.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "sc-transaction-pool" -version = "40.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "47.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", "futures-timer", - "indexmap 2.10.0", + "indexmap", "itertools 0.11.0", "linked-hash-map", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sc-client-api", "sc-transaction-pool-api", "sc-utils", @@ -10727,10 +11118,11 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-runtime", "sp-tracing", "sp-transaction-pool", + "strum 0.26.3", "substrate-prometheus-endpoint", "thiserror 1.0.69", "tokio", @@ -10740,35 +11132,46 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", - "indexmap 2.10.0", + "indexmap", "log", "parity-scale-codec", "serde", "sp-blockchain", "sp-core", "sp-runtime", + "strum 0.26.3", "thiserror 1.0.69", ] [[package]] name = "sc-utils" -version = "19.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-channel 1.9.0", "futures", "futures-timer", "log", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "prometheus", "sp-arithmetic", ] +[[package]] +name = "sc-virtualization" +version = "0.3.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "log", + "polkavm 0.33.1", + "sp-virtualization", +] + [[package]] name = "scale-bits" version = "0.7.0" @@ -10783,9 +11186,9 @@ dependencies = [ [[package]] name = "scale-decode" -version = "0.16.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d78196772d25b90a98046794ce0fe2588b39ebdfbdc1e45b4c6c85dd43bebad" +checksum = "8d6ed61699ad4d54101ab5a817169259b5b0efc08152f8632e61482d8a27ca3d" dependencies = [ "parity-scale-codec", "primitive-types", @@ -10793,26 +11196,26 @@ dependencies = [ "scale-decode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "scale-decode-derive" -version = "0.16.0" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f4b54a1211260718b92832b661025d1f1a4b6930fbadd6908e00edd265fa5f7" +checksum = "65cb245f7fdb489e7ba43a616cbd34427fe3ba6fe0edc1d0d250085e6c84f3ec" dependencies = [ - "darling", + "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "scale-encode" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64901733157f9d25ef86843bd783eda439fac7efb0ad5a615d12d2cf3a29464b" +checksum = "f2a976d73564a59e482b74fd5d95f7518b79ca8c8ca5865398a4d629dd15ee50" dependencies = [ "parity-scale-codec", "primitive-types", @@ -10820,20 +11223,20 @@ dependencies = [ "scale-encode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "scale-encode-derive" -version = "0.10.0" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78a3993a13b4eafa89350604672c8757b7ea84c7c5947d4b3691e3169c96379b" +checksum = "17020f2d59baabf2ddcdc20a4e567f8210baf089b8a8d4785f5fd5e716f92038" dependencies = [ - "darling", - "proc-macro-crate 3.3.0", + "darling 0.20.11", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -10856,10 +11259,10 @@ version = "2.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" dependencies = [ - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -10881,15 +11284,15 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.104", - "thiserror 2.0.12", + "syn 2.0.119", + "thiserror 2.0.18", ] [[package]] name = "scale-value" -version = "0.18.0" +version = "0.18.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca8b26b451ecb7fd7b62b259fa28add63d12ec49bbcac0e01fcb4b5ae0c09aa" +checksum = "b3b64809a541e8d5a59f7a9d67cc700cdf5d7f907932a83a0afdedc90db07ccb" dependencies = [ "base58", "blake2 0.10.6", @@ -10900,17 +11303,17 @@ dependencies = [ "scale-encode", "scale-type-resolver", "serde", - "thiserror 2.0.12", + "thiserror 2.0.18", "yap", ] [[package]] name = "schannel" -version = "0.1.27" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d" +checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -10919,7 +11322,7 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649" dependencies = [ - "ahash", + "ahash 0.8.12", "cfg-if", "hashbrown 0.13.2", ] @@ -10932,7 +11335,7 @@ checksum = "6e9fcb6c2e176e86ec703e22560d99d65a5ee9056ae45a08e13e84ebf796296f" dependencies = [ "aead", "arrayref", - "arrayvec 0.7.6", + "arrayvec 0.7.8", "curve25519-dalek", "getrandom_or_panic", "merlin", @@ -10943,12 +11346,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "scoped-tls" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" - [[package]] name = "scopeguard" version = "1.2.0" @@ -10957,9 +11354,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" -version = "1.0.8" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f6280af86e5f559536da57a45ebc84948833b3bee313a7dd25232e09c878a52" +checksum = "d68f2ec51b097e4c1a75b681a8bec621909b5e91f15bb7b840c4f2f7b01148b2" [[package]] name = "scrypt" @@ -11012,8 +11409,8 @@ version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252" dependencies = [ - "bitcoin_hashes 0.14.0", - "rand 0.8.5", + "bitcoin_hashes", + "rand 0.8.7", "secp256k1-sys 0.10.1", ] @@ -11064,24 +11461,11 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" -dependencies = [ - "bitflags 2.9.1", - "core-foundation 0.9.4", - "core-foundation-sys", - "libc", - "security-framework-sys", -] - -[[package]] -name = "security-framework" -version = "3.2.0" +version = "3.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271720403f46ca04f7ba6f55d438f8bd878d6b8ca0a1046e8228c4145bcbb316" +checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", "core-foundation 0.10.1", "core-foundation-sys", "libc", @@ -11090,9 +11474,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.14.0" +version = "2.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32" +checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3" dependencies = [ "core-foundation-sys", "libc", @@ -11109,11 +11493,12 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.26" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" dependencies = [ "serde", + "serde_core", ] [[package]] @@ -11124,43 +11509,55 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" dependencies = [ + "serde_core", "serde_derive", ] [[package]] name = "serde_bytes" -version = "0.11.17" +version = "0.11.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8437fd221bde2d4ca316d61b90e337e9e702b3820b87d63caa9ba6c02bd06d96" +checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8" dependencies = [ "serde", + "serde_core", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "serde_json" -version = "1.0.142" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" dependencies = [ "itoa", "memchr", - "ryu", "serde", + "serde_core", + "zmij", ] [[package]] @@ -11174,11 +11571,11 @@ dependencies = [ [[package]] name = "serde_spanned" -version = "1.0.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83" +checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26" dependencies = [ - "serde", + "serde_core", ] [[package]] @@ -11195,15 +11592,15 @@ dependencies = [ [[package]] name = "serde_with" -version = "3.14.0" +version = "3.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2c45cd61fefa9db6f254525d46e392b852e0e61d9a1fd36e5bd183450a556d5" +checksum = "76a5c54c7310e7b8b9577c286d7e399ddd876c3e12b3ed917a8aabc4b96e9e8c" dependencies = [ - "base64 0.22.1", + "base64", + "bs58", "chrono", "hex", - "serde", - "serde_derive", + "serde_core", "serde_json", "serde_with_macros", "time", @@ -11211,14 +11608,14 @@ dependencies = [ [[package]] name = "serde_with_macros" -version = "3.14.0" +version = "3.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de90945e6565ce0d9a25098082ed4ee4002e047cb59892c318d66821e14bb30f" +checksum = "84d57bc0c8b9a17920c178daa6bb924850d54a9c97ab45194bb8c17ad66bb660" dependencies = [ - "darling", + "darling 0.23.0", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -11233,12 +11630,12 @@ dependencies = [ [[package]] name = "sha1" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" +checksum = "a978451301f4db1d02937a4ab3ccce137717b81826e79b7d49ffe3244a13c3b8" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "digest 0.10.7", ] @@ -11250,7 +11647,7 @@ checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" dependencies = [ "block-buffer 0.9.0", "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "digest 0.9.0", "opaque-debug 0.3.1", ] @@ -11262,18 +11659,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" dependencies = [ "cfg-if", - "cpufeatures", + "cpufeatures 0.2.17", "digest 0.10.7", ] +[[package]] +name = "sha2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.0", + "digest 0.11.3", +] + [[package]] name = "sha3" -version = "0.10.8" +version = "0.10.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75872d278a8f37ef87fa0ddbda7802605cb18344497949862c0d4dcb291eba60" +checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874" dependencies = [ "digest 0.10.7", - "keccak", + "keccak 0.1.6", +] + +[[package]] +name = "sha3" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be176f1a57ce4e3d31c1a166222d9768de5954f811601fb7ca06fc8203905ce1" +dependencies = [ + "digest 0.11.3", + "keccak 0.2.0", ] [[package]] @@ -11291,12 +11709,19 @@ version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + [[package]] name = "signal-hook-registry" -version = "1.4.5" +version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ + "errno", "libc", ] @@ -11312,9 +11737,9 @@ dependencies = [ [[package]] name = "simba" -version = "0.9.0" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3a386a501cd104797982c15ae17aafe8b9261315b5d07e3ec803f2ea26be0fa" +checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95" dependencies = [ "approx", "num-complex", @@ -11345,11 +11770,11 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.9.3" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a" +checksum = "7a75cbde1bf934313596a004973e462f9a82caa814dcf1a5f507bdf51597eeb4" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", ] [[package]] @@ -11366,15 +11791,15 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "siphasher" -version = "1.0.1" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" +checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649" [[package]] name = "slab" -version = "0.4.10" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04dc19736151f35336d325007ac991178d504a119863a2fcb3758cdb5e52c50d" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slice-group-by" @@ -11384,8 +11809,8 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" -version = "18.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "enumn", "parity-scale-codec", @@ -11395,9 +11820,12 @@ dependencies = [ [[package]] name = "smallvec" -version = "1.15.1" +version = "1.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" +dependencies = [ + "serde", +] [[package]] name = "smol" @@ -11418,53 +11846,53 @@ dependencies = [ [[package]] name = "smoldot" -version = "0.18.0" +version = "0.19.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "966e72d77a3b2171bb7461d0cb91f43670c63558c62d7cf42809cae6c8b6b818" +checksum = "e16e5723359f0048bf64bfdfba64e5732a56847d42c4fd3fe56f18280c813413" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "async-lock", "atomic-take", - "base64 0.22.1", + "base64", "bip39", "blake2-rfc", "bs58", - "chacha20", + "chacha20 0.9.1", "crossbeam-queue", - "derive_more 0.99.20", + "derive_more 2.1.1", "ed25519-zebra", "either", - "event-listener 5.4.0", + "event-listener 5.4.1", "fnv", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", "hmac 0.12.1", - "itertools 0.13.0", + "itertools 0.14.0", "libm", "libsecp256k1", "merlin", - "nom", + "nom 8.0.0", "num-bigint", "num-rational", "num-traits", "pbkdf2", "pin-project", "poly1305", - "rand 0.8.5", + "rand 0.8.7", "rand_chacha 0.3.1", "ruzstd", "schnorrkel", "serde", "serde_json", "sha2 0.10.9", - "sha3", - "siphasher 1.0.1", + "sha3 0.10.9", + "siphasher 1.0.3", "slab", "smallvec", "soketto", - "twox-hash", + "twox-hash 2.1.2", "wasmi", "x25519-dalek", "zeroize", @@ -11472,34 +11900,34 @@ dependencies = [ [[package]] name = "smoldot-light" -version = "0.16.2" +version = "0.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a33b06891f687909632ce6a4e3fd7677b24df930365af3d0bcb078310129f3f" +checksum = "f1bba9e591716567d704a8252feeb2f1261a286e1e2cbdd4e49e9197c34a14e2" dependencies = [ "async-channel 2.5.0", "async-lock", - "base64 0.22.1", + "base64", "blake2-rfc", "bs58", - "derive_more 0.99.20", + "derive_more 2.1.1", "either", - "event-listener 5.4.0", + "event-listener 5.4.1", "fnv", "futures-channel", "futures-lite", "futures-util", - "hashbrown 0.14.5", + "hashbrown 0.15.5", "hex", - "itertools 0.13.0", + "itertools 0.14.0", "log", - "lru", - "parking_lot 0.12.4", + "lru 0.12.5", + "parking_lot 0.12.5", "pin-project", - "rand 0.8.5", + "rand 0.8.7", "rand_chacha 0.3.1", "serde", "serde_json", - "siphasher 1.0.1", + "siphasher 1.0.3", "slab", "smol", "smoldot", @@ -11508,9 +11936,9 @@ dependencies = [ [[package]] name = "snap" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b" +checksum = "199905e6153d6405f9728fe44daace35f8f837bbf830bb6e85fbd5828709a886" [[package]] name = "snow" @@ -11541,12 +11969,12 @@ dependencies = [ [[package]] name = "socket2" -version = "0.6.0" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" +checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" dependencies = [ "libc", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -11555,20 +11983,20 @@ version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e859df029d160cb88608f5d7df7fb4753fd20fdfb4de5644f3d8b8440841721" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "futures", - "http 1.3.1", + "http 1.4.2", "httparse", "log", - "rand 0.8.5", + "rand 0.8.7", "sha1", ] [[package]] name = "sp-api" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "hash-db", @@ -11589,22 +12017,22 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "23.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "Inflector", "blake2 0.10.6", "expander", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "sp-application-crypto" -version = "41.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11615,8 +12043,8 @@ dependencies = [ [[package]] name = "sp-arithmetic" -version = "27.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "23.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "integer-sqrt", @@ -11629,8 +12057,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11641,9 +12069,10 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "parity-scale-codec", "sp-api", "sp-inherents", "sp-runtime", @@ -11651,12 +12080,12 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "futures", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "schnellru", "sp-api", "sp-consensus", @@ -11670,22 +12099,25 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "futures", "log", + "sp-api", + "sp-externalities", "sp-inherents", "sp-runtime", "sp-state-machine", + "sp-trie", "thiserror 1.0.69", ] [[package]] name = "sp-consensus-aura" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "parity-scale-codec", @@ -11700,8 +12132,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "parity-scale-codec", @@ -11718,8 +12150,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "24.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "30.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "finality-grandpa", "log", @@ -11735,8 +12167,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11746,11 +12178,12 @@ dependencies = [ [[package]] name = "sp-core" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "ark-vrf", "array-bytes 6.2.3", + "bip39", "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections", @@ -11766,22 +12199,20 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "parity-bip39", "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "paste", "primitive-types", - "rand 0.8.5", + "rand 0.8.7", "scale-info", "schnorrkel", "secp256k1 0.28.2", "secrecy 0.8.0", "serde", "sha2 0.10.9", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-debug-derive", "sp-externalities", - "sp-runtime-interface", "sp-std", "sp-storage", "ss58-registry", @@ -11802,56 +12233,58 @@ dependencies = [ "byteorder", "digest 0.10.7", "sha2 0.10.9", - "sha3", - "twox-hash", + "sha3 0.10.9", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.9", - "sha3", - "twox-hash", + "sha3 0.10.9", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", - "syn 2.0.104", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", + "syn 2.0.119", ] [[package]] name = "sp-database" version = "10.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "kvdb", - "parking_lot 0.12.4", + "kvdb-rocksdb", + "parking_lot 0.12.5", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ + "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "sp-externalities" -version = "0.30.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.34.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "environmental", "parity-scale-codec", @@ -11860,8 +12293,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.18.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.24.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11872,8 +12305,8 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11885,8 +12318,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "41.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bytes", "docify", @@ -11894,11 +12327,11 @@ dependencies = [ "libsecp256k1", "log", "parity-scale-codec", - "polkavm-derive 0.24.0", + "polkavm-derive 0.33.0", "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -11911,8 +12344,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "42.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "sp-core", "sp-runtime", @@ -11921,11 +12354,11 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.43.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.49.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "sp-core", "sp-externalities", ] @@ -11933,7 +12366,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "11.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -11941,18 +12374,19 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.11.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.15.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "frame-metadata 23.0.0", + "derive-where", + "frame-metadata", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.15.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.21.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11962,8 +12396,8 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "log", "parity-scale-codec", @@ -11979,8 +12413,8 @@ dependencies = [ [[package]] name = "sp-npos-elections" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -11992,8 +12426,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "sp-api", "sp-core", @@ -12002,8 +12436,8 @@ dependencies = [ [[package]] name = "sp-panic-handler" -version = "13.0.2" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "backtrace", "regex", @@ -12011,8 +12445,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "35.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "41.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -12021,10 +12455,11 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "42.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "48.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "binary-merkle-tree", + "bytes", "docify", "either", "hash256-std-hasher", @@ -12033,7 +12468,7 @@ dependencies = [ "num-traits", "parity-scale-codec", "paste", - "rand 0.8.5", + "rand 0.8.7", "scale-info", "serde", "simple-mermaid", @@ -12044,20 +12479,20 @@ dependencies = [ "sp-std", "sp-trie", "sp-weights", + "strum 0.26.3", "tracing", "tuplex", ] [[package]] name = "sp-runtime-interface" -version = "30.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "37.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec", - "polkavm-derive 0.24.0", - "primitive-types", + "polkavm-derive 0.33.0", "sp-externalities", "sp-runtime-interface-proc-macro", "sp-std", @@ -12069,21 +12504,21 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" -version = "19.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "17.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "Inflector", "expander", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "sp-session" -version = "39.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "45.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -12096,8 +12531,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "39.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "45.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -12109,14 +12544,14 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.46.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.53.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "hash-db", "log", "parity-scale-codec", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "smallvec", "sp-core", "sp-externalities", @@ -12129,21 +12564,23 @@ dependencies = [ [[package]] name = "sp-statement-store" -version = "21.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "aes-gcm", "curve25519-dalek", "ed25519-dalek", + "frame-support", "hkdf", "parity-scale-codec", - "rand 0.8.5", + "rand 0.8.7", "scale-info", + "serde", "sha2 0.10.9", "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -12154,12 +12591,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" [[package]] name = "sp-storage" -version = "22.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "25.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "impl-serde", "parity-scale-codec", @@ -12170,8 +12607,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "parity-scale-codec", @@ -12182,10 +12619,11 @@ dependencies = [ [[package]] name = "sp-tracing" -version = "17.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "16.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", + "regex", "tracing", "tracing-core", "tracing-subscriber", @@ -12193,8 +12631,8 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "sp-api", "sp-runtime", @@ -12202,12 +12640,13 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "37.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "43.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "async-trait", "parity-scale-codec", "scale-info", + "sp-api", "sp-core", "sp-inherents", "sp-runtime", @@ -12216,18 +12655,18 @@ dependencies = [ [[package]] name = "sp-trie" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ - "ahash", - "foldhash", + "ahash 0.8.12", + "foldhash 0.1.5", "hash-db", - "hashbrown 0.15.4", + "hashbrown 0.15.5", "memory-db", "nohash-hasher", "parity-scale-codec", - "parking_lot 0.12.4", - "rand 0.8.5", + "parking_lot 0.12.5", + "rand 0.8.7", "scale-info", "schnellru", "sp-core", @@ -12241,14 +12680,15 @@ dependencies = [ [[package]] name = "sp-version" -version = "40.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "46.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "impl-serde", "parity-scale-codec", "parity-wasm", "scale-info", "serde", + "sp-core", "sp-crypto-hashing-proc-macro", "sp-runtime", "sp-std", @@ -12258,20 +12698,34 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" -version = "15.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "13.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", +] + +[[package]] +name = "sp-virtualization" +version = "0.4.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" +dependencies = [ + "log", + "num_enum", + "parity-scale-codec", + "sp-externalities", + "sp-runtime-interface", + "sp-storage", + "strum 0.26.3", ] [[package]] name = "sp-wasm-interface" -version = "22.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "27.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -12282,8 +12736,8 @@ dependencies = [ [[package]] name = "sp-weights" -version = "32.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "36.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "bounded-collections", "parity-scale-codec", @@ -12302,9 +12756,9 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "spin" -version = "0.9.8" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" dependencies = [ "lock_api", ] @@ -12345,19 +12799,19 @@ version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6" dependencies = [ - "base64 0.22.1", + "base64", "bytes", "crc", "crossbeam-queue", "either", - "event-listener 5.4.0", + "event-listener 5.4.1", "futures-core", "futures-intrusive", "futures-io", "futures-util", - "hashbrown 0.15.4", + "hashbrown 0.15.5", "hashlink 0.10.0", - "indexmap 2.10.0", + "indexmap", "log", "memchr", "native-tls", @@ -12366,7 +12820,7 @@ dependencies = [ "serde", "sha2 0.10.9", "smallvec", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -12383,7 +12837,7 @@ dependencies = [ "quote", "sqlx-core", "sqlx-macros-core", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -12404,7 +12858,7 @@ dependencies = [ "sha2 0.10.9", "sqlx-core", "sqlx-sqlite", - "syn 2.0.104", + "syn 2.0.119", "tokio", "url", ] @@ -12428,7 +12882,7 @@ dependencies = [ "serde", "serde_urlencoded", "sqlx-core", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "url", ] @@ -12450,14 +12904,14 @@ dependencies = [ [[package]] name = "stable_deref_trait" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "staging-xcm" -version = "17.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "24.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "bounded-collections", @@ -12466,24 +12920,25 @@ dependencies = [ "frame-support", "hex-literal", "impl-trait-for-tuples", - "log", "parity-scale-codec", "scale-info", "serde", "sp-runtime", "sp-weights", + "tracing", "xcm-procedural", ] [[package]] name = "staging-xcm-builder" -version = "21.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "29.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "environmental", "frame-support", "frame-system", "impl-trait-for-tuples", + "pallet-accumulate-and-forward", "pallet-asset-conversion", "pallet-transaction-payment", "parity-scale-codec", @@ -12501,8 +12956,8 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "20.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "28.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "environmental", "frame-benchmarking", @@ -12532,10 +12987,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8bae1df58c5fea7502e8e352ec26b5579f6178e1fdb311e088580c980dee25ed" dependencies = [ "bitflags 1.3.2", - "cfg_aliases 0.2.1", + "cfg_aliases 0.2.2", "libc", - "parking_lot 0.12.4", - "parking_lot_core 0.9.11", + "parking_lot 0.12.5", + "parking_lot_core 0.9.12", "static_init_macro", "winapi", ] @@ -12556,7 +13011,7 @@ dependencies = [ [[package]] name = "stc-shield" version = "0.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "anyhow", "async-trait", @@ -12565,7 +13020,7 @@ dependencies = [ "log", "ml-kem", "parity-scale-codec", - "rand 0.8.5", + "rand 0.8.7", "sc-client-api", "sc-service", "sp-consensus", @@ -12577,7 +13032,7 @@ dependencies = [ [[package]] name = "stp-shield" version = "0.1.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "parity-scale-codec", "scale-info", @@ -12586,16 +13041,6 @@ dependencies = [ "sp-runtime", ] -[[package]] -name = "string-interner" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c6a0d765f5807e98a091107bae0a56ea3799f66a5de47b2c84c94a39c09974e" -dependencies = [ - "cfg-if", - "hashbrown 0.14.5", -] - [[package]] name = "strsim" version = "0.11.1" @@ -12640,13 +13085,13 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "substrate-bip39" -version = "0.6.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.4.7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -12664,19 +13109,19 @@ dependencies = [ "byteorder", "crunchy", "lazy_static", - "rand 0.8.5", + "rand 0.8.7", "rustc-hex", ] [[package]] name = "substrate-build-script-utils" -version = "11.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "11.0.3" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" [[package]] name = "substrate-frame-rpc-system" -version = "45.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "53.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -12695,11 +13140,11 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" -version = "0.17.6" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "0.17.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "http-body-util", - "hyper 1.6.0", + "hyper 1.10.1", "hyper-util", "log", "prometheus", @@ -12710,7 +13155,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "async-trait", @@ -12735,7 +13180,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime" version = "2.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "frame-executive", @@ -12759,7 +13204,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0)", "sp-debug-derive", "sp-externalities", "sp-genesis-builder", @@ -12770,6 +13215,7 @@ dependencies = [ "sp-runtime", "sp-session", "sp-state-machine", + "sp-statement-store", "sp-transaction-pool", "sp-trie", "sp-version", @@ -12782,7 +13228,7 @@ dependencies = [ [[package]] name = "substrate-test-runtime-client" version = "2.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "futures", "sc-block-builder", @@ -12799,22 +13245,22 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" -version = "27.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "34.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "array-bytes 6.2.3", "build-helper", "cargo_metadata", "console", "filetime", - "frame-metadata 23.0.0", + "frame-metadata", "jobserver", "merkleized-metadata", "parity-scale-codec", "parity-wasm", "polkavm-linker", "sc-executor", - "shlex", + "shlex 1.3.0", "sp-core", "sp-io", "sp-maybe-compressed-blob", @@ -12841,14 +13287,14 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "subxt" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" +checksum = "15d478a97cff6a704123c9a3871eff832f8ea4a477390a8ea5fd7cfedd41bf6f" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "parity-scale-codec", @@ -12866,7 +13312,7 @@ dependencies = [ "subxt-macro", "subxt-metadata", "subxt-rpcs", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-util", "tracing", @@ -12876,9 +13322,9 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" +checksum = "461338acd557773106546b474fbb48d47617735fd50941ddc516818006daf8a0" dependencies = [ "heck 0.5.0", "parity-scale-codec", @@ -12887,21 +13333,21 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.104", - "thiserror 2.0.12", + "syn 2.0.119", + "thiserror 2.0.18", ] [[package]] name = "subxt-core" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" +checksum = "002d360ac0827c882d5a808261e06c11a5e7ad2d7c295176d5126a9af9aa5f23" dependencies = [ "base58", "blake2 0.10.6", "derive-where", "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "hex", "impl-serde", @@ -12917,22 +13363,22 @@ dependencies = [ "serde_json", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-metadata", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", ] [[package]] name = "subxt-lightclient" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" +checksum = "bab0c7a6504798b1c4a7dbe4cac9559560826e5df3f021efa3e9dd6393050521" dependencies = [ "futures", "futures-util", "serde", "serde_json", "smoldot-light", - "thiserror 2.0.12", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -12940,43 +13386,44 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" +checksum = "fc844e7877b6fe4a4013c5836a916dee4e58fc875b98ccc18b5996db34b575c3" dependencies = [ - "darling", + "darling 0.20.11", "parity-scale-codec", "proc-macro-error2", "quote", "scale-typegen", "subxt-codegen", + "subxt-metadata", "subxt-utils-fetchmetadata", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "subxt-metadata" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" +checksum = "1b2f2a52d97d7539febc0006d6988081150b1c1a3e4a357ca02ab5cdb34072bc" dependencies = [ "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "parity-scale-codec", "scale-info", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] name = "subxt-rpcs" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +checksum = "dec54130c797530e6aa6a52e8ba9f95fd296d19da2f9f3e23ed5353a83573f74" dependencies = [ "derive-where", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "impl-serde", @@ -12987,18 +13434,18 @@ dependencies = [ "serde_json", "subxt-core", "subxt-lightclient", - "thiserror 2.0.12", + "thiserror 2.0.18", "tracing", "url", ] [[package]] name = "subxt-signer" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" +checksum = "1bdcc9159fdcc81aca0f71f0c8c77829a671f7348958fc77fb2fb320ed59a13a" dependencies = [ - "base64 0.22.1", + "base64", "bip32", "bip39", "cfg-if", @@ -13018,19 +13465,19 @@ dependencies = [ "sha2 0.10.9", "sp-crypto-hashing 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "subxt-core", - "thiserror 2.0.12", + "thiserror 2.0.18", "zeroize", ] [[package]] name = "subxt-utils-fetchmetadata" -version = "0.41.0" +version = "0.44.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" +checksum = "4664a0b726f11b1d6da990872f9528be090d3570c2275c9b89ba5bbc8e764592" dependencies = [ "hex", "parity-scale-codec", - "thiserror 2.0.12", + "thiserror 2.0.18", ] [[package]] @@ -13046,27 +13493,15 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.104" +version = "2.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" dependencies = [ "proc-macro2", "quote", "unicode-ident", ] -[[package]] -name = "synstructure" -version = "0.12.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", - "unicode-xid", -] - [[package]] name = "synstructure" version = "0.13.2" @@ -13075,7 +13510,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -13095,11 +13530,11 @@ dependencies = [ [[package]] name = "system-configuration" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b" +checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", "core-foundation 0.9.4", "system-configuration-sys", ] @@ -13128,27 +13563,27 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.12.16" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" +checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca" [[package]] name = "target-triple" -version = "0.1.4" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ac9aa371f599d22256307c24a9d748c041e548cbf599f35d890f9d365361790" +checksum = "591ef38edfb78ca4771ee32cf494cb8771944bee237a9b91fc9c1424ac4b777b" [[package]] name = "tempfile" -version = "3.20.0" +version = "3.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.3", + "getrandom 0.4.3", "once_cell", - "rustix 1.0.8", - "windows-sys 0.59.0", + "rustix", + "windows-sys 0.61.2", ] [[package]] @@ -13162,12 +13597,12 @@ dependencies = [ [[package]] name = "terminal_size" -version = "0.4.2" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed" +checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ - "rustix 1.0.8", - "windows-sys 0.59.0", + "rustix", + "windows-sys 0.61.2", ] [[package]] @@ -13187,11 +13622,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.12" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.12", + "thiserror-impl 2.0.18", ] [[package]] @@ -13202,18 +13637,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "thiserror-impl" -version = "2.0.12" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -13224,9 +13659,9 @@ checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" [[package]] name = "thread_local" -version = "1.1.9" +version = "1.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" +checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070" dependencies = [ "cfg-if", ] @@ -13242,9 +13677,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-ctl" -version = "0.5.4" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "619bfed27d807b54f7f776b9430d4f8060e66ee138a28632ca898584d462c31c" +checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c" dependencies = [ "libc", "paste", @@ -13253,9 +13688,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.4+5.3.0-patched" +version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" +checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b" dependencies = [ "cc", "libc", @@ -13263,30 +13698,29 @@ dependencies = [ [[package]] name = "time" -version = "0.3.41" +version = "0.3.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" +checksum = "18dfaaeddcb932337b5e7866ee7d0ce9b76d2fd092997146f187ec09b4558a50" dependencies = [ "deranged", - "itoa", "num-conv", "powerfmt", - "serde", + "serde_core", "time-core", "time-macros", ] [[package]] name = "time-core" -version = "0.1.4" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" +checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" [[package]] name = "time-macros" -version = "0.2.22" +version = "0.2.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" +checksum = "c431b87111666e491a90baa837f914fb45cd5dc3c268591b0220ff5057f2085f" dependencies = [ "num-conv", "time-core", @@ -13303,9 +13737,9 @@ dependencies = [ [[package]] name = "tinystr" -version = "0.8.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" dependencies = [ "displaydoc", "zerovec", @@ -13313,9 +13747,9 @@ dependencies = [ [[package]] name = "tinyvec" -version = "1.9.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" +checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" dependencies = [ "tinyvec_macros", ] @@ -13328,40 +13762,37 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.47.0" +version = "1.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" +checksum = "d988bcd52dbe076d3d46903332f58c912b87a2c49b1428419a5845154762ffee" dependencies = [ - "backtrace", "bytes", - "io-uring", "libc", "mio", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project-lite", "signal-hook-registry", - "slab", - "socket2 0.6.0", + "socket2 0.6.5", "tokio-macros", - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] name = "tokio-macros" -version = "2.5.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" +checksum = "6328af13490e73a9b4694030fafd93f8c8c6a9dede33e821c3fc63eddf8042ba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "tokio-rustls" -version = "0.26.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" dependencies = [ "rustls", "tokio", @@ -13369,9 +13800,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.17" +version = "0.1.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" +checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70" dependencies = [ "futures-core", "pin-project-lite", @@ -13381,9 +13812,9 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084" +checksum = "489a59b6730eda1b0171fcfda8b121f4bee2b35cba8645ca35c5f7ba3eb736c1" dependencies = [ "futures-util", "log", @@ -13397,9 +13828,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.15" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", @@ -13409,15 +13840,6 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.5.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" -dependencies = [ - "serde", -] - [[package]] name = "toml" version = "0.8.23" @@ -13427,22 +13849,22 @@ dependencies = [ "serde", "serde_spanned 0.6.9", "toml_datetime 0.6.11", - "toml_edit", + "toml_edit 0.22.27", ] [[package]] name = "toml" -version = "0.9.4" +version = "1.1.3+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41ae868b5a0f67631c14589f7e250c1ea2c574ee5ba21c6c8dd4b1485705a5a1" +checksum = "53c96ecdfa941c8fc4fcaed14f99ada8ebed502eef533015095a07e3301d4c3c" dependencies = [ - "indexmap 2.10.0", - "serde", - "serde_spanned 1.0.0", - "toml_datetime 0.7.0", + "indexmap", + "serde_core", + "serde_spanned 1.1.1", + "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", "toml_writer", - "winnow", + "winnow 1.0.4", ] [[package]] @@ -13456,11 +13878,11 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.7.0" +version = "1.1.1+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" dependencies = [ - "serde", + "serde_core", ] [[package]] @@ -13469,21 +13891,33 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.10.0", + "indexmap", "serde", "serde_spanned 0.6.9", "toml_datetime 0.6.11", "toml_write", - "winnow", + "winnow 0.7.15", +] + +[[package]] +name = "toml_edit" +version = "0.25.13+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" +dependencies = [ + "indexmap", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.4", ] [[package]] name = "toml_parser" -version = "1.0.1" +version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97200572db069e74c512a14117b296ba0a80a30123fbbb5aa1f4a348f639ca30" +checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow", + "winnow 1.0.4", ] [[package]] @@ -13494,9 +13928,9 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801" [[package]] name = "toml_writer" -version = "1.0.2" +version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64" +checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2" [[package]] name = "tower" @@ -13519,10 +13953,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" dependencies = [ - "bitflags 2.9.1", + "bitflags 2.13.1", "bytes", - "http 1.3.1", - "http-body 1.0.1", + "http 1.4.2", + "http-body 1.1.0", "http-body-util", "pin-project-lite", "tower-layer", @@ -13543,9 +13977,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", @@ -13555,20 +13989,20 @@ 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", - "syn 2.0.104", + "syn 2.0.119", ] [[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", @@ -13586,8 +14020,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "20.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "26.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "coarsetime", "polkadot-primitives", @@ -13598,13 +14032,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "expander", - "proc-macro-crate 3.3.0", + "proc-macro-crate", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] @@ -13613,7 +14047,9 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ + "ahash 0.7.8", "log", + "lru 0.7.8", "once_cell", "tracing-core", ] @@ -13627,7 +14063,7 @@ dependencies = [ "matchers", "nu-ansi-term", "once_cell", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "regex", "sharded-slab", "smallvec", @@ -13640,9 +14076,9 @@ dependencies = [ [[package]] name = "trie-db" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c0670ab45a6b7002c7df369fee950a27cf29ae0474343fd3a15aa15f691e7a6" +checksum = "a7795f2df2ef744e4ffb2125f09325e60a21d305cc3ecece0adeef03f7a9e560" dependencies = [ "hash-db", "log", @@ -13667,9 +14103,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" [[package]] name = "trybuild" -version = "1.0.110" +version = "1.0.118" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e257d7246e7a9fd015fb0b28b330a8d4142151a33f03e6a497754f4b1f6a8e" +checksum = "06649c6f63d86604ba0c8950d5a1829fc9a17afd70fc6629f481d75b6a624c78" dependencies = [ "glob", "serde", @@ -13677,7 +14113,7 @@ dependencies = [ "serde_json", "target-triple", "termcolor", - "toml 0.9.4", + "toml 1.1.3+spec-1.1.0", ] [[package]] @@ -13688,20 +14124,20 @@ checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" [[package]] name = "tungstenite" -version = "0.26.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13" +checksum = "eadc29d668c91fcc564941132e17b28a7ceb2f3ebf0b9dae3e03fd7a6748eb0d" dependencies = [ "bytes", "data-encoding", - "http 1.3.1", + "http 1.4.2", "httparse", "log", - "rand 0.9.2", + "rand 0.9.5", "rustls", "rustls-pki-types", "sha1", - "thiserror 2.0.12", + "thiserror 2.0.18", "url", "utf-8", ] @@ -13720,15 +14156,21 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.7", - "rand 0.8.5", + "rand 0.8.7", "static_assertions", ] +[[package]] +name = "twox-hash" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c" + [[package]] name = "typenum" -version = "1.18.0" +version = "1.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" [[package]] name = "ucd-trie" @@ -13768,30 +14210,30 @@ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" [[package]] name = "unicode-ident" -version = "1.0.18" +version = "1.0.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" [[package]] name = "unicode-normalization" -version = "0.1.22" +version = "0.1.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8" dependencies = [ "tinyvec", ] [[package]] name = "unicode-segmentation" -version = "1.12.0" +version = "1.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" +checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8" [[package]] name = "unicode-width" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" [[package]] name = "unicode-xid" @@ -13805,7 +14247,7 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ - "crypto-common", + "crypto-common 0.1.7", "subtle 2.6.1", ] @@ -13845,13 +14287,14 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "url" -version = "2.5.4" +version = "2.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" dependencies = [ "form_urlencoded", "idna", "percent-encoding", + "serde", ] [[package]] @@ -13874,11 +14317,11 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.17.0" +version = "1.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d" +checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239" dependencies = [ - "getrandom 0.3.3", + "getrandom 0.4.3", "js-sys", "wasm-bindgen", ] @@ -13921,19 +14364,19 @@ dependencies = [ "ark-serialize-derive 0.4.2", "arrayref", "digest 0.10.7", - "rand 0.8.5", + "rand 0.8.7", "rand_chacha 0.3.1", "rand_core 0.6.4", "sha2 0.10.9", - "sha3", + "sha3 0.10.9", "zeroize", ] [[package]] name = "w3f-pcs" -version = "0.0.2" +version = "0.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbe7a8d5c914b69392ab3b267f679a2e546fe29afaddce47981772ac71bd02e1" +checksum = "3ea1046a1deb6d26c34ba2d1f1bab4222d695d126502ee765f80b021753cb674" dependencies = [ "ark-ec 0.5.0", "ark-ff 0.5.0", @@ -13945,9 +14388,9 @@ dependencies = [ [[package]] name = "w3f-plonk-common" -version = "0.0.2" +version = "0.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1aca389e494fe08c5c108b512e2328309036ee1c0bc7bdfdb743fef54d448c8c" +checksum = "30408cda37b81bd7257319942584c794c5784d00d749757bc664656749a1472a" dependencies = [ "ark-ec 0.5.0", "ark-ff 0.5.0", @@ -13961,9 +14404,9 @@ dependencies = [ [[package]] name = "w3f-ring-proof" -version = "0.0.2" +version = "0.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a639379402ad51504575dbd258740383291ac8147d3b15859bdf1ea48c677de" +checksum = "0cbfc4cb881a934e6f33c25927bf955d0cb18e52b94528bbc5fa28dddedb4cd1" dependencies = [ "ark-ec 0.5.0", "ark-ff 0.5.0", @@ -14001,67 +14444,51 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] -name = "wasi" -version = "0.14.2+wasi-0.2.4" +name = "wasip2" +version = "1.0.4+wasi-0.2.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" dependencies = [ - "wit-bindgen-rt", + "wit-bindgen", ] [[package]] name = "wasix" -version = "0.12.21" +version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" +checksum = "ae86f02046da16a333a9129d31451423e1657737ecdafed4193838a5f54c5cfe" dependencies = [ - "wasi 0.11.1+wasi-snapshot-preview1", + "wasi", ] [[package]] name = "wasm-bindgen" -version = "0.2.100" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" dependencies = [ "cfg-if", "once_cell", "rustversion", "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn 2.0.104", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.50" +version = "0.4.76" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" dependencies = [ - "cfg-if", "js-sys", - "once_cell", "wasm-bindgen", - "web-sys", ] [[package]] name = "wasm-bindgen-macro" -version = "0.2.100" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -14069,26 +14496,36 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.100" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" dependencies = [ + "bumpalo", "proc-macro2", "quote", - "syn 2.0.104", - "wasm-bindgen-backend", + "syn 2.0.119", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.100" +version = "0.2.126" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" dependencies = [ "unicode-ident", ] +[[package]] +name = "wasm-encoder" +version = "0.236.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "724fccfd4f3c24b7e589d333fc0429c68042897a7e8a5f8694f31792471841e7" +dependencies = [ + "leb128fmt", + "wasmparser 0.236.1", +] + [[package]] name = "wasm-instrument" version = "0.4.0" @@ -14155,263 +14592,308 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50386c99b9c32bd2ed71a55b6dd4040af2580530fae8bdb9a6576571a80d0cca" +checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063" dependencies = [ - "arrayvec 0.7.6", + "arrayvec 0.7.8", "multi-stash", - "num-derive", - "num-traits", "smallvec", - "spin 0.9.8", + "spin 0.9.9", "wasmi_collections", "wasmi_core", - "wasmparser-nostd", + "wasmi_ir", + "wasmparser 0.221.3", ] [[package]] name = "wasmi_collections" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c128c039340ffd50d4195c3f8ce31aac357f06804cfc494c8b9508d4b30dca4" -dependencies = [ - "ahash", - "hashbrown 0.14.5", - "string-interner", -] +checksum = "e80d6b275b1c922021939d561574bf376613493ae2b61c6963b15db0e8813562" [[package]] name = "wasmi_core" -version = "0.32.3" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23b3a7f6c8c3ceeec6b83531ee61f0013c56e51cbf2b14b0f213548b23a4b41" +checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33" dependencies = [ "downcast-rs", "libm", - "num-traits", - "paste", +] + +[[package]] +name = "wasmi_ir" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e431a14c186db59212a88516788bd68ed51f87aa1e08d1df742522867b5289a" +dependencies = [ + "wasmi_core", ] [[package]] name = "wasmparser" -version = "0.102.0" +version = "0.221.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185" dependencies = [ - "indexmap 1.9.3", - "url", + "bitflags 2.13.1", +] + +[[package]] +name = "wasmparser" +version = "0.236.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b1e81f3eb254cf7404a82cee6926a4a3ccc5aad80cc3d43608a070c67aa1d7" +dependencies = [ + "bitflags 2.13.1", + "hashbrown 0.15.5", + "indexmap", + "semver 1.0.28", + "serde", ] [[package]] -name = "wasmparser-nostd" -version = "0.100.2" +name = "wasmprinter" +version = "0.236.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5a015fe95f3504a94bb1462c717aae75253e39b9dd6c3fb1062c934535c64aa" +checksum = "2df225df06a6df15b46e3f73ca066ff92c2e023670969f7d50ce7d5e695abbb1" dependencies = [ - "indexmap-nostd", + "anyhow", + "termcolor", + "wasmparser 0.236.1", ] [[package]] name = "wasmtime" -version = "8.0.1" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" +checksum = "4b4442dc12aa2473def8334f0e0f2b489be52c52507c938bbdc8be69ded4ded6" dependencies = [ + "addr2line", "anyhow", - "bincode", + "bitflags 2.13.1", + "bumpalo", + "cc", "cfg-if", - "indexmap 1.9.3", + "fxprof-processed-profile", + "gimli 0.32.3", + "hashbrown 0.15.5", + "indexmap", + "ittapi", "libc", "log", - "object 0.30.4", + "mach2", + "memfd", + "object 0.37.3", "once_cell", - "paste", - "psm", + "postcard", + "pulley-interpreter", "rayon", + "rustix", "serde", + "serde_derive", + "serde_json", + "smallvec", "target-lexicon", - "wasmparser", - "wasmtime-cache", - "wasmtime-cranelift", + "wasmparser 0.236.1", "wasmtime-environ", - "wasmtime-jit", - "wasmtime-runtime", - "windows-sys 0.45.0", + "wasmtime-internal-asm-macros", + "wasmtime-internal-cache", + "wasmtime-internal-cranelift", + "wasmtime-internal-fiber", + "wasmtime-internal-jit-debug", + "wasmtime-internal-jit-icache-coherence", + "wasmtime-internal-math", + "wasmtime-internal-slab", + "wasmtime-internal-unwinder", + "wasmtime-internal-versioned-export-macros", + "wasmtime-internal-winch", + "windows-sys 0.60.2", ] [[package]] -name = "wasmtime-asm-macros" -version = "8.0.1" +name = "wasmtime-environ" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" +checksum = "5d881c3d6205898a226cc487b117f23b9ed1c7da39952d65bd5eeb6745b3789c" +dependencies = [ + "anyhow", + "cpp_demangle", + "cranelift-bitset", + "cranelift-entity", + "gimli 0.32.3", + "indexmap", + "log", + "object 0.37.3", + "postcard", + "rustc-demangle", + "serde", + "serde_derive", + "smallvec", + "target-lexicon", + "wasm-encoder", + "wasmparser 0.236.1", + "wasmprinter", +] + +[[package]] +name = "wasmtime-internal-asm-macros" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ab1876bcfa51d6a05dea1c13933f53cbc1e316c783fddebc859f56a736eae07" dependencies = [ "cfg-if", ] [[package]] -name = "wasmtime-cache" -version = "8.0.1" +name = "wasmtime-internal-cache" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" +checksum = "2195a1521a5214a71b67ca2ba2d9317ae15917288ea9d8e5836142b921c9d155" dependencies = [ "anyhow", - "base64 0.21.7", - "bincode", + "base64", "directories-next", - "file-per-thread-logger", "log", - "rustix 0.36.17", + "postcard", + "rustix", "serde", + "serde_derive", "sha2 0.10.9", - "toml 0.5.11", - "windows-sys 0.45.0", - "zstd 0.11.2+zstd.1.5.2", + "toml 0.8.23", + "windows-sys 0.60.2", + "zstd 0.13.3", ] [[package]] -name = "wasmtime-cranelift" -version = "8.0.1" +name = "wasmtime-internal-cranelift" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" +checksum = "ab3495aa8300e4ca6b53f81a53ce5eff6621fd5ff8378ef9ae552d1479d57371" dependencies = [ "anyhow", + "cfg-if", "cranelift-codegen", + "cranelift-control", "cranelift-entity", "cranelift-frontend", "cranelift-native", - "cranelift-wasm", - "gimli 0.27.3", + "gimli 0.32.3", + "itertools 0.14.0", "log", - "object 0.30.4", + "object 0.37.3", + "pulley-interpreter", + "smallvec", "target-lexicon", - "thiserror 1.0.69", - "wasmparser", - "wasmtime-cranelift-shared", + "thiserror 2.0.18", + "wasmparser 0.236.1", "wasmtime-environ", + "wasmtime-internal-math", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-cranelift-shared" -version = "8.0.1" +name = "wasmtime-internal-fiber" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b" +checksum = "29b5e4023a6b167da157338f5f0f505945eb45e78f1cac2d4dcce0922457d7d4" dependencies = [ "anyhow", - "cranelift-codegen", - "cranelift-native", - "gimli 0.27.3", - "object 0.30.4", - "target-lexicon", - "wasmtime-environ", + "cc", + "cfg-if", + "libc", + "rustix", + "wasmtime-internal-asm-macros", + "wasmtime-internal-versioned-export-macros", + "windows-sys 0.60.2", ] [[package]] -name = "wasmtime-environ" -version = "8.0.1" +name = "wasmtime-internal-jit-debug" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" +checksum = "9da71e2d573e3cc6f753a3b7bff98f425ca060c0e8071cc55c3d867a9edf3ecc" dependencies = [ - "anyhow", - "cranelift-entity", - "gimli 0.27.3", - "indexmap 1.9.3", - "log", - "object 0.30.4", - "serde", - "target-lexicon", - "thiserror 1.0.69", - "wasmparser", - "wasmtime-types", + "cc", + "object 0.37.3", + "rustix", + "wasmtime-internal-versioned-export-macros", ] [[package]] -name = "wasmtime-jit" -version = "8.0.1" +name = "wasmtime-internal-jit-icache-coherence" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244" +checksum = "627d8f57909a4f9bb1dbe57a96229a54b89d5995353d0b321f3cb9a1a118977a" dependencies = [ - "addr2line 0.19.0", "anyhow", - "bincode", "cfg-if", - "cpp_demangle", - "gimli 0.27.3", - "log", - "object 0.30.4", - "rustc-demangle", - "serde", - "target-lexicon", - "wasmtime-environ", - "wasmtime-jit-debug", - "wasmtime-jit-icache-coherence", - "wasmtime-runtime", - "windows-sys 0.45.0", + "libc", + "windows-sys 0.60.2", ] [[package]] -name = "wasmtime-jit-debug" -version = "8.0.1" +name = "wasmtime-internal-math" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846" +checksum = "45b99315585a8a27125dd9b0150edb115d6f6ff0baae453c21d30822aab77f00" dependencies = [ - "object 0.30.4", - "once_cell", - "rustix 0.36.17", + "libm", ] [[package]] -name = "wasmtime-jit-icache-coherence" -version = "8.0.1" +name = "wasmtime-internal-slab" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" -dependencies = [ - "cfg-if", - "libc", - "windows-sys 0.45.0", -] +checksum = "8eaee97281dd3fe47ec3d46c16fb9fe2dd32f37d0523c2d5c484f11b348734e4" [[package]] -name = "wasmtime-runtime" -version = "8.0.1" +name = "wasmtime-internal-unwinder" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" +checksum = "d0c005f82c48492b6b44fa19ee5205bd933c4f8baca41e314eca8331dd3c4fd9" dependencies = [ "anyhow", - "cc", "cfg-if", - "indexmap 1.9.3", - "libc", + "cranelift-codegen", "log", - "mach", - "memfd", - "memoffset", - "paste", - "rand 0.8.5", - "rustix 0.36.17", - "wasmtime-asm-macros", - "wasmtime-environ", - "wasmtime-jit-debug", - "windows-sys 0.45.0", + "object 0.37.3", ] [[package]] -name = "wasmtime-types" -version = "8.0.1" +name = "wasmtime-internal-versioned-export-macros" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" +checksum = "7b73639a9c0c0e33a2ef942ca99b6772b48393be92bebbd0767c607e5b0a68e0" dependencies = [ - "cranelift-entity", - "serde", - "thiserror 1.0.69", - "wasmparser", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "wasmtime-internal-winch" +version = "36.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "392ca021d084c7426616ef77e1284315555f11bcbb34f416d74b0732db622811" +dependencies = [ + "anyhow", + "cranelift-codegen", + "gimli 0.32.3", + "object 0.37.3", + "target-lexicon", + "wasmparser 0.236.1", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "winch-codegen", ] [[package]] name = "web-sys" -version = "0.3.77" +version = "0.3.103" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" dependencies = [ "js-sys", "wasm-bindgen", @@ -14433,14 +14915,14 @@ version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "webpki-root-certs 1.0.2", + "webpki-root-certs 1.0.8", ] [[package]] name = "webpki-root-certs" -version = "1.0.2" +version = "1.0.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e4ffd8df1c57e87c325000a3d6ef93db75279dc3a231125aac571650f22b12a" +checksum = "0d46a5a140e6f7afeccd8eae97eff335163939eac8b929834875168b29b3d267" dependencies = [ "rustls-pki-types", ] @@ -14463,9 +14945,9 @@ dependencies = [ [[package]] name = "widestring" -version = "1.2.0" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd7cf3379ca1aac9eea11fba24fd7e315d621f8dfe35c8d7d2be8b793726e07d" +checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" [[package]] name = "winapi" @@ -14485,11 +14967,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" [[package]] name = "winapi-util" -version = "0.1.9" +version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", ] [[package]] @@ -14499,45 +14981,54 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" [[package]] -name = "windows" -version = "0.52.0" +name = "winch-codegen" +version = "36.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +checksum = "61ec880b20caaa72245944b54cfb22aca111f8c805e12a7542b40d66921e5323" dependencies = [ - "windows-core 0.52.0", - "windows-targets 0.52.6", + "anyhow", + "cranelift-assembler-x64", + "cranelift-codegen", + "gimli 0.32.3", + "regalloc2 0.12.2", + "smallvec", + "target-lexicon", + "thiserror 2.0.18", + "wasmparser 0.236.1", + "wasmtime-environ", + "wasmtime-internal-cranelift", + "wasmtime-internal-math", ] [[package]] name = "windows" -version = "0.53.0" +version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efc5cf48f83140dcaab716eeaea345f9e93d0018fb81162753a3f76c3397b538" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" dependencies = [ - "windows-core 0.53.0", + "windows-core 0.52.0", "windows-targets 0.52.6", ] [[package]] name = "windows" -version = "0.61.3" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ "windows-collections", - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-future", - "windows-link", "windows-numerics", ] [[package]] name = "windows-collections" -version = "0.2.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.62.2", ] [[package]] @@ -14551,99 +15042,91 @@ dependencies = [ [[package]] name = "windows-core" -version = "0.53.0" +version = "0.62.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9dcc5b895a6377f1ab9fa55acedab1fd5ac0db66ad1e6c7f47e28a22e446a5dd" -dependencies = [ - "windows-result 0.1.2", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-core" -version = "0.61.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" dependencies = [ "windows-implement", "windows-interface", "windows-link", - "windows-result 0.3.4", + "windows-result", "windows-strings", ] [[package]] name = "windows-future" -version = "0.2.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-link", "windows-threading", ] [[package]] name = "windows-implement" -version = "0.60.0" +version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "windows-interface" -version = "0.59.1" +version = "0.59.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "windows-link" -version = "0.1.3" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" [[package]] name = "windows-numerics" -version = "0.2.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core 0.61.2", + "windows-core 0.62.2", "windows-link", ] [[package]] -name = "windows-result" -version = "0.1.2" +name = "windows-registry" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" +checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720" dependencies = [ - "windows-targets 0.52.6", + "windows-link", + "windows-result", + "windows-strings", ] [[package]] name = "windows-result" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" dependencies = [ "windows-link", ] [[package]] name = "windows-strings" -version = "0.4.2" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" dependencies = [ "windows-link", ] @@ -14690,7 +15173,16 @@ version = "0.60.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" dependencies = [ - "windows-targets 0.53.3", + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", ] [[package]] @@ -14741,26 +15233,26 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.53.3" +version = "0.53.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" dependencies = [ "windows-link", - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", ] [[package]] name = "windows-threading" -version = "0.1.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37" dependencies = [ "windows-link", ] @@ -14785,9 +15277,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" [[package]] name = "windows_aarch64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" [[package]] name = "windows_aarch64_msvc" @@ -14809,9 +15301,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" [[package]] name = "windows_aarch64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" [[package]] name = "windows_i686_gnu" @@ -14833,9 +15325,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" [[package]] name = "windows_i686_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" [[package]] name = "windows_i686_gnullvm" @@ -14845,9 +15337,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" [[package]] name = "windows_i686_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" [[package]] name = "windows_i686_msvc" @@ -14869,9 +15361,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" [[package]] name = "windows_i686_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" [[package]] name = "windows_x86_64_gnu" @@ -14893,9 +15385,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" [[package]] name = "windows_x86_64_gnu" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" [[package]] name = "windows_x86_64_gnullvm" @@ -14917,9 +15409,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" [[package]] name = "windows_x86_64_gnullvm" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" [[package]] name = "windows_x86_64_msvc" @@ -14941,43 +15433,39 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" [[package]] name = "windows_x86_64_msvc" -version = "0.53.0" +version = "0.53.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" [[package]] name = "winnow" -version = "0.7.12" +version = "0.7.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" dependencies = [ "memchr", ] [[package]] -name = "winreg" -version = "0.50.0" +name = "winnow" +version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" dependencies = [ - "cfg-if", - "windows-sys 0.48.0", + "memchr", ] [[package]] -name = "wit-bindgen-rt" -version = "0.39.0" +name = "wit-bindgen" +version = "0.57.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" -dependencies = [ - "bitflags 2.9.1", -] +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" [[package]] name = "writeable" -version = "0.6.1" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" [[package]] name = "wyz" @@ -15010,7 +15498,7 @@ dependencies = [ "data-encoding", "der-parser 9.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.7.1", "rusticata-macros", "thiserror 1.0.69", @@ -15023,33 +15511,33 @@ version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4569f339c0c402346d4a75a9e39cf8dad310e287eef1ff56d4c68e5067f53460" dependencies = [ - "asn1-rs 0.7.1", + "asn1-rs 0.7.2", "data-encoding", "der-parser 10.0.0", "lazy_static", - "nom", + "nom 7.1.3", "oid-registry 0.8.1", "rusticata-macros", - "thiserror 2.0.12", + "thiserror 2.0.18", "time", ] [[package]] name = "xcm-procedural" -version = "11.0.2" -source = "git+https://github.com/opentensor/polkadot-sdk?rev=7cc54bf2d50ae3921d718736dfeb0de9468539c7#7cc54bf2d50ae3921d718736dfeb0de9468539c7" +version = "7.0.0" +source = "git+https://github.com/RaoFoundation/polkadot-sdk.git?rev=2e59052583d6d70060f2781e79b7004d7a3055a0#2e59052583d6d70060f2781e79b7004d7a3055a0" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "xml-rs" -version = "0.8.27" +version = "0.8.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7" +checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f" [[package]] name = "xmltree" @@ -15069,24 +15557,24 @@ dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", - "rand 0.8.5", + "rand 0.8.7", "static_assertions", ] [[package]] name = "yamux" -version = "0.13.5" +version = "0.13.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3da1acad1c2dc53f0dde419115a38bd8221d8c3e47ae9aeceaf453266d29307e" +checksum = "1991f6690292030e31b0144d73f5e8368936c58e45e7068254f7138b23b00672" dependencies = [ "futures", "log", "nohash-hasher", - "parking_lot 0.12.4", + "parking_lot 0.12.5", "pin-project", - "rand 0.9.2", + "rand 0.9.5", "static_assertions", "web-time", ] @@ -15108,11 +15596,10 @@ dependencies = [ [[package]] name = "yoke" -version = "0.8.0" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" dependencies = [ - "serde", "stable_deref_trait", "yoke-derive", "zerofrom", @@ -15120,82 +15607,82 @@ dependencies = [ [[package]] name = "yoke-derive" -version = "0.8.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] name = "zerocopy" -version = "0.8.26" +version = "0.8.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f" +checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.26" +version = "0.8.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181" +checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "zerofrom" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" dependencies = [ "zerofrom-derive", ] [[package]] name = "zerofrom-derive" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", - "synstructure 0.13.2", + "syn 2.0.119", + "synstructure", ] [[package]] name = "zeroize" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" dependencies = [ "zeroize_derive", ] [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "3c50655cbb0fe3fc43170059e702f1ce5e19b84cec58dc87b037a09935c2f328" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] name = "zerotrie" -version = "0.2.2" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" dependencies = [ "displaydoc", "yoke", @@ -15204,9 +15691,9 @@ dependencies = [ [[package]] name = "zerovec" -version = "0.11.2" +version = "0.11.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" dependencies = [ "yoke", "zerofrom", @@ -15215,23 +15702,20 @@ dependencies = [ [[package]] name = "zerovec-derive" -version = "0.11.1" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" dependencies = [ "proc-macro2", "quote", - "syn 2.0.104", + "syn 2.0.119", ] [[package]] -name = "zstd" -version = "0.11.2+zstd.1.5.2" +name = "zmij" +version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" -dependencies = [ - "zstd-safe 5.0.2+zstd.1.5.2", -] +checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" [[package]] name = "zstd" @@ -15243,13 +15727,12 @@ dependencies = [ ] [[package]] -name = "zstd-safe" -version = "5.0.2+zstd.1.5.2" +name = "zstd" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db" +checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" dependencies = [ - "libc", - "zstd-sys", + "zstd-safe 7.2.4", ] [[package]] @@ -15262,11 +15745,20 @@ dependencies = [ "zstd-sys", ] +[[package]] +name = "zstd-safe" +version = "7.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" +dependencies = [ + "zstd-sys", +] + [[package]] name = "zstd-sys" -version = "2.0.15+zstd.1.5.7" +version = "2.0.16+zstd.1.5.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" +checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748" dependencies = [ "cc", "pkg-config", diff --git a/vendor/frontier/Cargo.toml b/vendor/frontier/Cargo.toml index 3e1445f7aa..7e1f3f041d 100644 --- a/vendor/frontier/Cargo.toml +++ b/vendor/frontier/Cargo.toml @@ -46,6 +46,11 @@ members = [ ] resolver = "2" +[workspace.metadata.subtensor-vendor] +source = "https://github.com/RaoFoundation/frontier" +rev = "d553a11551333c2457d9e64d6d912e2210a4ca26" +compatibility = "Source is the exact dependency baseline plus the minimal stable2606/Rust 1.93 API, lint, and hashing ports in this vendor tree." + [workspace.package] authors = ["Frontier developers "] edition = "2021" @@ -70,7 +75,7 @@ impl-serde = { version = "0.5.0", default-features = false } impl-trait-for-tuples = "0.2.3" jsonrpsee = { version = "0.24.9" } jsonrpsee-core = { version = "0.24.9" } -kvdb-rocksdb = "0.19.0" +kvdb-rocksdb = "0.21.0" libsecp256k1 = { version = "0.7.2", default-features = false } log = { version = "0.4.27", default-features = false } num_enum = { version = "0.7.3", default-features = false } @@ -90,95 +95,95 @@ thiserror = "2.0" tokio = "1.45.0" # Substrate Client -sc-basic-authorship = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-block-builder = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-chain-spec = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-cli = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-client-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-client-db = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-consensus = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-aura = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-babe = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-grandpa = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-consensus-manual-seal = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-executor = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-keystore = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-common = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-network-sync = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-offchain = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-rpc-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-service = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sc-telemetry = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-transaction-pool = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-transaction-pool-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -sc-utils = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } +sc-basic-authorship = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-chain-spec = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-client-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-client-db = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-consensus-manual-seal = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-executor = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-keystore = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-network-sync = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-rpc-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-service = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sc-telemetry = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-transaction-pool-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +sc-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } # Substrate Primitive -sp-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-block-builder = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-blockchain = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-aura = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-babe = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-core = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-crypto-hashing = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-database = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-externalities = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-genesis-builder = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-inherents = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-io = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-keyring = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-offchain = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-runtime = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-runtime-interface = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-session = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-state-machine = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-std = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-storage = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-timestamp = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-transaction-pool = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-trie = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-version = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -sp-weights = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +sp-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-block-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-blockchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-babe = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-core = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-crypto-hashing = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-database = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-externalities = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-genesis-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-inherents = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-io = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-keyring = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-offchain = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-runtime = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-runtime-interface = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-session = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-state-machine = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-std = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-storage = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-transaction-pool = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-trie = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-version = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +sp-weights = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Substrate FRAME -frame-benchmarking = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-executive = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-support = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system-benchmarking = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -frame-system-rpc-runtime-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-aura = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-balances = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-grandpa = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-sudo = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-timestamp = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-transaction-payment = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-transaction-payment-rpc = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -pallet-utility = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +frame-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-executive = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-support = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system-benchmarking = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-aura = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-balances = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-grandpa = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-sudo = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-timestamp = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-transaction-payment = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-transaction-payment-rpc = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +pallet-utility = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Substrate Utility -frame-benchmarking-cli = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-build-script-utils = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-frame-rpc-system = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-test-runtime-client = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } -substrate-wasm-builder = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7" } +frame-benchmarking-cli = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +prometheus-endpoint = { package = "substrate-prometheus-endpoint", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-build-script-utils = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-frame-rpc-system = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-test-runtime-client = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } +substrate-wasm-builder = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778" } -stc-shield = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -stp-shield = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +stc-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +stp-shield = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Polkadot -polkadot-runtime-common = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +polkadot-runtime-common = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Cumulus primitives -cumulus-pallet-weight-reclaim = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } -cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +cumulus-pallet-weight-reclaim = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +cumulus-primitives-proof-size-hostfunction = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } +cumulus-primitives-storage-weight-reclaim = { git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # XCM -xcm = { package = "staging-xcm", git = "https://github.com/opentensor/polkadot-sdk", rev = "7cc54bf2d50ae3921d718736dfeb0de9468539c7", default-features = false } +xcm = { package = "staging-xcm", git = "https://github.com/RaoFoundation/polkadot-sdk.git", rev = "b788099fa0c2a5f9df0d228c77b4a92a8469b778", default-features = false } # Arkworks ark-bls12-377 = { version = "0.4.0", default-features = false, features = ["curve"] } diff --git a/vendor/frontier/client/rpc/src/eth/block.rs b/vendor/frontier/client/rpc/src/eth/block.rs index f2b5a24840..0f2af9e45b 100644 --- a/vendor/frontier/client/rpc/src/eth/block.rs +++ b/vendor/frontier/client/rpc/src/eth/block.rs @@ -25,7 +25,7 @@ use sc_client_api::backend::{Backend, StorageProvider}; use sc_transaction_pool_api::{InPoolTransaction, TransactionPool}; use sp_api::ProvideRuntimeApi; use sp_blockchain::HeaderBackend; -use sp_core::hashing::keccak_256; +use sp_io::hashing::keccak_256; use sp_runtime::traits::Block as BlockT; // Frontier use fc_rpc_core::types::*; diff --git a/vendor/frontier/client/rpc/src/eth/filter.rs b/vendor/frontier/client/rpc/src/eth/filter.rs index 9e0ce14f27..83121f7ff6 100644 --- a/vendor/frontier/client/rpc/src/eth/filter.rs +++ b/vendor/frontier/client/rpc/src/eth/filter.rs @@ -31,7 +31,7 @@ use sc_client_api::backend::{Backend, StorageProvider}; use sc_transaction_pool_api::{InPoolTransaction, TransactionPool}; use sp_api::ProvideRuntimeApi; use sp_blockchain::HeaderBackend; -use sp_core::hashing::keccak_256; +use sp_io::hashing::keccak_256; use sp_runtime::{ generic::BlockId, traits::{Block as BlockT, NumberFor, One, Saturating, UniqueSaturatedInto}, diff --git a/vendor/frontier/client/rpc/src/eth/mod.rs b/vendor/frontier/client/rpc/src/eth/mod.rs index e3e200279d..d5244d35d4 100644 --- a/vendor/frontier/client/rpc/src/eth/mod.rs +++ b/vendor/frontier/client/rpc/src/eth/mod.rs @@ -40,8 +40,8 @@ use sc_transaction_pool_api::TransactionPool; use sp_api::{CallApiAt, ProvideRuntimeApi}; use sp_block_builder::BlockBuilder as BlockBuilderApi; use sp_blockchain::HeaderBackend; -use sp_core::hashing::keccak_256; use sp_inherents::CreateInherentDataProviders; +use sp_io::hashing::keccak_256; use sp_runtime::traits::{Block as BlockT, UniqueSaturatedInto}; // Frontier use fc_rpc_core::{types::*, EthApiServer}; diff --git a/vendor/frontier/client/rpc/src/eth/submit.rs b/vendor/frontier/client/rpc/src/eth/submit.rs index 6bad506497..357621a751 100644 --- a/vendor/frontier/client/rpc/src/eth/submit.rs +++ b/vendor/frontier/client/rpc/src/eth/submit.rs @@ -220,7 +220,7 @@ where .into_iter() .filter_map(|tx| { let pubkey = match public_key(&tx) { - Ok(pk) => H160::from(H256::from(sp_core::hashing::keccak_256(&pk))), + Ok(pk) => H160::from(H256::from(sp_io::hashing::keccak_256(&pk))), Err(_err) => { // Skip transactions with invalid public keys return None; diff --git a/vendor/frontier/client/rpc/src/eth/transaction.rs b/vendor/frontier/client/rpc/src/eth/transaction.rs index 5b25f0cd3e..44b43b555c 100644 --- a/vendor/frontier/client/rpc/src/eth/transaction.rs +++ b/vendor/frontier/client/rpc/src/eth/transaction.rs @@ -26,7 +26,7 @@ use sc_client_api::backend::{Backend, StorageProvider}; use sc_transaction_pool_api::{InPoolTransaction, TransactionPool}; use sp_api::{ApiExt, ProvideRuntimeApi}; use sp_blockchain::HeaderBackend; -use sp_core::hashing::keccak_256; +use sp_io::hashing::keccak_256; use sp_runtime::traits::Block as BlockT; // Frontier use fc_rpc_core::types::*; diff --git a/vendor/frontier/client/rpc/src/signer.rs b/vendor/frontier/client/rpc/src/signer.rs index fcecc93101..e94ba69e28 100644 --- a/vendor/frontier/client/rpc/src/signer.rs +++ b/vendor/frontier/client/rpc/src/signer.rs @@ -20,7 +20,7 @@ use ethereum::{eip2930, legacy, TransactionV3 as EthereumTransaction}; use ethereum_types::{H160, H256}; use jsonrpsee::types::ErrorObjectOwned; // Substrate -use sp_core::hashing::keccak_256; +use sp_io::hashing::keccak_256; // Frontier use fc_rpc_core::types::TransactionMessage; diff --git a/vendor/frontier/client/rpc/src/txpool.rs b/vendor/frontier/client/rpc/src/txpool.rs index 0bbe8176f5..c703baf9e5 100644 --- a/vendor/frontier/client/rpc/src/txpool.rs +++ b/vendor/frontier/client/rpc/src/txpool.rs @@ -26,7 +26,7 @@ use serde::Serialize; use sc_transaction_pool_api::{InPoolTransaction, TransactionPool}; use sp_api::ProvideRuntimeApi; use sp_blockchain::HeaderBackend; -use sp_core::hashing::keccak_256; +use sp_io::hashing::keccak_256; use sp_runtime::traits::Block as BlockT; // Frontier use fc_rpc_core::{ diff --git a/vendor/frontier/client/rpc/src/web3.rs b/vendor/frontier/client/rpc/src/web3.rs index 51204f851e..2152ab81a0 100644 --- a/vendor/frontier/client/rpc/src/web3.rs +++ b/vendor/frontier/client/rpc/src/web3.rs @@ -23,7 +23,7 @@ use jsonrpsee::core::RpcResult; // Substrate use sp_api::{Core, ProvideRuntimeApi}; use sp_blockchain::HeaderBackend; -use sp_core::keccak_256; +use sp_io::hashing::keccak_256; use sp_runtime::traits::Block as BlockT; // Frontier use fc_rpc_core::{types::Bytes, Web3ApiServer}; diff --git a/vendor/frontier/frame/dynamic-fee/src/lib.rs b/vendor/frontier/frame/dynamic-fee/src/lib.rs index 58c84a3b34..8f8423ef09 100644 --- a/vendor/frontier/frame/dynamic-fee/src/lib.rs +++ b/vendor/frontier/frame/dynamic-fee/src/lib.rs @@ -105,7 +105,7 @@ pub mod pallet { #[pallet::storage] pub type TargetMinGasPrice = StorageValue<_, U256>; - #[derive(Encode, Decode, RuntimeDebug, PartialEq)] + #[derive(Encode, Decode, Debug, PartialEq)] pub enum InherentError { /// The target gas price is too high compared to the current gas price. TargetGasPriceTooHigh, diff --git a/vendor/frontier/frame/ethereum/src/lib.rs b/vendor/frontier/frame/ethereum/src/lib.rs index 48144abf19..b49cd5faa8 100644 --- a/vendor/frontier/frame/ethereum/src/lib.rs +++ b/vendor/frontier/frame/ethereum/src/lib.rs @@ -57,7 +57,7 @@ use sp_runtime::{ transaction_validity::{ InvalidTransaction, TransactionValidity, TransactionValidityError, ValidTransactionBuilder, }, - RuntimeDebug, SaturatedConversion, + Debug, SaturatedConversion, }; use sp_version::RuntimeVersion; // Frontier @@ -72,7 +72,7 @@ use fp_storage::{EthereumStorageSchema, PALLET_ETHEREUM_SCHEMA}; use frame_support::traits::PalletInfoAccess; use pallet_evm::{BlockHashMapping, FeeCalculator, GasWeightMapping, Runner}; -#[derive(Clone, Eq, PartialEq, RuntimeDebug)] +#[derive(Clone, Eq, PartialEq, Debug)] #[derive(Encode, Decode, DecodeWithMemTracking, MaxEncodedLen, TypeInfo)] pub enum RawOrigin { EthereumTransaction(H160), @@ -1046,7 +1046,7 @@ impl ValidatedTransactionT for ValidatedTransaction { } } -#[derive(Eq, PartialEq, Clone, RuntimeDebug)] +#[derive(Eq, PartialEq, Clone, Debug)] pub enum ReturnValue { Bytes(Vec), Hash(H160), diff --git a/vendor/frontier/frame/ethereum/src/mock.rs b/vendor/frontier/frame/ethereum/src/mock.rs index 7698918b22..4ee2c1c440 100644 --- a/vendor/frontier/frame/ethereum/src/mock.rs +++ b/vendor/frontier/frame/ethereum/src/mock.rs @@ -25,7 +25,8 @@ use ethereum::{ use rlp::RlpStream; // Substrate use frame_support::{derive_impl, parameter_types, traits::FindAuthor, ConsensusEngineId}; -use sp_core::{hashing::keccak_256, H160, H256, U256}; +use sp_core::{H160, H256, U256}; +use sp_io::hashing::keccak_256; use sp_runtime::{ traits::{Dispatchable, IdentityLookup}, AccountId32, BuildStorage, diff --git a/vendor/frontier/frame/evm-polkavm/src/vm/runtime.rs b/vendor/frontier/frame/evm-polkavm/src/vm/runtime.rs index fcda0b9273..e76f2fbae8 100644 --- a/vendor/frontier/frame/evm-polkavm/src/vm/runtime.rs +++ b/vendor/frontier/frame/evm-polkavm/src/vm/runtime.rs @@ -27,13 +27,12 @@ use pallet_evm_polkavm_uapi::{ReturnErrorCode, ReturnFlags}; use scale_codec::{Decode, Encode}; use scale_info::TypeInfo; use sp_core::{H160, H256, U256}; -use sp_runtime::RuntimeDebug; use super::{LOG_TARGET, SENTINEL}; use crate::{Config, ConvertPolkaVmGas, WeightInfo}; /// Output of a contract call or instantiation which ran to completion. -#[derive(Clone, PartialEq, Eq, Encode, Decode, RuntimeDebug, TypeInfo, Default)] +#[derive(Clone, PartialEq, Eq, Encode, Decode, Debug, TypeInfo, Default)] pub struct ExecReturnValue { /// Flags passed along by `seal_return`. Empty when `seal_return` was never called. pub flags: ReturnFlags, @@ -220,7 +219,7 @@ impl From<&ExecReturnValue> for ReturnErrorCode { } /// The data passed through when a contract uses `seal_return`. -#[derive(RuntimeDebug)] +#[derive(Debug)] pub struct ReturnData { /// The flags as passed through by the contract. They are still unchecked and /// will later be parsed into a `ReturnFlags` bitflags struct. @@ -229,7 +228,7 @@ pub struct ReturnData { data: Vec, } -#[derive(RuntimeDebug)] +#[derive(Debug)] pub enum SupervisorError { OutOfBounds, ExecutionFailed, @@ -249,7 +248,7 @@ pub enum SupervisorError { /// occurred (the SupervisorError variant). /// The other case is where the trap does not constitute an error but rather was invoked /// as a quick way to terminate the application (all other variants). -#[derive(RuntimeDebug)] +#[derive(Debug)] pub enum TrapReason { /// The supervisor trapped the contract because of an error condition occurred during /// execution in privileged code. diff --git a/vendor/frontier/precompiles/src/testing/account.rs b/vendor/frontier/precompiles/src/testing/account.rs index a81b99b0dc..75e12f52f1 100644 --- a/vendor/frontier/precompiles/src/testing/account.rs +++ b/vendor/frontier/precompiles/src/testing/account.rs @@ -19,7 +19,8 @@ use pallet_evm::AddressMapping; use scale_info::TypeInfo; use serde::{Deserialize, Serialize}; -use sp_core::{keccak_256, Decode, DecodeWithMemTracking, Encode, MaxEncodedLen, H160, H256}; +use sp_core::{ecdsa, Decode, DecodeWithMemTracking, Encode, MaxEncodedLen, H160, H256}; +use sp_io::hashing::keccak_256; #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Debug)] #[derive(Serialize, Deserialize, derive_more::Display)] @@ -105,7 +106,7 @@ impl sp_runtime::traits::Convert for MockAccount { Clone, Encode, Decode, - sp_core::RuntimeDebug, + Debug, TypeInfo, Serialize, Deserialize @@ -128,6 +129,7 @@ impl From for MockSignature { panic!("Sr25519 not supported for MockSignature") } sp_runtime::MultiSignature::Ecdsa(sig) => Self(sig), + sp_runtime::MultiSignature::Eth(sig) => Self(ecdsa::Signature::from(sig.0)), } } } @@ -160,17 +162,7 @@ impl sp_runtime::traits::Verify for MockSignature { } /// Public key for an Ethereum compatible account -#[derive( - Eq, - PartialEq, - Ord, - PartialOrd, - Clone, - Encode, - Decode, - sp_core::RuntimeDebug, - TypeInfo -)] +#[derive(Eq, PartialEq, Ord, PartialOrd, Clone, Encode, Decode, Debug, TypeInfo)] #[cfg_attr(feature = "std", derive(serde::Serialize, serde::Deserialize))] pub struct MockSigner([u8; 20]); diff --git a/vendor/frontier/primitives/account/src/lib.rs b/vendor/frontier/primitives/account/src/lib.rs index 35a48d2bcf..da6a8a94b5 100644 --- a/vendor/frontier/primitives/account/src/lib.rs +++ b/vendor/frontier/primitives/account/src/lib.rs @@ -26,7 +26,7 @@ use core::fmt; use scale_codec::{Decode, DecodeWithMemTracking, Encode, MaxEncodedLen}; use scale_info::TypeInfo; // Substrate -use sp_core::{crypto::AccountId32, ecdsa, RuntimeDebug, H160, H256}; +use sp_core::{crypto::AccountId32, ecdsa, H160, H256}; use sp_io::hashing::keccak_256; use sp_runtime::MultiSignature; @@ -185,14 +185,7 @@ impl From for Location { } #[derive(Clone, Eq, PartialEq)] -#[derive( - RuntimeDebug, - Encode, - Decode, - DecodeWithMemTracking, - MaxEncodedLen, - TypeInfo -)] +#[derive(Debug, Encode, Decode, DecodeWithMemTracking, MaxEncodedLen, TypeInfo)] #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] pub struct EthereumSignature(ecdsa::Signature); @@ -228,6 +221,7 @@ impl From for EthereumSignature { panic!("Sr25519 not supported for EthereumSignature") } MultiSignature::Ecdsa(sig) => Self(sig), + MultiSignature::Eth(sig) => Self(ecdsa::Signature::from(sig.0)), } } } @@ -239,7 +233,7 @@ impl EthereumSignature { } #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord)] -#[derive(RuntimeDebug, Encode, Decode, MaxEncodedLen, TypeInfo)] +#[derive(Debug, Encode, Decode, MaxEncodedLen, TypeInfo)] #[repr(transparent)] pub struct EthereumSigner([u8; 20]); diff --git a/vendor/frontier/primitives/rpc/src/lib.rs b/vendor/frontier/primitives/rpc/src/lib.rs index e77b2398a2..6f8aceacef 100644 --- a/vendor/frontier/primitives/rpc/src/lib.rs +++ b/vendor/frontier/primitives/rpc/src/lib.rs @@ -30,11 +30,11 @@ use scale_info::TypeInfo; use sp_core::{H256, U256}; use sp_runtime::{ traits::{Block as BlockT, HashingFor}, - Permill, RuntimeDebug, + Debug, Permill, }; use sp_state_machine::OverlayedChanges; -#[derive(Clone, Eq, PartialEq, Default, RuntimeDebug, Encode, Decode, TypeInfo)] +#[derive(Clone, Eq, PartialEq, Default, Debug, Encode, Decode, TypeInfo)] pub struct TransactionStatus { pub transaction_hash: H256, pub transaction_index: u32, diff --git a/vendor/frontier/primitives/self-contained/src/checked_extrinsic.rs b/vendor/frontier/primitives/self-contained/src/checked_extrinsic.rs index 6209e58b6b..43970f24f6 100644 --- a/vendor/frontier/primitives/self-contained/src/checked_extrinsic.rs +++ b/vendor/frontier/primitives/self-contained/src/checked_extrinsic.rs @@ -21,18 +21,18 @@ use sp_runtime::{ generic::ExtrinsicFormat, traits::{ transaction_extension::TransactionExtension, Applyable, AsTransactionAuthorizedOrigin, - DispatchInfoOf, DispatchTransaction, Dispatchable, MaybeDisplay, Member, + DispatchInfoOf, DispatchTransaction, Dispatchable, MaybeDisplay, Member, Pipeline, PostDispatchInfoOf, ValidateUnsigned, }, transaction_validity::{ InvalidTransaction, TransactionSource, TransactionValidity, TransactionValidityError, }, - RuntimeDebug, + Debug, }; use crate::SelfContainedCall; -#[derive(Clone, Eq, PartialEq, RuntimeDebug)] +#[derive(Clone, Eq, PartialEq, Debug)] pub enum CheckedSignature { GenericDelegated(ExtrinsicFormat), SelfContained(SelfContainedSignedInfo), @@ -41,7 +41,7 @@ pub enum CheckedSignature { /// Definition of something that the external world might want to say; its /// existence implies that it has been checked and is good, particularly with /// regards to the signature. -#[derive(Clone, Eq, PartialEq, RuntimeDebug)] +#[derive(Clone, Eq, PartialEq, Debug)] pub struct CheckedExtrinsic { /// Who this purports to be from and the number of extrinsics have come before /// from the same signer, if anyone (note this is not a signature). @@ -94,16 +94,9 @@ where .validate_only(origin, &self.function, info, len, source, 0) .map(|x| x.0) } - ExtrinsicFormat::General(extension_version, ref extension) => extension - .validate_only( - None.into(), - &self.function, - info, - len, - source, - *extension_version, - ) - .map(|x| x.0), + ExtrinsicFormat::General(ref extension) => { + extension.validate_only(None.into(), &self.function, info, len, source) + } }, SelfContained(signed_info) => self .function @@ -137,8 +130,9 @@ where ExtrinsicFormat::Signed(signer, extension) => { extension.dispatch_transaction(Some(signer).into(), self.function, info, len, 0) } - ExtrinsicFormat::General(extension_version, extension) => extension - .dispatch_transaction(None.into(), self.function, info, len, extension_version), + ExtrinsicFormat::General(extension) => { + extension.dispatch_transaction(None.into(), self.function, info, len) + } }, CheckedSignature::SelfContained(signed_info) => { // If pre-dispatch fail, the block must be considered invalid @@ -164,8 +158,4 @@ where } } } - - fn call(&self) -> &Self::Call { - &self.function - } } diff --git a/vendor/frontier/primitives/self-contained/src/lib.rs b/vendor/frontier/primitives/self-contained/src/lib.rs index d3549da020..b2f60af3c1 100644 --- a/vendor/frontier/primitives/self-contained/src/lib.rs +++ b/vendor/frontier/primitives/self-contained/src/lib.rs @@ -16,6 +16,8 @@ // limitations under the License. #![cfg_attr(not(feature = "std"), no_std)] +// stable2606 retains this legacy hook until the scheduled ValidateUnsigned removal. +#![allow(deprecated)] #![warn(unused_crate_dependencies)] mod checked_extrinsic; diff --git a/vendor/frontier/primitives/self-contained/src/unchecked_extrinsic.rs b/vendor/frontier/primitives/self-contained/src/unchecked_extrinsic.rs index 2f62cfbaa9..e6696ff39c 100644 --- a/vendor/frontier/primitives/self-contained/src/unchecked_extrinsic.rs +++ b/vendor/frontier/primitives/self-contained/src/unchecked_extrinsic.rs @@ -19,16 +19,17 @@ use frame_support::{ dispatch::{DispatchInfo, GetDispatchInfo}, traits::{InherentBuilder, SignedTransactionBuilder}, }; -use scale_codec::{Decode, DecodeWithMemTracking, Encode}; +use scale_codec::{Decode, DecodeWithMemTracking, Encode, Error as CodecError}; use scale_info::TypeInfo; use sp_runtime::{ generic::{self, Preamble}, traits::{ - self, Checkable, Dispatchable, ExtrinsicCall, ExtrinsicLike, ExtrinsicMetadata, - IdentifyAccount, MaybeDisplay, Member, TransactionExtension, + self, Checkable, Dispatchable, ExtensionVariant, ExtrinsicCall, ExtrinsicLike, + ExtrinsicMetadata, IdentifyAccount, InvalidVersion, LazyExtrinsic, MaybeDisplay, Member, + TransactionExtension, }, transaction_validity::{InvalidTransaction, TransactionValidityError}, - OpaqueExtrinsic, RuntimeDebug, + Debug, OpaqueExtrinsic, }; use crate::{CheckedExtrinsic, CheckedSignature, SelfContainedCall}; @@ -42,7 +43,7 @@ use crate::{CheckedExtrinsic, CheckedSignature, SelfContainedCall}; Encode, Decode, DecodeWithMemTracking, - RuntimeDebug, + Debug, TypeInfo )] pub struct UncheckedExtrinsic( @@ -153,7 +154,7 @@ where { const VERSIONS: &'static [u8] = generic::UncheckedExtrinsic::::VERSIONS; - type TransactionExtensions = Extension; + type TransactionExtensionPipelines = ExtensionVariant; } impl ExtrinsicCall @@ -169,6 +170,10 @@ where fn call(&self) -> &Self::Call { &self.0.function } + + fn into_call(self) -> Self::Call { + self.0.function + } } impl GetDispatchInfo @@ -198,8 +203,13 @@ where } #[cfg(feature = "serde")] -impl<'a, Address: Decode, Signature: Decode, Call, Extension> serde::Deserialize<'a> - for UncheckedExtrinsic +impl< + 'a, + Address: Decode + DecodeWithMemTracking, + Signature: Decode + DecodeWithMemTracking, + Call, + Extension, + > serde::Deserialize<'a> for UncheckedExtrinsic where Call: Decode + Dispatchable + DecodeWithMemTracking, Extension: Decode + TransactionExtension, @@ -269,3 +279,13 @@ impl Self(utx) } } + +impl LazyExtrinsic + for UncheckedExtrinsic +where + generic::UncheckedExtrinsic: LazyExtrinsic, +{ + fn decode_unprefixed(data: &[u8]) -> Result { + Ok(Self(LazyExtrinsic::decode_unprefixed(data)?)) + } +} diff --git a/vendor/w3f-bls/Cargo.toml b/vendor/w3f-bls/Cargo.toml index 351e005845..a4189c16d9 100644 --- a/vendor/w3f-bls/Cargo.toml +++ b/vendor/w3f-bls/Cargo.toml @@ -1,9 +1,13 @@ -# Vendored fork of https://github.com/w3f/bls (was github.com/RaoFoundation/bls, -# branch fix-no-std, commit 4ac443d11a6c9fdebe329d113702ad7387ba1688): upstream -# 0.1.3 plus one patch removing std usage from double_pop.rs so the crate builds -# for the runtime's no-std targets. Consumed by pallets/drand, the runtime, and -# sdk/bittensor-core via the workspace dep and the [patch.crates-io] entry in -# the root Cargo.toml. Keep diffs against upstream minimal. +[package.metadata.subtensor-vendor] +source = "https://github.com/RaoFoundation/bls" +rev = "4ac443d11a6c9fdebe329d113702ad7387ba1688" +compatibility-patches = [ + "format upstream example for workspace rustfmt gate", + "remove unused BLS_CONTEXT constant", + "fix unconditional out-of-bounds panic in DoublePublicKey::check", + "remove no-op Borrow call rejected by current lints", +] + [package] authors = ["Jack Grigg ", "Jeff Burdges ", "Syed Hosseini "] description = "Aggregate BLS-like signatures"