diff --git a/templates/Cargo.lock b/templates/Cargo.lock index 7158403..bdf3aa8 100644 --- a/templates/Cargo.lock +++ b/templates/Cargo.lock @@ -71,6 +71,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" @@ -99,11 +110,38 @@ version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" +[[package]] +name = "alloy-consensus" +version = "1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed1958f0294ecc05ebe7b3c9a8662a3e221c2523b7f2bcd94c7a651efbd510bf" +dependencies = [ + "alloy-eips", + "alloy-primitives", + "alloy-rlp", + "alloy-serde", + "alloy-trie", + "alloy-tx-macros", + "auto_impl", + "borsh", + "c-kzg", + "derive_more 2.1.1", + "either", + "k256", + "once_cell", + "rand 0.8.5", + "secp256k1 0.30.0", + "serde", + "serde_json", + "serde_with", + "thiserror 2.0.18", +] + [[package]] name = "alloy-core" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ca96214615ec8cf3fa2a54b32f486eb49100ca7fe7eb0b8c1137cd316e7250a" +checksum = "9d4087016b0896051dd3d03e0bedda2f4d4d1689af8addc8450288c63a9e5f68" dependencies = [ "alloy-dyn-abi", "alloy-json-abi", @@ -114,9 +152,9 @@ dependencies = [ [[package]] name = "alloy-dyn-abi" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fdff496dd4e98a81f4861e66f7eaf5f2488971848bb42d9c892f871730245c8" +checksum = "369f5707b958927176265e8a58627fc6195e5dfa5c55689396e68b241b3a72e6" dependencies = [ "alloy-json-abi", "alloy-primitives", @@ -138,7 +176,7 @@ dependencies = [ "alloy-rlp", "crc", "serde", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -164,37 +202,50 @@ dependencies = [ "borsh", "k256", "serde", - "thiserror 2.0.17", + "thiserror 2.0.18", +] + +[[package]] +name = "alloy-eip7928" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3231de68d5d6e75332b7489cfcc7f4dfabeba94d990a10e4b923af0e6623540" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "borsh", + "serde", ] [[package]] name = "alloy-eips" -version = "1.1.2" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bd2c7ae05abcab4483ce821f12f285e01c0b33804e6883dd9ca1569a87ee2be" +checksum = "813a67f87e56b38554d18b182616ee5006e8e2bf9df96a0df8bf29dff1d52e3f" dependencies = [ "alloy-eip2124", "alloy-eip2930", "alloy-eip7702", + "alloy-eip7928", "alloy-primitives", "alloy-rlp", "alloy-serde", "auto_impl", "borsh", "c-kzg", - "derive_more 2.0.1", + "derive_more 2.1.1", "either", "serde", "serde_with", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] name = "alloy-json-abi" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5513d5e6bd1cba6bdcf5373470f559f320c05c8c59493b6e98912fbe6733943f" +checksum = "84e3cf01219c966f95a460c95f1d4c30e12f6c18150c21a30b768af2a2a29142" dependencies = [ "alloy-primitives", "alloy-sol-type-parser", @@ -204,24 +255,25 @@ dependencies = [ [[package]] name = "alloy-primitives" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "355bf68a433e0fd7f7d33d5a9fc2583fde70bf5c530f63b80845f8da5505cf28" +checksum = "f6a0fb18dd5fb43ec5f0f6a20be1ce0287c79825827de5744afaa6c957737c33" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", - "derive_more 2.0.1", + "derive_more 2.1.1", "foldhash 0.2.0", "hashbrown 0.16.1", - "indexmap 2.12.1", + "indexmap 2.13.0", "itoa", "k256", "keccak-asm", "paste", "proptest", "rand 0.9.2", + "rapidhash", "ruint", "rustc-hash 2.1.1", "serde", @@ -248,14 +300,14 @@ checksum = "64b728d511962dda67c1bc7ea7c03736ec275ed2cf4c35d9585298ac9ccf3b73" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "alloy-serde" -version = "1.1.2" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6f180c399ca7c1e2fe17ea58343910cad0090878a696ff5a50241aee12fc529" +checksum = "946a0d413dbb5cd9adba0de5f8a1a34d5b77deda9b69c1d7feed8fc875a1aa26" dependencies = [ "alloy-primitives", "serde", @@ -264,41 +316,41 @@ dependencies = [ [[package]] name = "alloy-sol-macro" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3ce480400051b5217f19d6e9a82d9010cdde20f1ae9c00d53591e4a1afbb312" +checksum = "09eb18ce0df92b4277291bbaa0ed70545d78b02948df756bbd3d6214bf39a218" dependencies = [ "alloy-sol-macro-expander", "alloy-sol-macro-input", "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "alloy-sol-macro-expander" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d792e205ed3b72f795a8044c52877d2e6b6e9b1d13f431478121d8d4eaa9028" +checksum = "95d9fa2daf21f59aa546d549943f10b5cce1ae59986774019fbedae834ffe01b" dependencies = [ "alloy-sol-macro-input", "const-hex", "heck 0.5.0", - "indexmap 2.12.1", + "indexmap 2.13.0", "proc-macro-error2", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "syn-solidity", "tiny-keccak", ] [[package]] name = "alloy-sol-macro-input" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bd1247a8f90b465ef3f1207627547ec16940c35597875cdc09c49d58b19693c" +checksum = "9396007fe69c26ee118a19f4dee1f5d1d6be186ea75b3881adf16d87f8444686" dependencies = [ "const-hex", "dunce", @@ -306,15 +358,15 @@ dependencies = [ "macro-string", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "syn-solidity", ] [[package]] name = "alloy-sol-type-parser" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "954d1b2533b9b2c7959652df3076954ecb1122a28cc740aa84e7b0a49f6ac0a9" +checksum = "af67a0b0dcebe14244fc92002cd8d96ecbf65db4639d479f5fcd5805755a4c27" dependencies = [ "serde", "winnow", @@ -322,9 +374,9 @@ dependencies = [ [[package]] name = "alloy-sol-types" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70319350969a3af119da6fb3e9bddb1bce66c9ea933600cb297c8b1850ad2a3c" +checksum = "09aeea64f09a7483bdcd4193634c7e5cf9fd7775ee767585270cd8ce2d69dc95" dependencies = [ "alloy-json-abi", "alloy-primitives", @@ -332,6 +384,34 @@ dependencies = [ "serde", ] +[[package]] +name = "alloy-trie" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "428aa0f0e0658ff091f8f667c406e034b431cb10abd39de4f507520968acc499" +dependencies = [ + "alloy-primitives", + "alloy-rlp", + "arrayvec 0.7.6", + "derive_more 2.1.1", + "nybbles", + "serde", + "smallvec", + "tracing", +] + +[[package]] +name = "alloy-tx-macros" +version = "1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45ceac797eb8a56bdf5ab1fab353072c17d472eab87645ca847afe720db3246d" +dependencies = [ + "darling 0.21.3", + "proc-macro2", + "quote", + "syn 2.0.114", +] + [[package]] name = "always-assert" version = "0.1.3" @@ -423,7 +503,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -443,16 +523,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.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20c7021f180a0cbea0380eba97c2af3c57074cdaffe0eef7e840e1c9f2841e55" +checksum = "e47f3bb6e4ef3c0edb795769fc11469767ce807ed1ccdc979ab101aea2dbf4b5" 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]] @@ -481,16 +573,16 @@ dependencies = [ [[package]] name = "ark-bls12-381-ext" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1dc4b3d08f19e8ec06e949712f95b8361e43f1391d94f65e4234df03480631c" +checksum = "0f1dbb23366825700828d373d5fc9c07b7f92253ffed47ab455003b7590d786d" 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]] @@ -507,27 +599,27 @@ dependencies = [ [[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.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccee5fba47266f460067588ee1bf070a9c760bf2050c1c509982c5719aadb4f2" +checksum = "c6e1216f968e21c72fdaba53dbc9e547a8a60cc87b1dc74ac589727e906f9297" 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]] @@ -544,7 +636,6 @@ dependencies = [ "hashbrown 0.13.2", "itertools 0.10.5", "num-traits", - "rayon", "zeroize", ] @@ -554,7 +645,7 @@ 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", @@ -572,39 +663,27 @@ dependencies = [ [[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.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "524a4fb7540df2e1a8c2e67a83ba1d1e6c3947f4f9342cc2359fc2e789ad731d" +checksum = "05093aa26f017411708e1271047852cc5f58686336f1f1a56fb2df747c3e173a" 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 +700,15 @@ dependencies = [ [[package]] name = "ark-ed-on-bls12-381-bandersnatch-ext" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d15185f1acb49a07ff8cbe5f11a1adc5a93b19e211e325d826ae98e98e124346" +checksum = "5e6dce0c47def6f25cf01022acded4f32732f577187dfcd1268510093ef16ea6" 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]] @@ -718,7 +797,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62945a2f7e6de02a31fe400aa489f0e0f5b2502e69f95f853adb82a96c7a6b60" dependencies = [ "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -756,19 +835,19 @@ dependencies = [ "num-traits", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "ark-models-ext" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e9eab5d4b5ff2f228b763d38442adc9b084b0a465409b059fac5c2308835ec2" +checksum = "ff772c552d00e9c092eab0608632342c553abbf6bca984008b55100a9a78a3a6" 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", ] @@ -791,7 +870,7 @@ 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", @@ -830,26 +909,14 @@ dependencies = [ "tracing-subscriber 0.2.25", ] -[[package]] -name = "ark-scale" -version = "0.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f69c00b3b529be29528a6f2fd5fa7b1790f8bed81b9cdca17e326538545a179" -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", -] - [[package]] name = "ark-scale" 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", @@ -911,7 +978,7 @@ checksum = "213888f660fddcca0d257e88e54ac05bca01885f258ccdf695bafd77031bb69d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -932,7 +999,6 @@ checksum = "94893f1e0c6eeab764ade8dc4c0db24caf4fe7cbbaafc0eba0a9030f447b5185" dependencies = [ "num-traits", "rand 0.8.5", - "rayon", ] [[package]] @@ -962,13 +1028,13 @@ dependencies = [ [[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", @@ -1006,6 +1072,9 @@ name = "arrayvec" version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +dependencies = [ + "serde", +] [[package]] name = "asn1-rs" @@ -1016,7 +1085,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", @@ -1032,10 +1101,10 @@ 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", ] @@ -1047,7 +1116,7 @@ checksum = "965c2d33e53cb6b267e148a4cb0760bc01f4904c1cd4bb4002a085bb016d1490" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "synstructure 0.13.2", ] @@ -1059,7 +1128,7 @@ checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "synstructure 0.13.2", ] @@ -1071,7 +1140,7 @@ checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -1082,9 +1151,10 @@ checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "asset-test-utils" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ + "assets-common", "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", "cumulus-primitives-core", @@ -1112,8 +1182,8 @@ dependencies = [ [[package]] name = "assets-common" -version = "0.25.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.27.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "ethereum-standards", @@ -1128,6 +1198,7 @@ dependencies = [ "parachains-common", "parity-scale-codec", "scale-info", + "serde", "sp-api", "sp-core", "sp-runtime", @@ -1198,16 +1269,16 @@ dependencies = [ "futures-lite", "parking", "polling", - "rustix 1.1.2", + "rustix 1.1.3", "slab", "windows-sys 0.61.2", ] [[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", @@ -1240,7 +1311,7 @@ dependencies = [ "cfg-if", "event-listener 5.4.1", "futures-lite", - "rustix 1.1.2", + "rustix 1.1.3", ] [[package]] @@ -1255,7 +1326,7 @@ dependencies = [ "cfg-if", "futures-core", "futures-io", - "rustix 1.1.2", + "rustix 1.1.3", "signal-hook-registry", "slab", "windows-sys 0.61.2", @@ -1275,7 +1346,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -1345,7 +1416,7 @@ checksum = "ffdcb70bdbc4d478427380519163274ac86e52916e10f0a8889adf0f96d3fee7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -1356,9 +1427,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" [[package]] name = "az" -version = "1.2.1" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b7e4c2464d97fe331d41de9d5db0def0a96f4d823b8b32a2efd503578988973" +checksum = "be5eb007b7cacc6c660343e96f650fedf4b5a77512399eb952ca6642cf8d13f7" [[package]] name = "backtrace" @@ -1411,14 +1482,14 @@ 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 = "binary-merkle-tree" version = "16.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "hash-db", "log", @@ -1427,23 +1498,20 @@ dependencies = [ [[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.10.0", "cexpr", "clang-sys", - "lazy_static", - "lazycell", - "peeking_take_while", - "prettyplease", + "itertools 0.13.0", "proc-macro2", "quote", "regex", - "rustc-hash 1.1.0", + "rustc-hash 2.1.1", "shlex", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -1465,11 +1533,13 @@ 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.5", + "rand_core 0.6.4", "serde", "unicode-normalization", ] @@ -1489,12 +1559,6 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7" -[[package]] -name = "bitcoin-internals" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9425c3bf7089c983facbae04de54513cce73b41c7f9ff8c845b54e7bc64ebbfb" - [[package]] name = "bitcoin-io" version = "0.1.4" @@ -1503,22 +1567,12 @@ checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953" [[package]] name = "bitcoin_hashes" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1930a4dabfebb8d7d9992db18ebe3ae2876f0a305fab206fd168df931ede293b" -dependencies = [ - "bitcoin-internals", - "hex-conservative 0.1.2", -] - -[[package]] -name = "bitcoin_hashes" -version = "0.14.0" +version = "0.14.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb18c03d0db0247e147a21a6faafd5a7eb851c743db062de72018b6b7e8e4d16" +checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b" dependencies = [ "bitcoin-io", - "hex-conservative 0.2.2", + "hex-conservative", ] [[package]] @@ -1579,37 +1633,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", + "constant_time_eq 0.4.2", ] [[package]] name = "blake3" -version = "1.8.2" +version = "1.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0" +checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d" dependencies = [ "arrayref", "arrayvec 0.7.6", "cc", "cfg-if", - "constant_time_eq 0.3.1", + "constant_time_eq 0.4.2", + "cpufeatures", ] [[package]] @@ -1675,7 +1719,7 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -1714,8 +1758,8 @@ dependencies = [ [[package]] name = "bp-header-chain" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-runtime", "finality-grandpa", @@ -1731,8 +1775,8 @@ dependencies = [ [[package]] name = "bp-messages" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-runtime", @@ -1747,8 +1791,8 @@ dependencies = [ [[package]] name = "bp-parachains" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-polkadot-core", @@ -1764,8 +1808,8 @@ dependencies = [ [[package]] name = "bp-polkadot-core" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-messages", "bp-runtime", @@ -1781,8 +1825,8 @@ dependencies = [ [[package]] name = "bp-relayers" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-messages", @@ -1799,8 +1843,8 @@ dependencies = [ [[package]] name = "bp-runtime" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -1822,8 +1866,8 @@ dependencies = [ [[package]] name = "bp-test-utils" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-parachains", @@ -1842,8 +1886,8 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub" -version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-messages", "bp-runtime", @@ -1859,8 +1903,8 @@ dependencies = [ [[package]] name = "bp-xcm-bridge-hub-router" -version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -1871,8 +1915,8 @@ dependencies = [ [[package]] name = "bridge-hub-common" -version = "0.16.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1890,8 +1934,8 @@ dependencies = [ [[package]] name = "bridge-hub-test-utils" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "asset-test-utils", "bp-header-chain", @@ -1932,8 +1976,8 @@ dependencies = [ [[package]] name = "bridge-runtime-common" -version = "0.24.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.26.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-messages", @@ -1982,9 +2026,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.19.0" +version = "3.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" +checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510" dependencies = [ "allocator-api2", ] @@ -2059,9 +2103,9 @@ dependencies = [ [[package]] name = "camino" -version = "1.2.1" +version = "1.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" dependencies = [ "serde_core", ] @@ -2091,9 +2135,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.48" +version = "1.2.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a" +checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583" dependencies = [ "find-msvc-tools", "jobserver", @@ -2113,7 +2157,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -2179,9 +2223,9 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.42" +version = "0.4.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2" +checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118" dependencies = [ "iana-time-zone", "js-sys", @@ -2193,22 +2237,9 @@ dependencies = [ [[package]] name = "cid" -version = "0.9.0" +version = "0.11.1" 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" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" +checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a" dependencies = [ "core2", "multibase", @@ -2244,14 +2275,13 @@ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4" dependencies = [ "glob", "libc", - "libloading", ] [[package]] name = "clap" -version = "4.5.53" +version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8" +checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394" dependencies = [ "clap_builder", "clap_derive", @@ -2259,9 +2289,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.53" +version = "4.5.54" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00" +checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00" dependencies = [ "anstream", "anstyle", @@ -2279,20 +2309,20 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "clap_lex" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d" +checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32" [[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", @@ -2305,7 +2335,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" dependencies = [ - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -2334,10 +2364,10 @@ 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.111", + "syn 2.0.114", ] [[package]] @@ -2358,9 +2388,9 @@ 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", @@ -2394,6 +2424,16 @@ dependencies = [ "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.17.0" @@ -2427,7 +2467,7 @@ 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", ] @@ -2466,9 +2506,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" @@ -2476,6 +2516,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" @@ -2824,8 +2882,8 @@ dependencies = [ [[package]] name = "cumulus-client-bootnodes" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -2836,10 +2894,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", @@ -2849,8 +2906,8 @@ dependencies = [ [[package]] name = "cumulus-client-cli" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "clap", "parity-scale-codec", @@ -2866,8 +2923,8 @@ dependencies = [ [[package]] name = "cumulus-client-collator" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2889,8 +2946,8 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" -version = "0.26.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2913,6 +2970,7 @@ dependencies = [ "sc-consensus-aura", "sc-consensus-babe", "sc-consensus-slots", + "sc-network-types", "sc-telemetry", "sc-utils", "schnellru", @@ -2936,8 +2994,8 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2968,8 +3026,8 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" -version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "anyhow", "async-trait", @@ -2988,8 +3046,8 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -3011,8 +3069,8 @@ dependencies = [ [[package]] name = "cumulus-client-network" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -3024,6 +3082,7 @@ dependencies = [ "polkadot-node-subsystem", "polkadot-parachain-primitives", "polkadot-primitives", + "polkadot-primitives-test-helpers", "sc-client-api", "sc-network", "sp-api", @@ -3038,8 +3097,8 @@ dependencies = [ [[package]] name = "cumulus-client-parachain-inherent" -version = "0.20.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.22.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3049,7 +3108,8 @@ dependencies = [ "parity-scale-codec", "sc-client-api", "sc-consensus-babe", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sc-network-types", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-inherents", "sp-runtime", "sp-state-machine", @@ -3059,8 +3119,8 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3087,8 +3147,8 @@ dependencies = [ [[package]] name = "cumulus-client-service" -version = "0.28.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.31.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-channel 1.9.0", "cumulus-client-cli", @@ -3103,6 +3163,7 @@ dependencies = [ "cumulus-relay-chain-minimal-node", "cumulus-relay-chain-streams", "futures", + "polkadot-overseer", "polkadot-primitives", "prometheus", "sc-client-api", @@ -3114,6 +3175,7 @@ dependencies = [ "sc-service", "sc-sysinfo", "sc-telemetry", + "sc-tracing", "sc-transaction-pool", "sc-utils", "sp-api", @@ -3123,12 +3185,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-transaction-pool", + "sp-trie", ] [[package]] name = "cumulus-pallet-aura-ext" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -3144,8 +3207,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -3161,8 +3224,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" -version = "0.23.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "bytes", @@ -3199,19 +3262,19 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "cumulus-pallet-session-benchmarking" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -3223,8 +3286,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-solo-to-para" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -3238,8 +3301,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-weight-reclaim" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-storage-weight-reclaim", "derive-where", @@ -3257,8 +3320,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" -version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -3272,8 +3335,8 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "approx", "bounded-collections 0.3.2", @@ -3298,8 +3361,8 @@ dependencies = [ [[package]] name = "cumulus-ping" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-pallet-xcm", "cumulus-primitives-core", @@ -3313,8 +3376,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" -version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-api", "sp-consensus-aura", @@ -3322,8 +3385,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" -version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -3339,8 +3402,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" -version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3353,8 +3416,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-proof-size-hostfunction" -version = "0.15.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-externalities", "sp-runtime-interface", @@ -3363,8 +3426,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-storage-weight-reclaim" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-proof-size-hostfunction", @@ -3380,8 +3443,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" -version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "sp-inherents", @@ -3390,8 +3453,8 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -3407,8 +3470,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" -version = "0.28.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.31.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -3435,8 +3498,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3455,8 +3518,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" -version = "0.28.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.31.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -3491,8 +3554,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" -version = "0.26.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.28.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -3524,8 +3587,8 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-streams" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-relay-chain-interface", "futures", @@ -3538,8 +3601,8 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" -version = "0.22.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3575,7 +3638,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3593,9 +3656,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.190" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7620f6cfc4dcca21f2b085b7a890e16c60fd66f560cd69ee60594908dc72ab1" +checksum = "747d8437319e3a2f43d93b341c137927ca70c0f5dabeea7a005a73665e247c7e" dependencies = [ "cc", "cxx-build", @@ -3608,49 +3671,49 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.190" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9bc1a22964ff6a355fbec24cf68266a0ed28f8b84c0864c386474ea3d0e479" +checksum = "b0f4697d190a142477b16aef7da8a99bfdc41e7e8b1687583c0d23a79c7afc1e" dependencies = [ "cc", "codespan-reporting", - "indexmap 2.12.1", + "indexmap 2.13.0", "proc-macro2", "quote", "scratch", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "cxxbridge-cmd" -version = "1.0.190" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f29a879d35f7906e3c9b77d7a1005a6a0787d330c09dfe4ffb5f617728cb44" +checksum = "d0956799fa8678d4c50eed028f2de1c0552ae183c76e976cf7ca8c4e36a7c328" dependencies = [ "clap", "codespan-reporting", - "indexmap 2.12.1", + "indexmap 2.13.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "cxxbridge-flags" -version = "1.0.190" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d67109015f93f683e364085aa6489a5b2118b4a40058482101d699936a7836d6" +checksum = "23384a836ab4f0ad98ace7e3955ad2de39de42378ab487dc28d3990392cb283a" [[package]] name = "cxxbridge-macro" -version = "1.0.190" +version = "1.0.194" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d187e019e7b05a1f3e69a8396b70800ee867aa9fc2ab972761173ccee03742df" +checksum = "e6acc6b5822b9526adfb4fc377b67128fdd60aac757cc4a741a6278603f763cf" dependencies = [ - "indexmap 2.12.1", + "indexmap 2.13.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3684,7 +3747,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3697,8 +3760,9 @@ dependencies = [ "ident_case", "proc-macro2", "quote", + "serde", "strsim", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3709,7 +3773,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ "darling_core 0.20.11", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3720,7 +3784,7 @@ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" dependencies = [ "darling_core 0.21.3", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3738,15 +3802,15 @@ dependencies = [ [[package]] name = "data-encoding" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" +checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" [[package]] name = "data-encoding-macro" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d" +checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb" dependencies = [ "data-encoding", "data-encoding-macro-internal", @@ -3754,12 +3818,21 @@ dependencies = [ [[package]] name = "data-encoding-macro-internal" -version = "0.1.16" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976" +checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de" dependencies = [ "data-encoding", - "syn 2.0.111", + "syn 2.0.114", +] + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", ] [[package]] @@ -3781,7 +3854,7 @@ checksum = "5cd0a5c643689626bec213c4d8bd4d96acc8ffdb4ad4bb6bc16abf27d5f4b553" dependencies = [ "asn1-rs 0.6.2", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -3795,7 +3868,7 @@ checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6" dependencies = [ "asn1-rs 0.7.1", "displaydoc", - "nom", + "nom 7.1.3", "num-bigint", "num-traits", "rusticata-macros", @@ -3830,7 +3903,7 @@ checksum = "d65d7ce8132b7c0e54497a4d9a55a1c2a0912a0d786cf894472ba818fba45762" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3841,7 +3914,7 @@ checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -3850,11 +3923,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.111", + "syn 2.0.114", ] [[package]] @@ -3868,11 +3941,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]] @@ -3883,18 +3956,20 @@ checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[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.111", + "rustc_version 0.4.1", + "syn 2.0.114", "unicode-xid", ] @@ -3987,7 +4062,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4011,7 +4086,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "syn 2.0.111", + "syn 2.0.114", "termcolor", "toml 0.8.23", "walkdir", @@ -4031,9 +4106,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" @@ -4059,7 +4134,7 @@ checksum = "7e8671d54058979a37a26f3511fbf8d198ba1aa35ffb202c42587d918d77213a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4133,7 +4208,7 @@ dependencies = [ "enum-ordinalize", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4141,6 +4216,9 @@ name = "either" version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +dependencies = [ + "serde", +] [[package]] name = "elliptic-curve" @@ -4189,7 +4267,27 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", +] + +[[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]] @@ -4209,7 +4307,7 @@ checksum = "8ca9601fb2d62598ee17836250842873a413586e5d7ed88b356e38ddbb0ec631" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4229,7 +4327,7 @@ checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4240,7 +4338,7 @@ checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4293,7 +4391,7 @@ dependencies = [ [[package]] name = "ethereum-standards" version = "0.1.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "alloy-core", ] @@ -4362,7 +4460,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4416,11 +4514,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb42427514b063d97ce21d5199f36c0c307d981434a6be32582bc79fe5bd2303" dependencies = [ "expander", - "indexmap 2.12.1", + "indexmap 2.13.0", "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -4461,14 +4559,13 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.26" +version = "0.2.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed" +checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db" dependencies = [ "cfg-if", "libc", "libredox", - "windows-sys 0.60.2", ] [[package]] @@ -4489,9 +4586,9 @@ dependencies = [ [[package]] name = "find-msvc-tools" -version = "0.1.5" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844" +checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db" [[package]] name = "fixed-hash" @@ -4538,7 +4635,7 @@ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" [[package]] name = "fork-tree" version = "13.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", ] @@ -4570,8 +4667,8 @@ checksum = "28dd6caf6059519a65843af8fe2a3ae298b14b80179855aeb4adc2c1934ee619" [[package]] name = "frame-benchmarking" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-support-procedural", @@ -4594,8 +4691,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" -version = "51.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "53.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "Inflector", "array-bytes", @@ -4659,8 +4756,8 @@ dependencies = [ [[package]] name = "frame-benchmarking-pallet-pov" -version = "33.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -4673,11 +4770,11 @@ dependencies = [ [[package]] name = "frame-decode" -version = "0.7.1" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7cb8796f93fa038f979a014234d632e9688a120e745f936e2635123c77537f7" +checksum = "6e56c0e51972d7b26ff76966c4d0f2307030df9daa5ce0885149ece1ab7ca5ad" dependencies = [ - "frame-metadata 21.0.0", + "frame-metadata", "parity-scale-codec", "scale-decode", "scale-info", @@ -4688,18 +4785,18 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "16.1.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "frame-election-provider-support" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -4715,8 +4812,8 @@ dependencies = [ [[package]] name = "frame-executive" -version = "43.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "aquamarine", "frame-support", @@ -4733,32 +4830,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", @@ -4768,8 +4842,8 @@ dependencies = [ [[package]] name = "frame-metadata-hash-extension" -version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.13.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "const-hex", @@ -4784,8 +4858,8 @@ dependencies = [ [[package]] name = "frame-storage-access-test-runtime" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-pallet-parachain-system", "parity-scale-codec", @@ -4798,8 +4872,8 @@ dependencies = [ [[package]] name = "frame-support" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "aquamarine", "array-bytes", @@ -4807,7 +4881,7 @@ dependencies = [ "bitflags 1.3.2", "docify", "environmental", - "frame-metadata 23.0.0", + "frame-metadata", "frame-support-procedural", "impl-trait-for-tuples", "k256", @@ -4839,8 +4913,8 @@ dependencies = [ [[package]] name = "frame-support-procedural" -version = "35.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "36.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "Inflector", "cfg-expr", @@ -4853,36 +4927,36 @@ dependencies = [ "proc-macro-warning", "proc-macro2", "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", - "syn 2.0.111", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", + "syn 2.0.114", ] [[package]] name = "frame-support-procedural-tools" version = "13.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "frame-support-procedural-tools-derive" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "frame-system" -version = "43.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cfg-if", "docify", @@ -4900,8 +4974,8 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -4914,8 +4988,8 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "parity-scale-codec", @@ -4924,8 +4998,8 @@ dependencies = [ [[package]] name = "frame-try-runtime" -version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.51.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "parity-scale-codec", @@ -5048,7 +5122,7 @@ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -5098,6 +5172,28 @@ dependencies = [ "slab", ] +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +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.10.0", + "debugid", + "fxhash", + "serde", + "serde_json", +] + [[package]] name = "generic-array" version = "0.12.4" @@ -5130,9 +5226,9 @@ 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", @@ -5182,7 +5278,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" dependencies = [ "fallible-iterator", - "indexmap 2.12.1", + "indexmap 2.13.0", "stable_deref_trait", ] @@ -5251,7 +5347,7 @@ dependencies = [ "futures-sink", "futures-util", "http 0.2.12", - "indexmap 2.12.1", + "indexmap 2.13.0", "slab", "tokio", "tokio-util", @@ -5260,9 +5356,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.4.12" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386" +checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54" dependencies = [ "atomic-waker", "bytes", @@ -5270,7 +5366,7 @@ dependencies = [ "futures-core", "futures-sink", "http 1.4.0", - "indexmap 2.12.1", + "indexmap 2.13.0", "slab", "tokio", "tokio-util", @@ -5311,6 +5407,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" @@ -5318,7 +5417,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash", + "ahash 0.8.12", ] [[package]] @@ -5327,9 +5426,8 @@ version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" dependencies = [ - "ahash", + "ahash 0.8.12", "allocator-api2", - "serde", ] [[package]] @@ -5388,12 +5486,6 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -[[package]] -name = "hex-conservative" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212ab92002354b4819390025006c897e8140934349e8635c9b077f47b4dcbd20" - [[package]] name = "hex-conservative" version = "0.2.2" @@ -5452,7 +5544,7 @@ dependencies = [ "once_cell", "rand 0.9.2", "ring 0.17.14", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tokio", "tracing", @@ -5496,7 +5588,7 @@ dependencies = [ "rand 0.9.2", "resolv-conf", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tracing", ] @@ -5657,7 +5749,7 @@ dependencies = [ "bytes", "futures-channel", "futures-core", - "h2 0.4.12", + "h2 0.4.13", "http 1.4.0", "http-body 1.0.1", "httparse", @@ -5690,9 +5782,9 @@ dependencies = [ [[package]] name = "hyper-util" -version = "0.1.18" +version = "0.1.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52e9a2a24dc5c6821e71a7030e1e14b7b632acac55c40e9d2e082c621261bb56" +checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f" dependencies = [ "bytes", "futures-channel", @@ -5703,7 +5795,7 @@ dependencies = [ "hyper 1.8.1", "libc", "pin-project-lite", - "socket2 0.6.1", + "socket2 0.6.2", "tokio", "tower-service", "tracing", @@ -5781,9 +5873,9 @@ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" [[package]] name = "icu_properties" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" dependencies = [ "icu_collections", "icu_locale_core", @@ -5795,9 +5887,9 @@ dependencies = [ [[package]] name = "icu_properties_data" -version = "2.1.1" +version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" [[package]] name = "icu_provider" @@ -5948,7 +6040,7 @@ checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -5983,9 +6075,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.12.1" +version = "2.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" dependencies = [ "equivalent", "hashbrown 0.16.1", @@ -6123,9 +6215,29 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.15" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[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 = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" +checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc" +dependencies = [ + "cc", +] [[package]] name = "jam-codec" @@ -6152,7 +6264,7 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -6189,9 +6301,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.83" +version = "0.3.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8" +checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3" dependencies = [ "once_cell", "wasm-bindgen", @@ -6272,7 +6384,7 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -6360,6 +6472,12 @@ dependencies = [ "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" @@ -6380,11 +6498,13 @@ checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" name = "kitchensink-fuzzer" version = "0.1.0" dependencies = [ + "frame-metadata", "frame-support", "frame-system", "kitchensink-runtime", "node-primitives", "pallet-asset-rewards", + "pallet-assets", "pallet-bags-list", "pallet-balances", "pallet-broker", @@ -6409,6 +6529,7 @@ dependencies = [ "pallet-utility", "pallet-whitelist", "parity-scale-codec", + "scale-info", "sp-authority-discovery", "sp-consensus-babe", "sp-consensus-beefy", @@ -6421,7 +6542,7 @@ dependencies = [ [[package]] name = "kitchensink-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "log", @@ -6431,6 +6552,7 @@ dependencies = [ "parity-scale-codec", "polkadot-sdk", "primitive-types 0.13.1", + "rand 0.8.5", "scale-info", "serde_json", "sp-debug-derive", @@ -6459,16 +6581,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]] @@ -6491,12 +6612,6 @@ dependencies = [ "spin 0.9.8", ] -[[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" @@ -6505,25 +6620,15 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" [[package]] name = "libc" -version = "0.2.177" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" - -[[package]] -name = "libloading" -version = "0.8.9" +version = "0.2.180" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55" -dependencies = [ - "cfg-if", - "windows-link", -] +checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc" [[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" @@ -6535,7 +6640,7 @@ dependencies = [ "either", "futures", "futures-timer", - "getrandom 0.2.16", + "getrandom 0.2.17", "libp2p-allow-block-list", "libp2p-connection-limits", "libp2p-core", @@ -6642,7 +6747,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "lru", + "lru 0.12.5", "quick-protobuf", "quick-protobuf-codec", "smallvec", @@ -6653,9 +6758,9 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.2.12" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3104e13b51e4711ff5738caa1fb54467c8604c2e94d607e27745bcf709068774" +checksum = "f0c7892c221730ba55f7196e98b0b8ba5e04b4155651736036628e9f73ed6fc3" dependencies = [ "bs58", "ed25519-dalek", @@ -6664,7 +6769,7 @@ dependencies = [ "quick-protobuf", "rand 0.8.5", "sha2 0.10.9", - "thiserror 2.0.17", + "thiserror 2.0.18", "tracing", "zeroize", ] @@ -6838,7 +6943,7 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm-derive", - "lru", + "lru 0.12.5", "multistream-select", "once_cell", "rand 0.8.5", @@ -6858,7 +6963,7 @@ dependencies = [ "heck 0.5.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -6951,28 +7056,26 @@ dependencies = [ [[package]] name = "libredox" -version = "0.1.10" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb" +checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616" dependencies = [ "bitflags 2.10.0", "libc", - "redox_syscall 0.5.18", + "redox_syscall 0.7.0", ] [[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]] @@ -7099,19 +7202,20 @@ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" [[package]] name = "litep2p" -version = "0.10.0" +version = "0.12.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c666ef772d123a7643323ad4979c30dd825e9c68ec1aa5b387a6c9a9871c11ea" +checksum = "d903b21d57fae0e8d184c6ea0107fb5303fcab7cd2acaf5d2d9beb2807194b4a" dependencies = [ "async-trait", "bs58", "bytes", - "cid 0.11.1", + "cid", "ed25519-dalek", + "enum-display", "futures", "futures-timer", "hickory-resolver 0.25.2", - "indexmap 2.12.1", + "indexmap 2.13.0", "libc", "mockall", "multiaddr 0.17.1", @@ -7120,15 +7224,16 @@ dependencies = [ "parking_lot 0.12.5", "pin-project", "prost 0.13.5", - "prost-build", + "prost-build 0.14.3", "rand 0.8.5", + "ring 0.17.14", "serde", "sha2 0.10.9", "simple-dns", "smallvec", "snow", "socket2 0.5.10", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-stream", "tokio-tungstenite", @@ -7155,9 +7260,18 @@ dependencies = [ [[package]] name = "log" -version = "0.4.28" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "lru" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" +dependencies = [ + "hashbrown 0.12.3", +] [[package]] name = "lru" @@ -7219,7 +7333,7 @@ checksum = "1b27834086c65ec3f9387b096d66e99f221cf081c2b738042aa252bcd41204e3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -7231,7 +7345,7 @@ dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -7245,7 +7359,7 @@ dependencies = [ "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -7256,7 +7370,7 @@ checksum = "b02abfe41815b5bd98dbd4260173db2c116dda171dc0fe7838cb206333b83308" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -7267,18 +7381,18 @@ checksum = "73ea28ee64b88876bf45277ed9a5817c1817df061a74f2b988971a12570e5869" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[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.114", ] [[package]] @@ -7312,7 +7426,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.3", ] [[package]] @@ -7373,9 +7487,9 @@ dependencies = [ [[package]] name = "mio" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" dependencies = [ "libc", "wasi", @@ -7409,8 +7523,8 @@ dependencies = [ [[package]] name = "mmr-gadget" -version = "48.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "50.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "log", @@ -7428,8 +7542,8 @@ dependencies = [ [[package]] name = "mmr-rpc" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -7464,14 +7578,14 @@ dependencies = [ "cfg-if", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "moka" -version = "0.12.11" +version = "0.12.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077" +checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e" dependencies = [ "crossbeam-channel", "crossbeam-epoch", @@ -7479,7 +7593,6 @@ dependencies = [ "equivalent", "parking_lot 0.12.5", "portable-atomic", - "rustc_version 0.4.1", "smallvec", "tagptr", "uuid", @@ -7548,13 +7661,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" dependencies = [ "blake2b_simd", - "blake2s_simd", - "blake3", "core2", "digest 0.10.7", "multihash-derive", "sha2 0.10.9", - "sha3", "unsigned-varint 0.7.2", ] @@ -7680,17 +7790,17 @@ dependencies = [ "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", @@ -7698,13 +7808,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", ] @@ -7740,7 +7850,7 @@ checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c" [[package]] name = "node-primitives" version = "2.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-core", "sp-runtime", @@ -7768,6 +7878,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" @@ -7782,9 +7901,9 @@ checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21" [[package]] name = "ntapi" -version = "0.4.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4" +checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081" dependencies = [ "winapi", ] @@ -7833,9 +7952,9 @@ dependencies = [ [[package]] name = "num-conv" -version = "0.1.0" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" [[package]] name = "num-derive" @@ -7845,7 +7964,7 @@ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -7928,7 +8047,21 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", +] + +[[package]] +name = "nybbles" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5676b5c379cf5b03da1df2b3061c4a4e2aa691086a56ac923e08c143f53f59" +dependencies = [ + "alloy-rlp", + "cfg-if", + "proptest", + "ruint", + "serde", + "smallvec", ] [[package]] @@ -7939,7 +8072,7 @@ checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" dependencies = [ "crc32fast", "hashbrown 0.15.5", - "indexmap 2.12.1", + "indexmap 2.13.0", "memchr", ] @@ -8000,9 +8133,9 @@ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" [[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 = "option-ext" @@ -8034,7 +8167,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43dfaf083aef571385fccfdc3a2f8ede8d0a1863160455d4f2b014d8f7d04a3f" dependencies = [ "expander", - "indexmap 2.12.1", + "indexmap 2.13.0", "itertools 0.11.0", "petgraph 0.6.5", "proc-macro-crate 3.4.0", @@ -8057,8 +8190,8 @@ dependencies = [ [[package]] name = "pallet-alliance" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8069,15 +8202,15 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-io", "sp-runtime", ] [[package]] name = "pallet-asset-conversion" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8094,8 +8227,8 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-ops" -version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.13.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8112,8 +8245,8 @@ dependencies = [ [[package]] name = "pallet-asset-conversion-tx-payment" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8127,8 +8260,8 @@ dependencies = [ [[package]] name = "pallet-asset-rate" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8141,8 +8274,8 @@ dependencies = [ [[package]] name = "pallet-asset-rewards" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8159,8 +8292,8 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8175,8 +8308,8 @@ dependencies = [ [[package]] name = "pallet-assets" -version = "46.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8191,8 +8324,8 @@ dependencies = [ [[package]] name = "pallet-assets-freezer" -version = "0.11.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.13.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "pallet-assets", @@ -8203,8 +8336,8 @@ dependencies = [ [[package]] name = "pallet-assets-holder" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8218,8 +8351,8 @@ dependencies = [ [[package]] name = "pallet-assets-precompiles" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.4.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "ethereum-standards", "frame-support", @@ -8229,8 +8362,8 @@ dependencies = [ [[package]] name = "pallet-atomic-swap" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -8239,8 +8372,8 @@ dependencies = [ [[package]] name = "pallet-aura" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8255,8 +8388,8 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8270,8 +8403,8 @@ dependencies = [ [[package]] name = "pallet-authorship" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8283,8 +8416,8 @@ dependencies = [ [[package]] name = "pallet-babe" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8306,8 +8439,8 @@ dependencies = [ [[package]] name = "pallet-bags-list" -version = "42.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "aquamarine", "docify", @@ -8327,8 +8460,8 @@ dependencies = [ [[package]] name = "pallet-balances" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -8343,8 +8476,8 @@ dependencies = [ [[package]] name = "pallet-beefy" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8362,8 +8495,8 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -8387,8 +8520,8 @@ dependencies = [ [[package]] name = "pallet-bounties" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8404,8 +8537,8 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-runtime", @@ -8423,8 +8556,8 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-messages", @@ -8442,8 +8575,8 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-parachains", @@ -8462,8 +8595,8 @@ dependencies = [ [[package]] name = "pallet-bridge-relayers" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-header-chain", "bp-messages", @@ -8485,8 +8618,8 @@ dependencies = [ [[package]] name = "pallet-broker" -version = "0.22.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.24.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "frame-benchmarking", @@ -8503,8 +8636,8 @@ dependencies = [ [[package]] name = "pallet-child-bounties" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8521,8 +8654,8 @@ dependencies = [ [[package]] name = "pallet-collator-selection" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8540,8 +8673,8 @@ dependencies = [ [[package]] name = "pallet-collective" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -8557,8 +8690,8 @@ dependencies = [ [[package]] name = "pallet-collective-content" -version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8571,8 +8704,8 @@ dependencies = [ [[package]] name = "pallet-contracts" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "environmental", "frame-benchmarking", @@ -8596,13 +8729,13 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "wasm-instrument", - "wasmi", + "wasmi 0.32.3", ] [[package]] name = "pallet-contracts-mock-network" -version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8633,17 +8766,17 @@ dependencies = [ [[package]] name = "pallet-contracts-proc-macro" version = "23.0.3" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "pallet-contracts-uapi" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -8653,8 +8786,8 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "assert_matches", "frame-benchmarking", @@ -8669,8 +8802,8 @@ dependencies = [ [[package]] name = "pallet-core-fellowship" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8687,8 +8820,8 @@ dependencies = [ [[package]] name = "pallet-delegated-staking" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "12.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8702,8 +8835,8 @@ dependencies = [ [[package]] name = "pallet-democracy" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8719,8 +8852,8 @@ dependencies = [ [[package]] name = "pallet-derivatives" -version = "0.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8739,8 +8872,8 @@ dependencies = [ [[package]] name = "pallet-dev-mode" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -8754,8 +8887,8 @@ dependencies = [ [[package]] name = "pallet-dummy-dim" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8772,8 +8905,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-block" -version = "0.4.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8793,8 +8926,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8814,8 +8947,8 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -8827,8 +8960,8 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8846,7 +8979,7 @@ dependencies = [ [[package]] name = "pallet-example-mbm" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8861,7 +8994,7 @@ dependencies = [ [[package]] name = "pallet-example-tasks" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8876,8 +9009,8 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -8894,8 +9027,8 @@ dependencies = [ [[package]] name = "pallet-glutton" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "blake2 0.10.6", "frame-benchmarking", @@ -8912,8 +9045,8 @@ dependencies = [ [[package]] name = "pallet-grandpa" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8934,8 +9067,8 @@ dependencies = [ [[package]] name = "pallet-identity" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "enumflags2", "frame-benchmarking", @@ -8950,8 +9083,8 @@ dependencies = [ [[package]] name = "pallet-im-online" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8969,8 +9102,8 @@ dependencies = [ [[package]] name = "pallet-indices" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -8984,8 +9117,8 @@ dependencies = [ [[package]] name = "pallet-insecure-randomness-collective-flip" -version = "31.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "33.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -8995,8 +9128,8 @@ dependencies = [ [[package]] name = "pallet-lottery" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9008,8 +9141,8 @@ dependencies = [ [[package]] name = "pallet-membership" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9024,8 +9157,8 @@ dependencies = [ [[package]] name = "pallet-message-queue" -version = "46.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "environmental", "frame-benchmarking", @@ -9043,8 +9176,8 @@ dependencies = [ [[package]] name = "pallet-meta-tx" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9061,8 +9194,8 @@ dependencies = [ [[package]] name = "pallet-migrations" -version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "15.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9080,8 +9213,8 @@ dependencies = [ [[package]] name = "pallet-mixnet" -version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -9094,8 +9227,8 @@ dependencies = [ [[package]] name = "pallet-mmr" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -9104,10 +9237,27 @@ dependencies = [ "sp-mmr-primitives", ] +[[package]] +name = "pallet-multi-asset-bounties" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" +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 = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -9117,8 +9267,8 @@ dependencies = [ [[package]] name = "pallet-nft-fractionalization" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "pallet-assets", @@ -9130,8 +9280,8 @@ dependencies = [ [[package]] name = "pallet-nfts" -version = "37.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "enumflags2", "frame-benchmarking", @@ -9147,8 +9297,8 @@ dependencies = [ [[package]] name = "pallet-nfts-runtime-api" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sp-api", @@ -9156,8 +9306,8 @@ dependencies = [ [[package]] name = "pallet-nis" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -9166,8 +9316,8 @@ dependencies = [ [[package]] name = "pallet-node-authorization" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -9177,8 +9327,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" -version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9195,8 +9345,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" -version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -9215,8 +9365,8 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "41.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -9225,8 +9375,8 @@ dependencies = [ [[package]] name = "pallet-offences" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9240,8 +9390,8 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -9261,10 +9411,39 @@ dependencies = [ "sp-staking", ] +[[package]] +name = "pallet-oracle" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" +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-oracle-runtime-api" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-std", +] + [[package]] name = "pallet-origin-restriction" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9281,8 +9460,8 @@ dependencies = [ [[package]] name = "pallet-paged-list" -version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "parity-scale-codec", @@ -9293,8 +9472,8 @@ dependencies = [ [[package]] name = "pallet-parameters" -version = "0.14.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.16.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9310,8 +9489,8 @@ dependencies = [ [[package]] name = "pallet-people" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.6.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9328,8 +9507,8 @@ dependencies = [ [[package]] name = "pallet-preimage" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9344,8 +9523,8 @@ dependencies = [ [[package]] name = "pallet-proxy" -version = "43.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -9354,8 +9533,8 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" -version = "43.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9372,8 +9551,8 @@ dependencies = [ [[package]] name = "pallet-recovery" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -9382,8 +9561,8 @@ dependencies = [ [[package]] name = "pallet-referenda" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9399,8 +9578,8 @@ dependencies = [ [[package]] name = "pallet-remark" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9415,10 +9594,12 @@ dependencies = [ [[package]] name = "pallet-revive" -version = "0.10.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ + "alloy-consensus", "alloy-core", + "alloy-trie", "derive_more 0.99.20", "environmental", "ethereum-standards", @@ -9429,6 +9610,7 @@ dependencies = [ "hex-literal", "humantime-serde", "impl-trait-for-tuples", + "k256", "log", "num-bigint", "num-integer", @@ -9439,14 +9621,15 @@ dependencies = [ "pallet-transaction-payment", "parity-scale-codec", "paste", - "polkavm 0.27.0", - "polkavm-common 0.27.0", + "polkavm 0.29.1", + "polkavm-common 0.29.0", "rand 0.8.5", "revm", "ripemd", "rlp 0.6.1", "scale-info", "serde", + "serde_json", "sp-api", "sp-arithmetic", "sp-consensus-aura", @@ -9455,21 +9638,22 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", + "sp-version", "substrate-bn", "subxt-signer", ] [[package]] name = "pallet-revive-fixtures" -version = "0.7.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.9.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "alloy-core", "anyhow", "cargo_metadata", "hex", "pallet-revive-uapi", - "polkavm-linker 0.27.0", + "polkavm-linker 0.29.0", "serde_json", "sp-core", "sp-io", @@ -9478,30 +9662,33 @@ dependencies = [ [[package]] name = "pallet-revive-proc-macro" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "pallet-revive-uapi" -version = "0.8.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.10.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ + "alloy-core", "bitflags 1.3.2", + "const-crypto", + "hex-literal", "pallet-revive-proc-macro", "parity-scale-codec", - "polkavm-derive 0.27.0", + "polkavm-derive 0.29.0", "scale-info", ] [[package]] name = "pallet-root-offences" -version = "40.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9516,8 +9703,8 @@ dependencies = [ [[package]] name = "pallet-root-testing" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9529,8 +9716,8 @@ dependencies = [ [[package]] name = "pallet-safe-mode" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "pallet-balances", @@ -9543,8 +9730,8 @@ dependencies = [ [[package]] name = "pallet-salary" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "pallet-ranked-collective", @@ -9555,8 +9742,8 @@ dependencies = [ [[package]] name = "pallet-scheduler" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9572,8 +9759,8 @@ dependencies = [ [[package]] name = "pallet-scored-pool" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9585,8 +9772,8 @@ dependencies = [ [[package]] name = "pallet-session" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9607,8 +9794,8 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9623,8 +9810,8 @@ dependencies = [ [[package]] name = "pallet-skip-feeless-payment" -version = "18.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9635,8 +9822,8 @@ dependencies = [ [[package]] name = "pallet-society" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9652,8 +9839,8 @@ dependencies = [ [[package]] name = "pallet-staking" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -9673,8 +9860,8 @@ dependencies = [ [[package]] name = "pallet-staking-async" -version = "0.5.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -9697,8 +9884,8 @@ dependencies = [ [[package]] name = "pallet-staking-async-ah-client" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9717,8 +9904,8 @@ dependencies = [ [[package]] name = "pallet-staking-async-rc-client" -version = "0.4.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9735,7 +9922,7 @@ dependencies = [ [[package]] name = "pallet-staking-async-reward-fn" version = "0.3.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "sp-arithmetic", @@ -9743,8 +9930,8 @@ dependencies = [ [[package]] name = "pallet-staking-async-runtime-api" -version = "0.4.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.5.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sp-api", @@ -9754,18 +9941,18 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "pallet-staking-reward-fn" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "sp-arithmetic", @@ -9773,8 +9960,8 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sp-api", @@ -9783,8 +9970,8 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" -version = "48.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "50.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9799,8 +9986,8 @@ dependencies = [ [[package]] name = "pallet-statement" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -9816,8 +10003,8 @@ dependencies = [ [[package]] name = "pallet-sudo" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9832,7 +10019,7 @@ dependencies = [ [[package]] name = "pallet-template" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9843,8 +10030,8 @@ dependencies = [ [[package]] name = "pallet-timestamp" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9861,8 +10048,8 @@ dependencies = [ [[package]] name = "pallet-tips" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9879,12 +10066,13 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", + "log", "parity-scale-codec", "scale-info", "serde", @@ -9894,8 +10082,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" -version = "46.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -9910,8 +10098,8 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -9922,13 +10110,12 @@ dependencies = [ [[package]] name = "pallet-transaction-storage" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log", "pallet-balances", "parity-scale-codec", "scale-info", @@ -9937,12 +10124,13 @@ dependencies = [ "sp-io", "sp-runtime", "sp-transaction-storage-proof", + "tracing", ] [[package]] name = "pallet-treasury" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -9960,8 +10148,8 @@ dependencies = [ [[package]] name = "pallet-tx-pause" -version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "parity-scale-codec", @@ -9971,8 +10159,8 @@ dependencies = [ [[package]] name = "pallet-uniques" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -9985,8 +10173,8 @@ dependencies = [ [[package]] name = "pallet-utility" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -10000,8 +10188,8 @@ dependencies = [ [[package]] name = "pallet-verify-signature" -version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.8.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -10015,8 +10203,8 @@ dependencies = [ [[package]] name = "pallet-vesting" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -10029,8 +10217,8 @@ dependencies = [ [[package]] name = "pallet-whitelist" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-sdk-frame", @@ -10039,8 +10227,8 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bounded-collections 0.3.2", "frame-benchmarking", @@ -10048,7 +10236,6 @@ dependencies = [ "frame-system", "hex-literal", "pallet-balances", - "pallet-revive", "parity-scale-codec", "scale-info", "serde", @@ -10064,8 +10251,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-support", @@ -10081,8 +10268,8 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub" -version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-messages", "bp-runtime", @@ -10103,8 +10290,8 @@ dependencies = [ [[package]] name = "pallet-xcm-bridge-hub-router" -version = "0.21.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.23.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-xcm-bridge-hub-router", "frame-benchmarking", @@ -10121,10 +10308,24 @@ dependencies = [ "tracing", ] +[[package]] +name = "pallet-xcm-precompiles" +version = "0.3.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" +dependencies = [ + "frame-support", + "pallet-revive", + "pallet-xcm", + "parity-scale-codec", + "staging-xcm", + "staging-xcm-executor", + "tracing", +] + [[package]] name = "parachains-common" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -10154,8 +10355,8 @@ dependencies = [ [[package]] name = "parachains-runtimes-test-utils" -version = "26.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-pallet-xcmp-queue", @@ -10183,19 +10384,6 @@ dependencies = [ "xcm-runtime-apis", ] -[[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" @@ -10243,7 +10431,7 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -10340,12 +10528,6 @@ dependencies = [ "password-hash", ] -[[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.6" @@ -10373,9 +10555,9 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pest" -version = "2.8.4" +version = "2.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbcfd20a6d4eeba40179f05735784ad32bdaef05ce8e8af05f180d45bb3e7e22" +checksum = "2c9eb05c21a464ea704b53158d358a31e6425db2f63a1a7312268b05fe2b75f7" dependencies = [ "memchr", "ucd-trie", @@ -10383,9 +10565,9 @@ dependencies = [ [[package]] name = "pest_derive" -version = "2.8.4" +version = "2.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51f72981ade67b1ca6adc26ec221be9f463f2b5839c7508998daa17c23d94d7f" +checksum = "68f9dbced329c441fa79d80472764b1a2c7e57123553b8519b36663a2fb234ed" dependencies = [ "pest", "pest_generator", @@ -10393,22 +10575,22 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.8.4" +version = "2.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee9efd8cdb50d719a80088b76f81aec7c41ed6d522ee750178f83883d271625" +checksum = "3bb96d5051a78f44f43c8f712d8e810adb0ebf923fc9ed2655a7f66f63ba8ee5" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "pest_meta" -version = "2.8.4" +version = "2.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf1d70880e76bdc13ba52eafa6239ce793d85c8e43896507e43dd8984ff05b82" +checksum = "602113b5b5e8621770cfd490cfd90b9f84ab29bd2b0e49ad83eb6d186cef2365" dependencies = [ "pest", "sha2 0.10.9", @@ -10421,7 +10603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" dependencies = [ "fixedbitset 0.4.2", - "indexmap 2.12.1", + "indexmap 2.13.0", ] [[package]] @@ -10431,7 +10613,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" dependencies = [ "fixedbitset 0.5.7", - "indexmap 2.12.1", + "indexmap 2.13.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.13.0", ] [[package]] @@ -10464,7 +10657,7 @@ dependencies = [ "phf_shared", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -10493,7 +10686,7 @@ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -10537,8 +10730,8 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" [[package]] name = "polkadot-approval-distribution" -version = "26.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "futures-timer", @@ -10555,8 +10748,8 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "futures-timer", @@ -10570,8 +10763,8 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fatality", "futures", @@ -10593,8 +10786,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "fatality", @@ -10626,8 +10819,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "28.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "clap", "frame-benchmarking-cli", @@ -10651,8 +10844,8 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "26.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "fatality", @@ -10674,8 +10867,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -10685,13 +10878,13 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fatality", "futures", "futures-timer", - "indexmap 2.12.1", + "indexmap 2.13.0", "parity-scale-codec", "polkadot-node-network-protocol", "polkadot-node-primitives", @@ -10707,8 +10900,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -10721,8 +10914,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "futures-timer", @@ -10735,15 +10928,15 @@ dependencies = [ "sc-network", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-keystore", "tracing-gum", ] [[package]] name = "polkadot-network-bridge" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "always-assert", "async-trait", @@ -10765,8 +10958,8 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "parity-scale-codec", @@ -10783,8 +10976,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "bitvec", @@ -10815,8 +11008,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting-parallel" -version = "0.9.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.11.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -10839,8 +11032,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "futures", @@ -10858,8 +11051,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "fatality", @@ -10879,8 +11072,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -10894,8 +11087,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -10916,8 +11109,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "polkadot-node-metrics", @@ -10930,8 +11123,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "futures-timer", @@ -10946,8 +11139,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fatality", "futures", @@ -10964,8 +11157,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -10981,8 +11174,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fatality", "futures", @@ -10995,8 +11188,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "fatality", @@ -11006,14 +11199,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 = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "always-assert", "array-bytes", @@ -11040,8 +11235,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "polkadot-node-subsystem", @@ -11053,8 +11248,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cpu-time", "futures", @@ -11070,7 +11265,7 @@ dependencies = [ "sc-executor-wasmtime", "seccompiler", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-externalities", "sp-io", "sp-tracing", @@ -11080,8 +11275,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "polkadot-node-metrics", @@ -11095,8 +11290,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bs58", "futures", @@ -11112,8 +11307,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -11137,8 +11332,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "22.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "bounded-vec", @@ -11161,8 +11356,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "polkadot-node-subsystem-types", "polkadot-overseer", @@ -11170,8 +11365,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "derive_more 0.99.20", @@ -11198,8 +11393,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fatality", "futures", @@ -11228,8 +11423,8 @@ dependencies = [ [[package]] name = "polkadot-omni-node-lib" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.13.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "clap", @@ -11268,6 +11463,7 @@ dependencies = [ "sc-client-api", "sc-client-db", "sc-consensus", + "sc-consensus-aura", "sc-consensus-manual-seal", "sc-executor", "sc-keystore", @@ -11279,6 +11475,7 @@ dependencies = [ "sc-runtime-utilities", "sc-service", "sc-statement-store", + "sc-storage-monitor", "sc-sysinfo", "sc-telemetry", "sc-tracing", @@ -11313,8 +11510,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -11333,8 +11530,8 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "20.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "bounded-collections 0.3.2", @@ -11350,8 +11547,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "22.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "bounded-collections 0.3.2", @@ -11377,10 +11574,25 @@ dependencies = [ "thiserror 1.0.69", ] +[[package]] +name = "polkadot-primitives-test-helpers" +version = "0.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" +dependencies = [ + "parity-scale-codec", + "polkadot-primitives", + "rand 0.8.5", + "scale-info", + "sp-application-crypto", + "sp-core", + "sp-keyring", + "sp-runtime", +] + [[package]] name = "polkadot-rpc" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -11412,8 +11624,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "frame-benchmarking", @@ -11462,8 +11674,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bs58", "frame-benchmarking", @@ -11474,8 +11686,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "22.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -11521,8 +11733,8 @@ dependencies = [ [[package]] name = "polkadot-sdk" -version = "2509.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "2512.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "asset-test-utils", "assets-common", @@ -11630,6 +11842,7 @@ dependencies = [ "pallet-migrations", "pallet-mixnet", "pallet-mmr", + "pallet-multi-asset-bounties", "pallet-multisig", "pallet-nft-fractionalization", "pallet-nfts", @@ -11641,6 +11854,8 @@ dependencies = [ "pallet-nomination-pools-runtime-api", "pallet-offences", "pallet-offences-benchmarking", + "pallet-oracle", + "pallet-oracle-runtime-api", "pallet-origin-restriction", "pallet-paged-list", "pallet-parameters", @@ -11692,6 +11907,7 @@ dependencies = [ "pallet-xcm-benchmarks", "pallet-xcm-bridge-hub", "pallet-xcm-bridge-hub-router", + "pallet-xcm-precompiles", "parachains-common", "parachains-runtimes-test-utils", "polkadot-cli", @@ -11723,7 +11939,7 @@ dependencies = [ "sp-core", "sp-core-hashing", "sp-crypto-ec-utils", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-crypto-hashing-proc-macro", "sp-debug-derive", "sp-externalities", @@ -11768,8 +11984,8 @@ dependencies = [ [[package]] name = "polkadot-sdk-frame" -version = "0.12.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.14.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-benchmarking", @@ -11803,8 +12019,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "frame-benchmarking", @@ -11911,8 +12127,8 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitvec", "fatality", @@ -11931,8 +12147,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -11954,15 +12170,15 @@ dependencies = [ [[package]] name = "polkavm" -version = "0.27.0" +version = "0.29.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ef5796e5aaa109df210fed7c6ff82e89c7bf94c28f6332d57bd0efb865fdc2a" +checksum = "63c8211d36125b6cc451b3cbc46b8ee27fefb54521b67f43c8630bd1afbd44d4" dependencies = [ "libc", "log", - "polkavm-assembler 0.27.0", - "polkavm-common 0.27.0", - "polkavm-linux-raw 0.27.0", + "polkavm-assembler 0.29.0", + "polkavm-common 0.29.0", + "polkavm-linux-raw 0.29.0", ] [[package]] @@ -11976,9 +12192,9 @@ dependencies = [ [[package]] name = "polkavm-assembler" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70bf3be2911acc089dfe54a92bfec22002f4fbf423b8fa771d1f7e7227f0195f" +checksum = "914aacebfbc22da7772f5ecb6f79b39901dc4061121598bd4383a590a7506ebb" dependencies = [ "log", ] @@ -11995,13 +12211,13 @@ dependencies = [ [[package]] name = "polkavm-common" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a19805789e7bf778ac5855f6fe9350353f6a1697c2aab9bfb6fc7c831be54fad" +checksum = "f634b46a6a47a5de381f56d1d8cced9f8640d063b2b1a44b0da6dbef91bbd400" dependencies = [ "blake3", "log", - "polkavm-assembler 0.27.0", + "polkavm-assembler 0.29.0", ] [[package]] @@ -12015,11 +12231,11 @@ dependencies = [ [[package]] name = "polkavm-derive" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eea46a17d87cbf3c0f3f6156f6300f60cec67cf9eaca296c770e0873f8389d6" +checksum = "37ba6256c003853b6adb5dc8394e0e1882a9545ee3bec4e4ce533e7e4f488825" dependencies = [ - "polkavm-derive-impl-macro 0.27.0", + "polkavm-derive-impl-macro 0.29.0", ] [[package]] @@ -12031,19 +12247,19 @@ dependencies = [ "polkavm-common 0.26.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "polkavm-derive-impl" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8abdd1210d96b1dda9ac21199ec469448fd628cea102e2ff0e0df1667c4c3b5f" +checksum = "90751404f08622c8a671695605cfc1bd83ec091339bd3258a37acc7a931c8741" dependencies = [ - "polkavm-common 0.27.0", + "polkavm-common 0.29.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12053,17 +12269,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "581d34cafec741dc5ffafbb341933c205b6457f3d76257a9d99fb56687219c91" dependencies = [ "polkavm-derive-impl 0.26.0", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "polkavm-derive-impl-macro" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a45173d70138aa1879892c50777ed0d8b0c8556f7678372f09fa1d89bbbddb4" +checksum = "10e463de593b485c8685d42737aae81c24005dba967deaaaccbb6f3e936d8596" dependencies = [ - "polkavm-derive-impl 0.27.0", - "syn 2.0.111", + "polkavm-derive-impl 0.29.0", + "syn 2.0.114", ] [[package]] @@ -12084,16 +12300,16 @@ dependencies = [ [[package]] name = "polkavm-linker" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99fe3704d21e96c5d1e6a1b1a43ac57f9dce110d3331fbf8299e9f57d5884066" +checksum = "43e01613e9e3e4ebd624aa3a11f1775a5c90b881200c50e054fe13c3ba451f98" dependencies = [ "dirs", "gimli 0.31.1", "hashbrown 0.14.5", "log", "object 0.36.7", - "polkavm-common 0.27.0", + "polkavm-common 0.29.0", "regalloc2 0.9.3", "rustc-demangle", ] @@ -12106,9 +12322,9 @@ checksum = "28919f542476f4158cc71e6c072b1051f38f4b514253594ac3ad80e3c0211fc8" [[package]] name = "polkavm-linux-raw" -version = "0.27.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "061088785efd93e4367faf12f341bb356208c06bab43aa942d472068af80d1c4" +checksum = "751fbbcf86635834dd9a700039c74ce8c7871b317acc84582d9667dad2ed9848" [[package]] name = "polling" @@ -12120,7 +12336,7 @@ dependencies = [ "concurrent-queue", "hermit-abi", "pin-project-lite", - "rustix 1.1.2", + "rustix 1.1.3", "windows-sys 0.61.2", ] @@ -12149,9 +12365,9 @@ dependencies = [ [[package]] name = "portable-atomic" -version = "1.11.1" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483" +checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950" [[package]] name = "postcard" @@ -12222,7 +12438,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12292,7 +12508,7 @@ version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983" dependencies = [ - "toml_edit 0.23.7", + "toml_edit 0.23.10+spec-1.0.0", ] [[package]] @@ -12338,7 +12554,7 @@ dependencies = [ "proc-macro-error-attr2", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12349,14 +12565,14 @@ checksum = "75eea531cfcd120e0851a3f8aed42c4841f78c889eefafd96339c72677ae42c3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "proc-macro2" -version = "1.0.103" +version = "1.0.106" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" dependencies = [ "unicode-ident", ] @@ -12395,7 +12611,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12437,6 +12653,16 @@ dependencies = [ "prost-derive 0.13.5", ] +[[package]] +name = "prost" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568" +dependencies = [ + "bytes", + "prost-derive 0.14.3", +] + [[package]] name = "prost-build" version = "0.13.5" @@ -12451,9 +12677,28 @@ dependencies = [ "petgraph 0.7.1", "prettyplease", "prost 0.13.5", - "prost-types", + "prost-types 0.13.5", + "regex", + "syn 2.0.114", + "tempfile", +] + +[[package]] +name = "prost-build" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7" +dependencies = [ + "heck 0.5.0", + "itertools 0.14.0", + "log", + "multimap", + "petgraph 0.8.3", + "prettyplease", + "prost 0.14.3", + "prost-types 0.14.3", "regex", - "syn 2.0.111", + "syn 2.0.114", "tempfile", ] @@ -12467,7 +12712,7 @@ dependencies = [ "itertools 0.12.1", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12480,7 +12725,20 @@ dependencies = [ "itertools 0.14.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", +] + +[[package]] +name = "prost-derive" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.114", ] [[package]] @@ -12492,6 +12750,15 @@ dependencies = [ "prost 0.13.5", ] +[[package]] +name = "prost-types" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7" +dependencies = [ + "prost 0.14.3", +] + [[package]] name = "pulley-interpreter" version = "35.0.0" @@ -12512,7 +12779,7 @@ checksum = "938543690519c20c3a480d20a8efcc8e69abeb44093ab1df4e7c1f81f26c677a" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -12572,8 +12839,8 @@ dependencies = [ "quinn-udp", "rustc-hash 2.1.1", "rustls", - "socket2 0.6.1", - "thiserror 2.0.17", + "socket2 0.6.2", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -12594,7 +12861,7 @@ dependencies = [ "rustls", "rustls-pki-types", "slab", - "thiserror 2.0.17", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -12609,16 +12876,16 @@ dependencies = [ "cfg_aliases 0.2.1", "libc", "once_cell", - "socket2 0.6.1", + "socket2 0.6.2", "tracing", "windows-sys 0.60.2", ] [[package]] name = "quote" -version = "1.0.42" +version = "1.0.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" +checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4" dependencies = [ "proc-macro2", ] @@ -12644,6 +12911,7 @@ dependencies = [ "libc", "rand_chacha 0.3.1", "rand_core 0.6.4", + "serde", ] [[package]] @@ -12653,7 +12921,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1" dependencies = [ "rand_chacha 0.9.0", - "rand_core 0.9.3", + "rand_core 0.9.5", "serde", ] @@ -12674,7 +12942,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]] @@ -12683,14 +12951,14 @@ 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.4", "serde", @@ -12721,7 +12989,16 @@ 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 = "rapidhash" +version = "4.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d8b5b858a440a0bc02625b62dd95131b9201aa9f69f411195dd4a7cfb1de3d7" +dependencies = [ + "rustversion", ] [[package]] @@ -12789,13 +13066,22 @@ dependencies = [ "bitflags 2.10.0", ] +[[package]] +name = "redox_syscall" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27" +dependencies = [ + "bitflags 2.10.0", +] + [[package]] name = "redox_users" 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", ] @@ -12829,7 +13115,7 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -13116,7 +13402,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", @@ -13153,9 +13439,9 @@ dependencies = [ [[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", @@ -13163,8 +13449,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "29.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13261,8 +13547,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "polkadot-primitives", @@ -13322,9 +13608,9 @@ dependencies = [ [[package]] name = "rug" -version = "1.28.0" +version = "1.28.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58ad2e973fe3c3214251a840a621812a4f40468da814b1a3d6947d433c2af11f" +checksum = "de190ec858987c79cad4da30e19e546139b3339331282832af004d0ea7829639" dependencies = [ "az", "gmp-mpfr-sys", @@ -13334,9 +13620,9 @@ dependencies = [ [[package]] name = "ruint" -version = "1.17.0" +version = "1.17.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278" +checksum = "c141e807189ad38a07276942c6623032d3753c8859c146104ac2e4d68865945a" dependencies = [ "alloy-rlp", "ark-ff 0.3.0", @@ -13368,9 +13654,9 @@ checksum = "48fd7bd8a6377e15ad9d42a8ec25371b94ddc67abe7c8b9127bec79bebaaae18" [[package]] name = "rustc-demangle" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace" +checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d" [[package]] name = "rustc-hash" @@ -13423,7 +13709,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" dependencies = [ - "nom", + "nom 7.1.3", ] [[package]] @@ -13441,9 +13727,9 @@ dependencies = [ [[package]] name = "rustix" -version = "1.1.2" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" dependencies = [ "bitflags 2.10.0", "errno", @@ -13454,24 +13740,24 @@ dependencies = [ [[package]] name = "rustls" -version = "0.23.35" +version = "0.23.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f" +checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b" dependencies = [ "log", "once_cell", "ring 0.17.14", "rustls-pki-types", - "rustls-webpki 0.103.8", + "rustls-webpki 0.103.9", "subtle 2.6.1", "zeroize", ] [[package]] name = "rustls-native-certs" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923" +checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63" dependencies = [ "openssl-probe", "rustls-pki-types", @@ -13481,9 +13767,9 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c" +checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd" dependencies = [ "web-time", "zeroize", @@ -13503,7 +13789,7 @@ dependencies = [ "rustls", "rustls-native-certs", "rustls-platform-verifier-android", - "rustls-webpki 0.103.8", + "rustls-webpki 0.103.9", "security-framework", "security-framework-sys", "webpki-root-certs 0.26.11", @@ -13528,9 +13814,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.8" +version = "0.103.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52" +checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" dependencies = [ "ring 0.17.14", "rustls-pki-types", @@ -13557,13 +13843,9 @@ dependencies = [ [[package]] name = "ruzstd" -version = "0.6.0" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5174a470eeb535a721ae9fdd6e291c2411a906b96592182d05217591d5c5cf7b" -dependencies = [ - "byteorder", - "derive_more 0.99.20", -] +checksum = "e5ff0cc5e135c8870a775d3320910cd9b564ec036b4dc0b8741629020be63f01" [[package]] name = "rw-stream-sink" @@ -13576,12 +13858,6 @@ dependencies = [ "static_assertions", ] -[[package]] -name = "ryu" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - [[package]] name = "safe-mix" version = "1.0.1" @@ -13620,8 +13896,8 @@ dependencies = [ [[package]] name = "sc-allocator" -version = "34.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "35.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "sp-core", @@ -13631,8 +13907,8 @@ dependencies = [ [[package]] name = "sc-authority-discovery" -version = "0.53.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -13642,7 +13918,7 @@ dependencies = [ "log", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "rand 0.8.5", "sc-client-api", "sc-network", @@ -13663,8 +13939,8 @@ dependencies = [ [[package]] name = "sc-basic-authorship" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.53.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "log", @@ -13685,8 +13961,8 @@ dependencies = [ [[package]] name = "sc-block-builder" -version = "0.47.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.48.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sp-api", @@ -13700,8 +13976,8 @@ dependencies = [ [[package]] name = "sc-chain-spec" -version = "46.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "clap", @@ -13717,7 +13993,7 @@ dependencies = [ "serde_json", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-genesis-builder", "sp-io", "sp-runtime", @@ -13728,20 +14004,21 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "12.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sc-cli" -version = "0.55.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.57.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", + "bip39", "chrono", "clap", "fdlimit", @@ -13750,7 +14027,6 @@ dependencies = [ "libp2p-identity", "log", "names", - "parity-bip39", "parity-scale-codec", "rand 0.8.5", "regex", @@ -13780,8 +14056,8 @@ dependencies = [ [[package]] name = "sc-client-api" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fnv", "futures", @@ -13806,8 +14082,8 @@ dependencies = [ [[package]] name = "sc-client-db" -version = "0.49.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.51.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "hash-db", "kvdb", @@ -13834,8 +14110,8 @@ dependencies = [ [[package]] name = "sc-consensus" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -13857,8 +14133,8 @@ dependencies = [ [[package]] name = "sc-consensus-aura" -version = "0.53.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "fork-tree", @@ -13888,8 +14164,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe" -version = "0.53.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "fork-tree", @@ -13914,7 +14190,7 @@ dependencies = [ "sp-consensus-babe", "sp-consensus-slots", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-inherents", "sp-keystore", "sp-runtime", @@ -13925,8 +14201,8 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" -version = "0.53.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "jsonrpsee", @@ -13947,8 +14223,8 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" -version = "32.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "34.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -13981,8 +14257,8 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" -version = "32.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "34.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "jsonrpsee", @@ -14001,8 +14277,8 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "fork-tree", "parity-scale-codec", @@ -14014,10 +14290,10 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" -version = "0.38.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.40.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ - "ahash", + "ahash 0.8.12", "array-bytes", "async-trait", "dyn-clone", @@ -14049,7 +14325,7 @@ dependencies = [ "sp-consensus", "sp-consensus-grandpa", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-keystore", "sp-runtime", "substrate-prometheus-endpoint", @@ -14058,8 +14334,8 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" -version = "0.38.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.40.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "finality-grandpa", "futures", @@ -14078,8 +14354,8 @@ dependencies = [ [[package]] name = "sc-consensus-manual-seal" -version = "0.54.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.56.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "assert_matches", "async-trait", @@ -14113,8 +14389,8 @@ dependencies = [ [[package]] name = "sc-consensus-slots" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -14136,8 +14412,8 @@ dependencies = [ [[package]] name = "sc-executor" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.47.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "parking_lot 0.12.5", @@ -14159,8 +14435,8 @@ dependencies = [ [[package]] name = "sc-executor-common" -version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.43.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "polkavm 0.26.0", "sc-allocator", @@ -14172,8 +14448,8 @@ dependencies = [ [[package]] name = "sc-executor-polkavm" -version = "0.38.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.40.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "polkavm 0.26.0", @@ -14183,13 +14459,13 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" -version = "0.41.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.43.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "anyhow", "log", "parking_lot 0.12.5", - "rustix 1.1.2", + "rustix 1.1.3", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -14199,8 +14475,8 @@ dependencies = [ [[package]] name = "sc-informant" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "console", "futures", @@ -14215,8 +14491,8 @@ dependencies = [ [[package]] name = "sc-keystore" -version = "38.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "parking_lot 0.12.5", @@ -14229,8 +14505,8 @@ dependencies = [ [[package]] name = "sc-mixnet" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "arrayvec 0.7.6", @@ -14257,15 +14533,14 @@ dependencies = [ [[package]] name = "sc-network" -version = "0.53.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", "async-trait", "asynchronous-codec 0.6.2", "bytes", - "cid 0.9.0", "either", "fnv", "futures", @@ -14281,7 +14556,7 @@ dependencies = [ "partial_sort", "pin-project", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "rand 0.8.5", "sc-client-api", "sc-network-common", @@ -14307,8 +14582,8 @@ dependencies = [ [[package]] name = "sc-network-common" -version = "0.51.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.52.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bitflags 1.3.2", "parity-scale-codec", @@ -14317,10 +14592,10 @@ dependencies = [ [[package]] name = "sc-network-gossip" -version = "0.53.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ - "ahash", + "ahash 0.8.12", "futures", "futures-timer", "log", @@ -14336,8 +14611,8 @@ dependencies = [ [[package]] name = "sc-network-light" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -14345,7 +14620,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", @@ -14357,8 +14632,8 @@ dependencies = [ [[package]] name = "sc-network-statement" -version = "0.35.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.37.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -14378,8 +14653,8 @@ dependencies = [ [[package]] name = "sc-network-sync" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -14390,7 +14665,7 @@ dependencies = [ "mockall", "parity-scale-codec", "prost 0.12.6", - "prost-build", + "prost-build 0.13.5", "sc-client-api", "sc-consensus", "sc-network", @@ -14413,8 +14688,8 @@ dependencies = [ [[package]] name = "sc-network-transactions" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "futures", @@ -14432,8 +14707,8 @@ dependencies = [ [[package]] name = "sc-network-types" -version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.20.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bs58", "bytes", @@ -14453,8 +14728,8 @@ dependencies = [ [[package]] name = "sc-offchain" -version = "48.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "50.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bytes", "fnv", @@ -14488,7 +14763,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -14496,8 +14771,8 @@ dependencies = [ [[package]] name = "sc-rpc" -version = "48.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "50.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "jsonrpsee", @@ -14528,8 +14803,8 @@ dependencies = [ [[package]] name = "sc-rpc-api" -version = "0.52.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.54.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14548,8 +14823,8 @@ dependencies = [ [[package]] name = "sc-rpc-server" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "dyn-clone", "forwarded-header-value", @@ -14572,8 +14847,8 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" -version = "0.53.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "futures", @@ -14605,14 +14880,14 @@ dependencies = [ [[package]] name = "sc-runtime-utilities" -version = "0.5.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.7.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sc-executor", "sc-executor-common", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-state-machine", "sp-wasm-interface", "thiserror 1.0.69", @@ -14620,8 +14895,8 @@ dependencies = [ [[package]] name = "sc-service" -version = "0.54.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.56.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "directories", @@ -14684,8 +14959,8 @@ dependencies = [ [[package]] name = "sc-state-db" -version = "0.40.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.41.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -14695,8 +14970,8 @@ dependencies = [ [[package]] name = "sc-statement-store" -version = "24.2.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-db", @@ -14715,8 +14990,8 @@ dependencies = [ [[package]] name = "sc-storage-monitor" -version = "0.26.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.27.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "clap", "fs4", @@ -14728,8 +15003,8 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" -version = "0.53.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.55.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14747,8 +15022,8 @@ dependencies = [ [[package]] name = "sc-sysinfo" -version = "45.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "46.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "derive_more 0.99.20", "futures", @@ -14761,14 +15036,14 @@ dependencies = [ "serde", "serde_json", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-io", ] [[package]] name = "sc-telemetry" version = "30.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "chrono", "futures", @@ -14786,12 +15061,11 @@ dependencies = [ [[package]] name = "sc-tracing" -version = "42.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "chrono", "console", - "frame-metadata 23.0.0", "is-terminal", "libc", "log", @@ -14807,7 +15081,6 @@ dependencies = [ "sp-rpc", "sp-runtime", "sp-tracing", - "sp-trie", "thiserror 1.0.69", "tracing", "tracing-log", @@ -14817,23 +15090,23 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "11.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sc-transaction-pool" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", "futures-timer", - "indexmap 2.12.1", + "indexmap 2.13.0", "itertools 0.11.0", "linked-hash-map", "parity-scale-codec", @@ -14845,10 +15118,11 @@ dependencies = [ "sp-api", "sp-blockchain", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-runtime", "sp-tracing", "sp-transaction-pool", + "strum 0.26.3", "substrate-prometheus-endpoint", "thiserror 1.0.69", "tokio", @@ -14858,25 +15132,26 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", - "indexmap 2.12.1", + "indexmap 2.13.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 = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-channel 1.9.0", "futures", @@ -14911,7 +15186,7 @@ dependencies = [ "scale-decode-derive", "scale-type-resolver", "smallvec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -14923,14 +15198,14 @@ dependencies = [ "darling 0.20.11", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[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", @@ -14938,20 +15213,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-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -14977,7 +15252,7 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -14999,8 +15274,8 @@ dependencies = [ "proc-macro2", "quote", "scale-info", - "syn 2.0.111", - "thiserror 2.0.17", + "syn 2.0.114", + "thiserror 2.0.18", ] [[package]] @@ -15018,7 +15293,7 @@ dependencies = [ "scale-encode", "scale-type-resolver", "serde", - "thiserror 2.0.17", + "thiserror 2.0.18", "yap", ] @@ -15045,9 +15320,9 @@ dependencies = [ [[package]] name = "schemars" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289" +checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2" dependencies = [ "dyn-clone", "ref-cast", @@ -15061,7 +15336,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", ] @@ -15174,9 +15449,10 @@ version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b50c5943d326858130af85e049f2661ba3c78b26589b8ab98e65e80ae44a1252" dependencies = [ - "bitcoin_hashes 0.14.0", + "bitcoin_hashes", "rand 0.8.5", "secp256k1-sys 0.10.1", + "serde", ] [[package]] @@ -15185,7 +15461,7 @@ version = "0.31.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c3c81b43dc2d8877c216a3fccf76677ee1ebccd429566d3e67447290d0c42b2" dependencies = [ - "bitcoin_hashes 0.14.0", + "bitcoin_hashes", "rand 0.9.2", "secp256k1-sys 0.11.0", ] @@ -15356,21 +15632,21 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "serde_json" -version = "1.0.145" +version = "1.0.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" dependencies = [ - "indexmap 2.12.1", + "indexmap 2.13.0", "itoa", "memchr", - "ryu", "serde", "serde_core", + "zmij", ] [[package]] @@ -15392,9 +15668,9 @@ dependencies = [ "chrono", "hex", "indexmap 1.9.3", - "indexmap 2.12.1", + "indexmap 2.13.0", "schemars 0.9.0", - "schemars 1.1.0", + "schemars 1.2.0", "serde_core", "serde_json", "serde_with_macros", @@ -15410,7 +15686,7 @@ dependencies = [ "darling 0.21.3", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -15458,6 +15734,12 @@ dependencies = [ "digest 0.10.7", ] +[[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" @@ -15495,10 +15777,11 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "signal-hook-registry" -version = "1.4.7" +version = "1.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" dependencies = [ + "errno", "libc", ] @@ -15527,9 +15810,9 @@ dependencies = [ [[package]] name = "simple-dns" -version = "0.9.3" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a" +checksum = "df350943049174c4ae8ced56c604e28270258faec12a6a48637a7655287c9ce0" dependencies = [ "bitflags 2.10.0", ] @@ -15566,8 +15849,8 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" -version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "enumn", "parity-scale-codec", @@ -15577,9 +15860,9 @@ 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", ] @@ -15612,9 +15895,9 @@ 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", "async-lock", @@ -15625,21 +15908,21 @@ dependencies = [ "bs58", "chacha20", "crossbeam-queue", - "derive_more 0.99.20", + "derive_more 2.1.1", "ed25519-zebra", "either", "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", @@ -15658,35 +15941,35 @@ dependencies = [ "slab", "smallvec", "soketto", - "twox-hash", - "wasmi", + "twox-hash 2.1.2", + "wasmi 0.40.0", "x25519-dalek", "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", "base64", "blake2-rfc", "bs58", - "derive_more 0.99.20", + "derive_more 2.1.1", "either", "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", + "lru 0.12.5", "parking_lot 0.12.5", "pin-project", "rand 0.8.5", @@ -15725,14 +16008,13 @@ dependencies = [ [[package]] name = "snowbridge-core" -version = "0.16.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bp-relayers", "frame-support", "frame-system", "hex-literal", - "log", "parity-scale-codec", "polkadot-parachain-primitives", "scale-info", @@ -15745,6 +16027,7 @@ dependencies = [ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", + "tracing", ] [[package]] @@ -15759,9 +16042,9 @@ dependencies = [ [[package]] name = "socket2" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881" +checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" dependencies = [ "libc", "windows-sys 0.60.2", @@ -15803,7 +16086,7 @@ dependencies = [ [[package]] name = "solochain-template-runtime" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-benchmarking", "frame-executive", @@ -15843,8 +16126,8 @@ dependencies = [ [[package]] name = "sp-api" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "hash-db", @@ -15865,8 +16148,8 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" -version = "25.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "26.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "Inflector", "blake2 0.10.6", @@ -15874,13 +16157,13 @@ dependencies = [ "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sp-application-crypto" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -15892,7 +16175,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "28.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "integer-sqrt", @@ -15905,8 +16188,8 @@ dependencies = [ [[package]] name = "sp-authority-discovery" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -15917,8 +16200,8 @@ dependencies = [ [[package]] name = "sp-block-builder" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-api", "sp-inherents", @@ -15927,8 +16210,8 @@ dependencies = [ [[package]] name = "sp-blockchain" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "futures", "parity-scale-codec", @@ -15946,8 +16229,8 @@ dependencies = [ [[package]] name = "sp-consensus" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "futures", @@ -15960,8 +16243,8 @@ dependencies = [ [[package]] name = "sp-consensus-aura" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "parity-scale-codec", @@ -15976,8 +16259,8 @@ dependencies = [ [[package]] name = "sp-consensus-babe" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "parity-scale-codec", @@ -15994,8 +16277,8 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "28.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16003,7 +16286,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-io", "sp-keystore", "sp-mmr-primitives", @@ -16014,8 +16297,8 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" -version = "26.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "27.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "finality-grandpa", "log", @@ -16031,8 +16314,8 @@ dependencies = [ [[package]] name = "sp-consensus-pow" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "sp-api", @@ -16042,8 +16325,8 @@ dependencies = [ [[package]] name = "sp-consensus-slots" -version = "0.45.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.46.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16053,11 +16336,12 @@ dependencies = [ [[package]] name = "sp-core" -version = "38.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "39.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "ark-vrf", "array-bytes", + "bip39", "bitflags 1.3.2", "blake2 0.10.6", "bounded-collections 0.3.2", @@ -16073,7 +16357,6 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "parity-bip39", "parity-scale-codec", "parking_lot 0.12.5", "paste", @@ -16085,7 +16368,7 @@ dependencies = [ "secrecy 0.8.0", "serde", "sha2 0.10.9", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-debug-derive", "sp-externalities", "sp-std", @@ -16101,28 +16384,28 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", ] [[package]] name = "sp-crypto-ec-utils" -version = "0.18.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.19.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" 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-scale 0.0.12", + "ark-scale", "sp-runtime-interface", ] @@ -16137,55 +16420,56 @@ dependencies = [ "digest 0.10.7", "sha2 0.10.9", "sha3", - "twox-hash", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.9", "sha3", - "twox-hash", + "twox-hash 1.6.3", ] [[package]] name = "sp-crypto-hashing-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "quote", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", - "syn 2.0.111", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", + "syn 2.0.114", ] [[package]] name = "sp-database" -version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "10.0.1" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "kvdb", + "kvdb-rocksdb", "parking_lot 0.12.5", ] [[package]] name = "sp-debug-derive" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sp-externalities" -version = "0.30.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.31.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "environmental", "parity-scale-codec", @@ -16194,8 +16478,8 @@ dependencies = [ [[package]] name = "sp-genesis-builder" -version = "0.20.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.21.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16206,8 +16490,8 @@ dependencies = [ [[package]] name = "sp-inherents" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -16219,8 +16503,8 @@ dependencies = [ [[package]] name = "sp-io" -version = "43.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "44.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bytes", "docify", @@ -16232,7 +16516,7 @@ dependencies = [ "rustversion", "secp256k1 0.28.2", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-externalities", "sp-keystore", "sp-runtime-interface", @@ -16245,8 +16529,8 @@ dependencies = [ [[package]] name = "sp-keyring" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-core", "sp-runtime", @@ -16255,8 +16539,8 @@ dependencies = [ [[package]] name = "sp-keystore" -version = "0.44.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.45.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "parking_lot 0.12.5", @@ -16266,8 +16550,8 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" -version = "11.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "11.1.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "thiserror 1.0.69", "zstd 0.12.4", @@ -16275,18 +16559,18 @@ dependencies = [ [[package]] name = "sp-metadata-ir" -version = "0.12.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.12.1" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ - "frame-metadata 23.0.0", + "frame-metadata", "parity-scale-codec", "scale-info", ] [[package]] name = "sp-mixnet" -version = "0.17.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.18.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16296,8 +16580,8 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "log", "parity-scale-codec", @@ -16313,8 +16597,8 @@ dependencies = [ [[package]] name = "sp-npos-elections" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16326,8 +16610,8 @@ dependencies = [ [[package]] name = "sp-offchain" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-api", "sp-core", @@ -16337,7 +16621,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "13.0.2" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "backtrace", "regex", @@ -16345,8 +16629,8 @@ dependencies = [ [[package]] name = "sp-rpc" -version = "36.0.1" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "37.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "rustc-hash 1.1.0", "serde", @@ -16355,10 +16639,11 @@ dependencies = [ [[package]] name = "sp-runtime" -version = "44.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "45.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "binary-merkle-tree", + "bytes", "docify", "either", "hash256-std-hasher", @@ -16378,14 +16663,15 @@ dependencies = [ "sp-std", "sp-trie", "sp-weights", + "strum 0.26.3", "tracing", "tuplex", ] [[package]] name = "sp-runtime-interface" -version = "32.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "33.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -16403,20 +16689,20 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "Inflector", "expander", "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sp-session" -version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "scale-info", @@ -16429,8 +16715,8 @@ dependencies = [ [[package]] name = "sp-staking" -version = "41.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -16442,8 +16728,8 @@ dependencies = [ [[package]] name = "sp-state-machine" -version = "0.48.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.49.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "hash-db", "log", @@ -16462,8 +16748,8 @@ dependencies = [ [[package]] name = "sp-statement-store" -version = "23.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "aes-gcm", "curve25519-dalek", @@ -16476,7 +16762,7 @@ dependencies = [ "sp-api", "sp-application-crypto", "sp-core", - "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3)", + "sp-crypto-hashing 0.1.0 (git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512)", "sp-externalities", "sp-runtime", "sp-runtime-interface", @@ -16487,12 +16773,12 @@ dependencies = [ [[package]] name = "sp-std" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" [[package]] name = "sp-storage" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -16503,8 +16789,8 @@ dependencies = [ [[package]] name = "sp-timestamp" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "parity-scale-codec", @@ -16516,7 +16802,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "regex", @@ -16527,8 +16813,8 @@ dependencies = [ [[package]] name = "sp-transaction-pool" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "sp-api", "sp-runtime", @@ -16536,8 +16822,8 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" -version = "39.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "40.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "async-trait", "parity-scale-codec", @@ -16550,10 +16836,10 @@ dependencies = [ [[package]] name = "sp-trie" -version = "41.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "42.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ - "ahash", + "ahash 0.8.12", "foldhash 0.1.5", "hash-db", "hashbrown 0.15.5", @@ -16575,8 +16861,8 @@ dependencies = [ [[package]] name = "sp-version" -version = "42.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "43.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "impl-serde", "parity-scale-codec", @@ -16593,19 +16879,19 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "15.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "parity-scale-codec", "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "sp-wasm-interface" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -16616,8 +16902,8 @@ dependencies = [ [[package]] name = "sp-weights" -version = "33.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "33.2.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "bounded-collections 0.3.2", "parity-scale-codec", @@ -16682,8 +16968,8 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "staging-chain-spec-builder" -version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "16.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "clap", "docify", @@ -16695,8 +16981,8 @@ dependencies = [ [[package]] name = "staging-parachain-info" -version = "0.23.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.25.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -16708,8 +16994,8 @@ dependencies = [ [[package]] name = "staging-xcm" -version = "19.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "21.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "array-bytes", "bounded-collections 0.3.2", @@ -16729,8 +17015,8 @@ dependencies = [ [[package]] name = "staging-xcm-builder" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "environmental", "frame-support", @@ -16753,8 +17039,8 @@ dependencies = [ [[package]] name = "staging-xcm-executor" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "24.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "environmental", "frame-benchmarking", @@ -16860,13 +17146,13 @@ dependencies = [ "proc-macro2", "quote", "rustversion", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "substrate-bip39" version = "0.6.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "hmac 0.12.1", "pbkdf2", @@ -16891,12 +17177,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" [[package]] name = "substrate-frame-rpc-system" -version = "47.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "49.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "docify", "frame-system-rpc-runtime-api", @@ -16916,7 +17202,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.17.7" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "http-body-util", "hyper 1.8.1", @@ -16929,8 +17215,8 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" -version = "46.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "48.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -16950,8 +17236,8 @@ version = "0.1.0" [[package]] name = "substrate-wasm-builder" -version = "29.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "31.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "build-helper", "cargo_metadata", @@ -16989,14 +17275,14 @@ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142" [[package]] name = "subxt" -version = "0.41.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03459d84546def5e1d0d22b162754609f18e031522b0319b53306f5829de9c09" +checksum = "f8c6dc0f90e23c521465b8f7e026af04a48cc6f00c51d88a8d313d33096149de" dependencies = [ "async-trait", "derive-where", "either", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "parity-scale-codec", @@ -17014,7 +17300,7 @@ dependencies = [ "subxt-macro", "subxt-metadata", "subxt-rpcs", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-util", "tracing", @@ -17024,9 +17310,9 @@ dependencies = [ [[package]] name = "subxt-codegen" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324c52c09919fec8c22a4b572a466878322e99fe14a9e3d50d6c3700a226ec25" +checksum = "1728caecd9700391e78cc30dc298221d6f5ca0ea28258a452aa76b0b7c229842" dependencies = [ "heck 0.5.0", "parity-scale-codec", @@ -17035,21 +17321,21 @@ dependencies = [ "scale-info", "scale-typegen", "subxt-metadata", - "syn 2.0.111", - "thiserror 2.0.17", + "syn 2.0.114", + "thiserror 2.0.18", ] [[package]] name = "subxt-core" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66ef00be9d64885ec94e478a58e4e39d222024b20013ae7df4fc6ece545391aa" +checksum = "25338dd11ae34293b8d0c5807064f2e00194ba1bd84cccfa694030c8d185b941" dependencies = [ "base58", "blake2 0.10.6", "derive-where", "frame-decode", - "frame-metadata 20.0.0", + "frame-metadata", "hashbrown 0.14.5", "hex", "impl-serde", @@ -17065,22 +17351,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.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce07c2515b2e63b85ec3043fe4461b287af0615d4832c2fe6e81ba780b906bc0" +checksum = "9097ef356e534ce0b6a50b95233512afc394347b971a4f929c4830adc52bbc6f" dependencies = [ "futures", "futures-util", "serde", "serde_json", "smoldot-light", - "thiserror 2.0.17", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -17088,9 +17374,9 @@ dependencies = [ [[package]] name = "subxt-macro" -version = "0.41.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2c8da275a620dd676381d72395dfea91f0a6cd849665b4f1d0919371850701" +checksum = "c269228a2e5de4c0c61ed872b701967ee761df0f167d5b91ecec1185bca65793" dependencies = [ "darling 0.20.11", "parity-scale-codec", @@ -17098,33 +17384,34 @@ dependencies = [ "quote", "scale-typegen", "subxt-codegen", + "subxt-metadata", "subxt-utils-fetchmetadata", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "subxt-metadata" -version = "0.41.0" +version = "0.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff4591673600c4388e21305788282414d26c791b4dee21b7cb0b19c10076f98" +checksum = "2c134068711c0c46906abc0e6e4911204420331530738e18ca903a5469364d9f" 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.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ba7494d250d65dc3439365ac5e8e0fbb9c3992e6e84b7aa01d69e082249b8b8" +checksum = "25de7727144780d780a6a7d78bbfd28414b8adbab68b05e87329c367d7705be4" dependencies = [ "derive-where", - "frame-metadata 20.0.0", + "frame-metadata", "futures", "hex", "impl-serde", @@ -17135,16 +17422,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.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a2370298a210ed1df26152db7209a85e0ed8cfbce035309c3b37f7b61755377" +checksum = "9a9bd240ae819f64ac6898d7ec99a88c8b838dba2fb9d83b843feb70e77e34c8" dependencies = [ "base64", "bip32", @@ -17166,19 +17453,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.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc868b55fe2303788dc7703457af390111940c3da4714b510983284501780ed5" +checksum = "8c4fb8fd6b16ecd3537a29d70699f329a68c1e47f70ed1a46d64f76719146563" dependencies = [ "hex", "parity-scale-codec", - "thiserror 2.0.17", + "thiserror 2.0.18", ] [[package]] @@ -17194,9 +17481,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.111" +version = "2.0.114" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87" +checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a" dependencies = [ "proc-macro2", "quote", @@ -17205,14 +17492,14 @@ dependencies = [ [[package]] name = "syn-solidity" -version = "1.4.1" +version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff790eb176cc81bb8936aed0f7b9f14fc4670069a2d371b3e3b0ecce908b2cb3" +checksum = "5f92d01b5de07eaf324f7fca61cc6bd3d82bbc1de5b6c963e6fe79e86f36580d" dependencies = [ "paste", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -17235,7 +17522,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -17288,20 +17575,20 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.13.3" +version = "0.13.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c" +checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba" [[package]] name = "tempfile" -version = "3.23.0" +version = "3.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16" +checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c" dependencies = [ "fastrand", "getrandom 0.3.4", "once_cell", - "rustix 1.1.2", + "rustix 1.1.3", "windows-sys 0.61.2", ] @@ -17320,7 +17607,7 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0" dependencies = [ - "rustix 1.1.2", + "rustix 1.1.3", "windows-sys 0.60.2", ] @@ -17332,8 +17619,8 @@ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683" [[package]] name = "testnet-parachains-constants" -version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "18.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -17356,11 +17643,11 @@ dependencies = [ [[package]] name = "thiserror" -version = "2.0.17" +version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl 2.0.17", + "thiserror-impl 2.0.18", ] [[package]] @@ -17371,18 +17658,18 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[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.111", + "syn 2.0.114", ] [[package]] @@ -17411,9 +17698,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", @@ -17422,9 +17709,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", @@ -17432,30 +17719,30 @@ dependencies = [ [[package]] name = "time" -version = "0.3.44" +version = "0.3.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d" +checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5" dependencies = [ "deranged", "itoa", "num-conv", "powerfmt", - "serde", + "serde_core", "time-core", "time-macros", ] [[package]] name = "time-core" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" [[package]] name = "time-macros" -version = "0.2.24" +version = "0.2.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3" +checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4" dependencies = [ "num-conv", "time-core", @@ -17497,9 +17784,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.48.0" +version = "1.49.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408" +checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86" dependencies = [ "bytes", "libc", @@ -17507,7 +17794,7 @@ dependencies = [ "parking_lot 0.12.5", "pin-project-lite", "signal-hook-registry", - "socket2 0.6.1", + "socket2 0.6.2", "tokio-macros", "windows-sys 0.61.2", ] @@ -17520,7 +17807,7 @@ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -17535,9 +17822,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", @@ -17563,9 +17850,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.17" +version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" dependencies = [ "bytes", "futures-core", @@ -17607,9 +17894,9 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.7.3" +version = "0.7.5+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" dependencies = [ "serde_core", ] @@ -17620,7 +17907,7 @@ version = "0.22.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ - "indexmap 2.12.1", + "indexmap 2.13.0", "serde", "serde_spanned", "toml_datetime 0.6.11", @@ -17630,21 +17917,21 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.23.7" +version = "0.23.10+spec-1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6485ef6d0d9b5d0ec17244ff7eb05310113c3f316f2d14200d4de56b3cb98f8d" +checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269" dependencies = [ - "indexmap 2.12.1", - "toml_datetime 0.7.3", + "indexmap 2.13.0", + "toml_datetime 0.7.5+spec-1.1.0", "toml_parser", "winnow", ] [[package]] name = "toml_parser" -version = "1.0.4" +version = "1.0.6+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e" +checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44" dependencies = [ "winnow", ] @@ -17700,9 +17987,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.43" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", @@ -17718,14 +18005,14 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "tracing-core" -version = "0.1.35" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", "valuable", @@ -17743,8 +18030,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "23.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "coarsetime", "polkadot-primitives", @@ -17755,13 +18042,13 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "expander", "proc-macro-crate 3.4.0", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -17770,7 +18057,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", ] @@ -17852,7 +18141,7 @@ dependencies = [ "rustls", "rustls-pki-types", "sha1", - "thiserror 2.0.17", + "thiserror 2.0.18", "url", "utf-8", ] @@ -17875,6 +18164,12 @@ dependencies = [ "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.19.0" @@ -17925,9 +18220,9 @@ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" [[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", ] @@ -17996,9 +18291,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", @@ -18026,9 +18321,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" [[package]] name = "uuid" -version = "1.19.0" +version = "1.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a" +checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f" dependencies = [ "getrandom 0.3.4", "js-sys", @@ -18053,7 +18348,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225eaa083192400abfe78838e3089c539a361e0dd9b6884f61b5c6237676ec01" dependencies = [ - "ark-scale 0.0.13", + "ark-scale", "ark-serialize 0.5.0", "ark-vrf", "bounded-collections 0.1.9", @@ -18081,7 +18376,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", @@ -18182,27 +18477,27 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" [[package]] name = "wasip2" -version = "1.0.1+wasi-0.2.4" +version = "1.0.2+wasi-0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" dependencies = [ "wit-bindgen", ] [[package]] name = "wasix" -version = "0.12.21" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1fbb4ef9bbca0c1170e0b00dd28abc9e3b68669821600cad1caaed606583c6d" +checksum = "1757e0d1f8456693c7e5c6c629bdb54884e032aa0bb53c155f6a39f94440d332" dependencies = [ "wasi", ] [[package]] name = "wasm-bindgen" -version = "0.2.106" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd" +checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566" dependencies = [ "cfg-if", "once_cell", @@ -18213,11 +18508,12 @@ dependencies = [ [[package]] name = "wasm-bindgen-futures" -version = "0.4.56" +version = "0.4.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c" +checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f" dependencies = [ "cfg-if", + "futures-util", "js-sys", "once_cell", "wasm-bindgen", @@ -18226,9 +18522,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.106" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3" +checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -18236,22 +18532,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.106" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40" +checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55" dependencies = [ "bumpalo", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.106" +version = "0.2.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4" +checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12" dependencies = [ "unicode-ident", ] @@ -18263,7 +18559,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3bc393c395cb621367ff02d854179882b9a351b4e0c93d1397e6090b53a5c2a" dependencies = [ "leb128fmt", - "wasmparser", + "wasmparser 0.235.0", ] [[package]] @@ -18342,22 +18638,44 @@ dependencies = [ "num-traits", "smallvec", "spin 0.9.8", - "wasmi_collections", - "wasmi_core", + "wasmi_collections 0.32.3", + "wasmi_core 0.32.3", "wasmparser-nostd", ] +[[package]] +name = "wasmi" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a19af97fcb96045dd1d6b4d23e2b4abdbbe81723dbc5c9f016eb52145b320063" +dependencies = [ + "arrayvec 0.7.6", + "multi-stash", + "smallvec", + "spin 0.9.8", + "wasmi_collections 0.40.0", + "wasmi_core 0.40.0", + "wasmi_ir", + "wasmparser 0.221.3", +] + [[package]] name = "wasmi_collections" version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c128c039340ffd50d4195c3f8ce31aac357f06804cfc494c8b9508d4b30dca4" dependencies = [ - "ahash", + "ahash 0.8.12", "hashbrown 0.14.5", "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.32.3" @@ -18370,6 +18688,34 @@ dependencies = [ "paste", ] +[[package]] +name = "wasmi_core" +version = "0.40.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a8c51482cc32d31c2c7ff211cd2bedd73c5bd057ba16a2ed0110e7a96097c33" +dependencies = [ + "downcast-rs", + "libm", +] + +[[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.221.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d06bfa36ab3ac2be0dee563380147a5b81ba10dd8885d7fbbc9eb574be67d185" +dependencies = [ + "bitflags 2.10.0", +] + [[package]] name = "wasmparser" version = "0.235.0" @@ -18378,7 +18724,7 @@ checksum = "161296c618fa2d63f6ed5fffd1112937e803cb9ec71b32b01a76321555660917" dependencies = [ "bitflags 2.10.0", "hashbrown 0.15.5", - "indexmap 2.12.1", + "indexmap 2.13.0", "semver 1.0.27", "serde", ] @@ -18400,7 +18746,7 @@ checksum = "75aa8e9076de6b9544e6dab4badada518cca0bf4966d35b131bbd057aed8fa0a" dependencies = [ "anyhow", "termcolor", - "wasmparser", + "wasmparser 0.235.0", ] [[package]] @@ -18415,9 +18761,11 @@ dependencies = [ "bumpalo", "cc", "cfg-if", + "fxprof-processed-profile", "gimli 0.31.1", "hashbrown 0.15.5", - "indexmap 2.12.1", + "indexmap 2.13.0", + "ittapi", "libc", "log", "mach2", @@ -18427,17 +18775,19 @@ dependencies = [ "postcard", "pulley-interpreter", "rayon", - "rustix 1.1.2", + "rustix 1.1.3", "serde", "serde_derive", + "serde_json", "smallvec", "target-lexicon", - "wasmparser", + "wasmparser 0.235.0", "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", @@ -18458,7 +18808,7 @@ dependencies = [ "cranelift-bitset", "cranelift-entity", "gimli 0.31.1", - "indexmap 2.12.1", + "indexmap 2.13.0", "log", "object 0.36.7", "postcard", @@ -18468,7 +18818,7 @@ dependencies = [ "smallvec", "target-lexicon", "wasm-encoder", - "wasmparser", + "wasmparser 0.235.0", "wasmprinter", ] @@ -18492,7 +18842,7 @@ dependencies = [ "directories-next", "log", "postcard", - "rustix 1.1.2", + "rustix 1.1.3", "serde", "serde_derive", "sha2 0.10.9", @@ -18521,8 +18871,8 @@ dependencies = [ "pulley-interpreter", "smallvec", "target-lexicon", - "thiserror 2.0.17", - "wasmparser", + "thiserror 2.0.18", + "wasmparser 0.235.0", "wasmtime-environ", "wasmtime-internal-math", "wasmtime-internal-versioned-export-macros", @@ -18538,12 +18888,24 @@ dependencies = [ "cc", "cfg-if", "libc", - "rustix 1.1.2", + "rustix 1.1.3", "wasmtime-internal-asm-macros", "wasmtime-internal-versioned-export-macros", "windows-sys 0.59.0", ] +[[package]] +name = "wasmtime-internal-jit-debug" +version = "35.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61d8693995ab3df48e88777b6ee3b2f441f2c4f895ab938996cdac3db26f256c" +dependencies = [ + "cc", + "object 0.36.7", + "rustix 1.1.3", + "wasmtime-internal-versioned-export-macros", +] + [[package]] name = "wasmtime-internal-jit-icache-coherence" version = "35.0.0" @@ -18592,7 +18954,7 @@ checksum = "342b0466f92b7217a4de9e114175fedee1907028567d2548bcd42f71a8b5b016" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -18606,7 +18968,7 @@ dependencies = [ "gimli 0.31.1", "object 0.36.7", "target-lexicon", - "wasmparser", + "wasmparser 0.235.0", "wasmtime-environ", "wasmtime-internal-cranelift", "winch-codegen", @@ -18614,9 +18976,9 @@ dependencies = [ [[package]] name = "web-sys" -version = "0.3.83" +version = "0.3.85" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac" +checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598" dependencies = [ "js-sys", "wasm-bindgen", @@ -18638,14 +19000,14 @@ version = "0.26.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75c7f0ef91146ebfb530314f5f1d24528d7f0767efbfd31dce919275413e393e" dependencies = [ - "webpki-root-certs 1.0.4", + "webpki-root-certs 1.0.5", ] [[package]] name = "webpki-root-certs" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b" +checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc" dependencies = [ "rustls-pki-types", ] @@ -18658,8 +19020,8 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "westend-runtime" -version = "27.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "30.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "binary-merkle-tree", "bitvec", @@ -18766,8 +19128,8 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "polkadot-primitives", @@ -18840,8 +19202,8 @@ dependencies = [ "regalloc2 0.12.2", "smallvec", "target-lexicon", - "thiserror 2.0.17", - "wasmparser", + "thiserror 2.0.18", + "wasmparser 0.235.0", "wasmtime-environ", "wasmtime-internal-cranelift", "wasmtime-internal-math", @@ -18907,7 +19269,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -18918,7 +19280,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -19272,9 +19634,9 @@ dependencies = [ [[package]] name = "wit-bindgen" -version = "0.46.0" +version = "0.51.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" [[package]] name = "writeable" @@ -19313,7 +19675,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", @@ -19330,28 +19692,28 @@ dependencies = [ "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/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "xcm-runtime-apis" -version = "0.10.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "0.12.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "parity-scale-codec", @@ -19364,8 +19726,8 @@ dependencies = [ [[package]] name = "xcm-simulator" -version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2509-3#8e5ee34b9dde1c009a408bb84c47232683b5b390" +version = "25.0.0" +source = "git+https://github.com/paritytech/polkadot-sdk.git?tag=polkadot-stable2512#1b9a876861ac022c5d00f0a4d18b5343b0039bb5" dependencies = [ "frame-support", "frame-system", @@ -19463,28 +19825,28 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "synstructure 0.13.2", ] [[package]] name = "zerocopy" -version = "0.8.31" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3" +checksum = "71ddd76bcebeed25db614f82bf31a9f4222d3fbba300e6fb6c00afa26cbd4d9d" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.8.31" +version = "0.8.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a" +checksum = "d8187381b52e32220d50b255276aa16a084ec0a9017a0ca2152a1f55c539758d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -19504,7 +19866,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", "synstructure 0.13.2", ] @@ -19519,13 +19881,13 @@ dependencies = [ [[package]] name = "zeroize_derive" -version = "1.4.2" +version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] @@ -19558,14 +19920,20 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.111", + "syn 2.0.114", ] [[package]] name = "ziggy" -version = "1.3.5" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b52ecfe5c91ac659c7e165bcbadcfbd1320e7fec6546ede8bb9e70850e9bd503" + +[[package]] +name = "zmij" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c266f421034cff6232d7fe50370d7530fbca7a636f220ca79c3ddf12302c1a6" +checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439" [[package]] name = "zstd" diff --git a/templates/Cargo.toml b/templates/Cargo.toml index dc33fc8..7f48247 100644 --- a/templates/Cargo.toml +++ b/templates/Cargo.toml @@ -14,46 +14,48 @@ members = [ [workspace.dependencies] ziggy = {version = "1.3.1", default-features = false} -solochain-template-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -kitchensink-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } +solochain-template-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +kitchensink-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } codec = { version = "3.7.5", features = ["derive", "max-encoded-len"], default-features = false, package = "parity-scale-codec" } - -node-primitives = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } - -frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } - -sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-consensus-beefy = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -sp-authority-discovery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } - -pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-im-online = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-referenda = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-contracts = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-society = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-lottery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-remark = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-transaction-storage = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-proxy = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-broker = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-revive = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-meta-tx = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-asset-rewards = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-whitelist = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-bags-list = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } -pallet-recovery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2509-3", default-features = false } - +scale-info = { default-features = false, version = "2.11.6", features = ["std"] } +frame-metadata = { default-features = false, version = "23.0.1", features = ["current", "decode", "std"] } + +node-primitives = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } + +frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } + +sp-core = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-consensus-babe = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-consensus-beefy = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +sp-authority-discovery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } + +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-staking = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-im-online = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-referenda = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-contracts = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-society = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-lottery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-multisig = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-remark = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-transaction-storage = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-proxy = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-broker = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-revive = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-meta-tx = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-asset-rewards = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-whitelist = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-bags-list = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-recovery = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } +pallet-assets = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2512", default-features = false } diff --git a/templates/kitchensink/Cargo.toml b/templates/kitchensink/Cargo.toml index 570fe8c..ff97a6c 100644 --- a/templates/kitchensink/Cargo.toml +++ b/templates/kitchensink/Cargo.toml @@ -10,11 +10,13 @@ ziggy = { workspace = true } kitchensink-runtime = { workspace = true } codec = { workspace = true } +scale-info = { workspace = true } node-primitives = { workspace = true } frame-support = { workspace = true } frame-system = { workspace = true } +frame-metadata = { workspace = true } sp-core = { workspace = true } sp-runtime = { workspace = true } @@ -47,6 +49,7 @@ pallet-asset-rewards = { workspace = true } pallet-whitelist = { workspace = true } pallet-bags-list = { workspace = true } pallet-recovery = { workspace = true } +pallet-assets = { workspace = true } [features] default = ["std", "try-runtime"] diff --git a/templates/kitchensink/src/bin/seedgen.rs b/templates/kitchensink/src/bin/seedgen.rs new file mode 100644 index 0000000..e2fab38 --- /dev/null +++ b/templates/kitchensink/src/bin/seedgen.rs @@ -0,0 +1,127 @@ +#![warn(clippy::pedantic)] +use codec::{Decode, Encode}; +use frame_metadata::{RuntimeMetadata, RuntimeMetadataPrefixed}; +use frame_support::traits::GetCallMetadata; +use kitchensink_runtime::{Runtime, RuntimeCall}; +use scale_info::TypeDef; +use sp_state_machine::BasicExternalities; +use std::{collections::BTreeMap, fs, path::Path}; + +fn main() { + let seeds = build_seeds(); + + let out_dir = Path::new("seedgen"); + fs::create_dir_all(out_dir).expect("create seedgen dir"); + for (name, seed) in &seeds { + let path = out_dir.join(format!("{name}.seed")); + fs::write(&path, seed).expect("write seed file"); + } + + println!("wrote {} seeds to {}", seeds.len(), out_dir.display()); +} + +fn build_seeds() -> Vec<(String, Vec)> { + let mut seeds: Vec<(String, Vec)> = Vec::new(); + + let metadata = load_metadata_v14(); + let call_map = build_call_map(&metadata); + for (pallet, calls) in call_map { + let expected = + pallet_call_variant_count(&metadata, pallet.as_str()).expect("pallet call count"); + let actual = calls.len(); + println!("created {actual}/{expected} seeds for {pallet}"); + if actual != expected { + println!( + " skipped {} calls in {pallet} (unencodable with only zeroes)", + expected - actual + ); + } + + for call in calls { + let meta = call.get_call_metadata(); + let name = format!( + "{}_{}", + meta.pallet_name.to_ascii_lowercase(), + meta.function_name + ); + seeds.push((name, (0u8, 0u8, call).encode())); + } + } + + seeds +} + +fn build_call_map( + metadata: &frame_metadata::v14::RuntimeMetadataV14, +) -> BTreeMap> { + let mut map: BTreeMap> = BTreeMap::new(); + for pallet in &metadata.pallets { + let calls = pallet.calls.as_ref(); + if calls.is_none() { + continue; + } + let calls = calls.expect("checked"); + let mut runtime_calls = Vec::new(); + let call_def = metadata + .types + .resolve(calls.ty.id) + .expect("resolve pallet call type"); + let TypeDef::Variant(variants) = &call_def.type_def else { + continue; + }; + for variant in &variants.variants { + if variant.name == "__Ignore" { + continue; + } + if let Some(call) = runtime_call_from_metadata(metadata, pallet, variant) { + runtime_calls.push(call); + } + } + map.insert(pallet.name.clone(), runtime_calls); + } + map +} + +fn load_metadata_v14() -> frame_metadata::v14::RuntimeMetadataV14 { + let bytes: Vec = BasicExternalities::default().execute_with(|| Runtime::metadata().into()); + let metadata = RuntimeMetadataPrefixed::decode(&mut &bytes[..]).expect("decode metadata"); + match metadata.1 { + RuntimeMetadata::V14(m) => m, + _ => panic!("unsupported metadata version"), + } +} + +fn runtime_call_from_metadata( + metadata: &frame_metadata::v14::RuntimeMetadataV14, + pallet: &frame_metadata::v14::PalletMetadata, + variant: &scale_info::Variant, +) -> Option { + let calls = pallet.calls.as_ref()?; + let call_def = metadata.types.resolve(calls.ty.id)?; + let TypeDef::Variant(_) = &call_def.type_def else { + return None; + }; + let mut bytes = pallet.index.encode(); + bytes.extend_from_slice(&variant.index.encode()); + bytes.extend_from_slice(&[0u8; 1024]); + RuntimeCall::decode(&mut &bytes[..]).ok() +} + +fn pallet_call_variant_count( + metadata: &frame_metadata::v14::RuntimeMetadataV14, + pallet_name: &str, +) -> Option { + let pallet = metadata.pallets.iter().find(|p| p.name == pallet_name)?; + let calls = pallet.calls.as_ref()?; + let ty = metadata.types.resolve(calls.ty.id)?; + let TypeDef::Variant(variants) = &ty.type_def else { + return None; + }; + Some( + variants + .variants + .iter() + .filter(|variant| variant.name != "__Ignore") + .count(), + ) +} diff --git a/templates/kitchensink/src/main.rs b/templates/kitchensink/src/main.rs index a565127..3098497 100644 --- a/templates/kitchensink/src/main.rs +++ b/templates/kitchensink/src/main.rs @@ -314,6 +314,11 @@ fn call_filter(call: &RuntimeCall) -> bool { &call, RuntimeCall::VoterList(pallet_bags_list::Call::rebag { .. }) ) + || matches!( + &call, + RuntimeCall::Assets(pallet_assets::Call::set_reserves { .. }) + | RuntimeCall::PoolAssets(pallet_assets::Call::set_reserves { .. }) + ) } fn process_input(accounts: &[AccountId], genesis: &Storage, data: &[u8]) {