From e6c048c1f52ea47248f99bc6f4956571ad1cea84 Mon Sep 17 00:00:00 2001 From: Guantong Date: Wed, 15 Feb 2023 16:04:04 +0800 Subject: [PATCH] To `polkadot-v0.9.37` (#266) * Anchor polkadot-v0.9.37 * Companion for paritytech/substrate#12307 * Companion for paritytech/cumulus#2057 * Use prepare branch for test * Companion for paritytech/frontier#981 * Remove collator selection in bench * Fix BenchmarkHelper * Fix compile * Format * Fix compile * Fix compile feature benchmark * Fix test * Format toml * Format * Pangoro2 0.9.37 * Fix try-runtime * Fix try-runtime cmd * Format * Fix review * Use `Vec` * Typo --------- Co-authored-by: Xavier Lau --- Cargo.lock | 2214 ++++++++++++++++-------- Cargo.toml | 596 +++---- node/Cargo.toml | 2 +- node/src/command.rs | 4 + pallet/account-migration/tests/mock.rs | 1 + pallet/deposit/tests/mock.rs | 1 + pallet/message-gadget/src/lib.rs | 4 +- pallet/message-gadget/tests/tests.rs | 1 + pallet/message-transact/src/mock.rs | 1 + pallet/staking/tests/mock.rs | 1 + precompile/assets/src/mock.rs | 2 + precompile/bls12-381/src/lib.rs | 2 +- precompile/deposit/src/mock.rs | 1 + precompile/staking/src/lib.rs | 2 +- precompile/staking/src/mock.rs | 1 + precompile/state-storage/src/mock.rs | 1 + runtime/common/Cargo.toml | 6 + runtime/common/src/lib.rs | 10 + runtime/crab/Cargo.toml | 3 + runtime/crab/src/lib.rs | 5 +- runtime/crab/src/pallets/assets.rs | 3 +- runtime/crab/src/pallets/evm.rs | 1 + runtime/crab/src/pallets/proxy.rs | 4 +- runtime/darwinia/Cargo.toml | 3 + runtime/darwinia/src/lib.rs | 5 +- runtime/darwinia/src/pallets/assets.rs | 3 +- runtime/darwinia/src/pallets/evm.rs | 1 + runtime/darwinia/src/pallets/proxy.rs | 4 +- runtime/pangolin/Cargo.toml | 3 + runtime/pangolin/src/lib.rs | 5 +- runtime/pangolin/src/migration.rs | 5 +- runtime/pangolin/src/pallets/assets.rs | 3 +- runtime/pangolin/src/pallets/evm.rs | 1 + runtime/pangolin/src/pallets/proxy.rs | 4 +- runtime/pangoro/Cargo.toml | 3 + runtime/pangoro/src/lib.rs | 5 +- runtime/pangoro/src/migration.rs | 4 +- runtime/pangoro/src/pallets/assets.rs | 3 +- runtime/pangoro/src/pallets/evm.rs | 1 + runtime/pangoro/src/pallets/proxy.rs | 4 +- 40 files changed, 1865 insertions(+), 1058 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8063c4a11..361af4c6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -15,7 +15,7 @@ dependencies = [ [[package]] name = "account" version = "0.1.1" -source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.36#f5c98d5612bdb7b6311005f41fc873400d5e1481" +source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.37#3e272b5e0fad227e09880cd5a7c1c709a69f0a92" dependencies = [ "blake2-rfc", "hex", @@ -57,6 +57,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "aead" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" +dependencies = [ + "generic-array 0.14.6", +] + [[package]] name = "aead" version = "0.4.3" @@ -64,6 +73,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" dependencies = [ "generic-array 0.14.6", + "rand_core 0.6.4", +] + +[[package]] +name = "aes" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" +dependencies = [ + "aes-soft", + "aesni", + "cipher 0.2.5", ] [[package]] @@ -73,25 +94,59 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" dependencies = [ "cfg-if", - "cipher", + "cipher 0.3.0", "cpufeatures", "opaque-debug 0.3.0", ] +[[package]] +name = "aes-gcm" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" +dependencies = [ + "aead 0.3.2", + "aes 0.6.0", + "cipher 0.2.5", + "ctr 0.6.0", + "ghash 0.3.1", + "subtle", +] + [[package]] name = "aes-gcm" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "df5f85a83a7d8b0442b6aa7b504b8212c1733da07b98aae43d4bc21b2cb3cdf6" dependencies = [ - "aead", - "aes", - "cipher", - "ctr", - "ghash", + "aead 0.4.3", + "aes 0.7.5", + "cipher 0.3.0", + "ctr 0.8.0", + "ghash 0.4.4", "subtle", ] +[[package]] +name = "aes-soft" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" +dependencies = [ + "cipher 0.2.5", + "opaque-debug 0.3.0", +] + +[[package]] +name = "aesni" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" +dependencies = [ + "cipher 0.2.5", + "opaque-debug 0.3.0", +] + [[package]] name = "affix" version = "0.1.2" @@ -165,6 +220,12 @@ dependencies = [ "num-traits", ] +[[package]] +name = "arc-swap" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" + [[package]] name = "array-bytes" version = "4.2.0" @@ -205,66 +266,83 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" [[package]] -name = "asn1_der" -version = "0.7.5" +name = "asn1-rs" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" +checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33" +dependencies = [ + "asn1-rs-derive 0.1.0", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time 0.3.17", +] [[package]] -name = "assert_matches" -version = "1.5.0" +name = "asn1-rs" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" +checksum = "cf6690c370453db30743b373a60ba498fc0d6d83b11f4abfd87a84a075db5dd4" +dependencies = [ + "asn1-rs-derive 0.4.0", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time 0.3.17", +] [[package]] -name = "async-attributes" -version = "1.1.2" +name = "asn1-rs-derive" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" +checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf" dependencies = [ + "proc-macro2", "quote", "syn", + "synstructure", ] [[package]] -name = "async-channel" -version = "1.8.0" +name = "asn1-rs-derive" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" +checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" dependencies = [ - "concurrent-queue", - "event-listener", - "futures-core", + "proc-macro2", + "quote", + "syn", + "synstructure", ] [[package]] -name = "async-executor" -version = "1.5.0" +name = "asn1-rs-impl" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17adb73da160dfb475c183343c8cccd80721ea5a605d3eb57125f0a7b7a92d0b" +checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" dependencies = [ - "async-lock", - "async-task", - "concurrent-queue", - "fastrand", - "futures-lite", - "slab", + "proc-macro2", + "quote", + "syn", ] [[package]] -name = "async-global-executor" -version = "2.3.1" +name = "asn1_der" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" -dependencies = [ - "async-channel", - "async-executor", - "async-io", - "async-lock", - "blocking", - "futures-lite", - "once_cell", -] +checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" + +[[package]] +name = "assert_matches" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" [[package]] name = "async-io" @@ -296,57 +374,6 @@ dependencies = [ "futures-lite", ] -[[package]] -name = "async-process" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6381ead98388605d0d9ff86371043b5aa922a3905824244de40dc263a14fcba4" -dependencies = [ - "async-io", - "async-lock", - "autocfg", - "blocking", - "cfg-if", - "event-listener", - "futures-lite", - "libc", - "signal-hook", - "windows-sys 0.42.0", -] - -[[package]] -name = "async-std" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" -dependencies = [ - "async-attributes", - "async-channel", - "async-global-executor", - "async-io", - "async-lock", - "crossbeam-utils", - "futures-channel", - "futures-core", - "futures-io", - "futures-lite", - "gloo-timers", - "kv-log-macro", - "log", - "memchr", - "once_cell", - "pin-project-lite 0.2.9", - "pin-utils", - "slab", - "wasm-bindgen-futures", -] - -[[package]] -name = "async-task" -version = "4.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524" - [[package]] name = "async-trait" version = "0.1.64" @@ -469,20 +496,17 @@ dependencies = [ [[package]] name = "beefy-gadget" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "async-trait", "fnv", "futures", - "futures-timer", "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-chain-spec", "sc-client-api", "sc-consensus", - "sc-finality-grandpa", "sc-keystore", "sc-network", "sc-network-common", @@ -506,7 +530,7 @@ dependencies = [ [[package]] name = "beefy-gadget-rpc" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "beefy-gadget", "futures", @@ -515,7 +539,6 @@ dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", "sc-rpc", - "sc-utils", "serde", "sp-beefy", "sp-core", @@ -526,7 +549,7 @@ dependencies = [ [[package]] name = "beefy-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "sp-api", "sp-beefy", @@ -665,6 +688,16 @@ dependencies = [ "generic-array 0.14.6", ] +[[package]] +name = "block-modes" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0" +dependencies = [ + "block-padding 0.2.1", + "cipher 0.2.5", +] + [[package]] name = "block-padding" version = "0.1.5" @@ -680,20 +713,6 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" -[[package]] -name = "blocking" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c67b173a56acffd6d2326fb7ab938ba0b00a71480e14902b2591c87bc5741e8" -dependencies = [ - "async-channel", - "async-lock", - "async-task", - "atomic-waker", - "fastrand", - "futures-lite", -] - [[package]] name = "bounded-vec" version = "0.6.0" @@ -706,7 +725,7 @@ dependencies = [ [[package]] name = "bp-darwinia-core" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "account", "bp-messages", @@ -723,7 +742,7 @@ dependencies = [ [[package]] name = "bp-header-chain" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-runtime", "finality-grandpa", @@ -740,7 +759,7 @@ dependencies = [ [[package]] name = "bp-message-dispatch" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-runtime", "frame-support", @@ -753,7 +772,7 @@ dependencies = [ [[package]] name = "bp-messages" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bitvec", "bp-runtime", @@ -770,7 +789,7 @@ dependencies = [ [[package]] name = "bp-parachains" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-polkadot-core", "bp-runtime", @@ -783,7 +802,7 @@ dependencies = [ [[package]] name = "bp-polkadot-core" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-messages", "bp-runtime", @@ -802,7 +821,7 @@ dependencies = [ [[package]] name = "bp-runtime" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "frame-support", "frame-system", @@ -823,7 +842,7 @@ dependencies = [ [[package]] name = "bp-test-utils" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-header-chain", "ed25519-dalek", @@ -838,7 +857,7 @@ dependencies = [ [[package]] name = "bridge-runtime-common" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-header-chain", "bp-message-dispatch", @@ -866,7 +885,6 @@ dependencies = [ "sp-state-machine", "sp-std", "sp-trie", - "sp-version", ] [[package]] @@ -992,6 +1010,17 @@ dependencies = [ "jobserver", ] +[[package]] +name = "ccm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7" +dependencies = [ + "aead 0.3.2", + "cipher 0.2.5", + "subtle", +] + [[package]] name = "cexpr" version = "0.6.0" @@ -1029,7 +1058,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" dependencies = [ "cfg-if", - "cipher", + "cipher 0.3.0", "cpufeatures", "zeroize", ] @@ -1040,9 +1069,9 @@ version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5" dependencies = [ - "aead", + "aead 0.4.3", "chacha20", - "cipher", + "cipher 0.3.0", "poly1305", "zeroize", ] @@ -1057,7 +1086,7 @@ dependencies = [ "js-sys", "num-integer", "num-traits", - "time", + "time 0.1.45", "wasm-bindgen", "winapi", ] @@ -1075,6 +1104,15 @@ dependencies = [ "unsigned-varint", ] +[[package]] +name = "cipher" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" +dependencies = [ + "generic-array 0.14.6", +] + [[package]] name = "cipher" version = "0.3.0" @@ -1278,6 +1316,12 @@ dependencies = [ "libc", ] +[[package]] +name = "cpuid-bool" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" + [[package]] name = "crab-runtime" version = "6.0.0" @@ -1479,6 +1523,21 @@ dependencies = [ "wasmtime-types", ] +[[package]] +name = "crc" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" + [[package]] name = "crc32fast" version = "1.3.2" @@ -1579,6 +1638,16 @@ dependencies = [ "subtle", ] +[[package]] +name = "crypto-mac" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" +dependencies = [ + "generic-array 0.14.6", + "subtle", +] + [[package]] name = "crypto-mac" version = "0.11.1" @@ -1590,13 +1659,12 @@ dependencies = [ ] [[package]] -name = "ctor" -version = "0.1.26" +name = "ctr" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" +checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" dependencies = [ - "quote", - "syn", + "cipher 0.2.5", ] [[package]] @@ -1605,13 +1673,13 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "049bb91fb4aaf0e3c7efa6cd5ef877dbbbd15b39dad06d9948de4ec8a75761ea" dependencies = [ - "cipher", + "cipher 0.3.0", ] [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "clap", "parity-scale-codec", @@ -1626,7 +1694,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -1649,7 +1717,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -1678,7 +1746,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -1701,7 +1769,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -1724,7 +1792,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "cumulus-relay-chain-interface", @@ -1747,7 +1815,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -1775,7 +1843,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "frame-support", "frame-system", @@ -1791,7 +1859,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1808,7 +1876,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -1836,7 +1904,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -1847,7 +1915,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "frame-benchmarking", "frame-support", @@ -1861,7 +1929,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1877,7 +1945,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -1896,7 +1964,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -1911,7 +1979,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1934,7 +2002,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "futures", @@ -1947,7 +2015,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -1963,7 +2031,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -1988,7 +2056,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2008,7 +2076,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "array-bytes 6.0.0", "async-trait", @@ -2048,7 +2116,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2077,7 +2145,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2171,6 +2239,41 @@ dependencies = [ "syn", ] +[[package]] +name = "darling" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0808e1bd8671fb44a113a14e13497557533369847788fa2ae912b6ebfce9fa8" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "001d80444f28e193f30c2f293455da62dcf9a6b29918a4253152ae2b1de592cb" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn", +] + +[[package]] +name = "darling_macro" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b36230598a2d5de7ec1c6f51f72d8a99a9208daff41de2084d06e3fd3ea56685" +dependencies = [ + "darling_core", + "quote", + "syn", +] + [[package]] name = "darwinia" version = "6.0.0" @@ -2286,6 +2389,7 @@ dependencies = [ "dc-primitives", "frame-support", "frame-system", + "pallet-assets", "pallet-balances", "pallet-collective", "pallet-treasury", @@ -2669,9 +2773,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" dependencies = [ "const-oid", + "pem-rfc7468", "zeroize", ] +[[package]] +name = "der-parser" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82" +dependencies = [ + "asn1-rs 0.3.1", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "der-parser" +version = "8.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d4bc9b0db0a0df9ae64634ac5bdefb7afcb534e182275ca0beadbe486701c1" +dependencies = [ + "asn1-rs 0.5.1", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + [[package]] name = "derivative" version = "2.2.0" @@ -2695,24 +2828,55 @@ dependencies = [ ] [[package]] -name = "derive_more" -version = "0.99.17" +name = "derive_builder" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3" dependencies = [ - "convert_case 0.4.0", + "derive_builder_macro", +] + +[[package]] +name = "derive_builder_core" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" +dependencies = [ + "darling", "proc-macro2", "quote", - "rustc_version", "syn", ] [[package]] -name = "difflib" -version = "0.4.0" +name = "derive_builder_macro" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" - +checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" +dependencies = [ + "derive_builder_core", + "syn", +] + +[[package]] +name = "derive_more" +version = "0.99.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" +dependencies = [ + "convert_case 0.4.0", + "proc-macro2", + "quote", + "rustc_version", + "syn", +] + +[[package]] +name = "difflib" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8" + [[package]] name = "digest" version = "0.8.1" @@ -2784,13 +2948,14 @@ dependencies = [ ] [[package]] -name = "dns-parser" -version = "0.8.0" +name = "displaydoc" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4d33be9473d06f75f58220f71f7a9317aca647dc061dbd3c361b0bef505fbea" +checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886" dependencies = [ - "byteorder", - "quick-error", + "proc-macro2", + "quote", + "syn", ] [[package]] @@ -2906,6 +3071,9 @@ dependencies = [ "ff", "generic-array 0.14.6", "group", + "hkdf", + "pem-rfc7468", + "pkcs8", "rand_core 0.6.4", "sec1", "subtle", @@ -3259,7 +3427,7 @@ dependencies = [ [[package]] name = "fc-cli" version = "1.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "clap", "ethereum-types 0.14.1", @@ -3267,7 +3435,6 @@ dependencies = [ "fp-rpc", "fp-storage", "sc-cli", - "sc-service", "serde", "serde_json", "sp-api", @@ -3278,7 +3445,7 @@ dependencies = [ [[package]] name = "fc-consensus" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "async-trait", "fc-db", @@ -3297,7 +3464,7 @@ dependencies = [ [[package]] name = "fc-db" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-storage", "kvdb-rocksdb", @@ -3316,7 +3483,7 @@ dependencies = [ [[package]] name = "fc-mapping-sync" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fc-db", "fp-consensus", @@ -3333,7 +3500,7 @@ dependencies = [ [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -3341,7 +3508,6 @@ dependencies = [ "fc-db", "fc-rpc-core", "fp-ethereum", - "fp-evm", "fp-rpc", "fp-storage", "futures", @@ -3376,12 +3542,11 @@ dependencies = [ [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "ethereum-types 0.14.1", "jsonrpsee", - "rlp", "rustc-hex", "serde", "serde_json", @@ -3509,7 +3674,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", ] @@ -3526,7 +3691,7 @@ dependencies = [ [[package]] name = "fp-consensus" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "parity-scale-codec", @@ -3538,7 +3703,7 @@ dependencies = [ [[package]] name = "fp-ethereum" version = "1.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -3546,14 +3711,13 @@ dependencies = [ "frame-support", "num_enum", "parity-scale-codec", - "sp-core", "sp-std", ] [[package]] name = "fp-evm" version = "3.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "evm", "frame-support", @@ -3566,7 +3730,7 @@ dependencies = [ [[package]] name = "fp-rpc" version = "3.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -3575,7 +3739,6 @@ dependencies = [ "scale-info", "sp-api", "sp-core", - "sp-io", "sp-runtime", "sp-std", ] @@ -3583,9 +3746,8 @@ dependencies = [ [[package]] name = "fp-self-contained" version = "1.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ - "ethereum", "frame-support", "parity-scale-codec", "scale-info", @@ -3596,7 +3758,7 @@ dependencies = [ [[package]] name = "fp-storage" version = "2.0.0" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "parity-scale-codec", "serde", @@ -3611,7 +3773,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -3634,7 +3796,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "Inflector", "array-bytes 4.2.0", @@ -3646,16 +3808,13 @@ dependencies = [ "frame-system", "gethostname", "handlebars", - "hash-db", "itertools", - "kvdb", "lazy_static", "linked-hash-map", "log", - "memory-db", "parity-scale-codec", "rand 0.8.5", - "rand_pcg 0.3.1", + "rand_pcg", "sc-block-builder", "sc-cli", "sc-client-api", @@ -3665,7 +3824,6 @@ dependencies = [ "sc-sysinfo", "serde", "serde_json", - "serde_nanos", "sp-api", "sp-blockchain", "sp-core", @@ -3678,7 +3836,6 @@ dependencies = [ "sp-std", "sp-storage", "sp-trie", - "tempfile", "thiserror", "thousands", ] @@ -3686,7 +3843,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3697,7 +3854,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3714,7 +3871,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -3743,18 +3900,15 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "env_logger 0.9.3", "futures", "log", "parity-scale-codec", "serde", - "serde_json", "sp-core", "sp-io", "sp-runtime", - "sp-version", "substrate-rpc-client", "tokio", ] @@ -3762,7 +3916,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "bitflags", "frame-metadata", @@ -3795,7 +3949,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "Inflector", "cfg-expr", @@ -3810,7 +3964,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3822,7 +3976,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro2", "quote", @@ -3832,7 +3986,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "log", @@ -3850,7 +4004,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -3865,7 +4019,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "sp-api", @@ -3874,7 +4028,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "parity-scale-codec", @@ -3993,8 +4147,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd" dependencies = [ "futures-io", - "rustls", - "webpki", + "rustls 0.20.8", + "webpki 0.22.0", ] [[package]] @@ -4078,10 +4232,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ "cfg-if", - "js-sys", "libc", "wasi 0.9.0+wasi-snapshot-preview1", - "wasm-bindgen", ] [[package]] @@ -4095,6 +4247,16 @@ dependencies = [ "wasi 0.11.0+wasi-snapshot-preview1", ] +[[package]] +name = "ghash" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" +dependencies = [ + "opaque-debug 0.3.0", + "polyval 0.4.5", +] + [[package]] name = "ghash" version = "0.4.4" @@ -4102,7 +4264,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" dependencies = [ "opaque-debug 0.3.0", - "polyval", + "polyval 0.5.3", ] [[package]] @@ -4141,18 +4303,6 @@ dependencies = [ "regex", ] -[[package]] -name = "gloo-timers" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" -dependencies = [ - "futures-channel", - "futures-core", - "js-sys", - "wasm-bindgen", -] - [[package]] name = "group" version = "0.12.1" @@ -4257,6 +4407,15 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" +[[package]] +name = "hkdf" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" +dependencies = [ + "hmac 0.12.1", +] + [[package]] name = "hmac" version = "0.8.1" @@ -4267,6 +4426,16 @@ dependencies = [ "digest 0.9.0", ] +[[package]] +name = "hmac" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" +dependencies = [ + "crypto-mac 0.10.1", + "digest 0.9.0", +] + [[package]] name = "hmac" version = "0.11.0" @@ -4396,7 +4565,7 @@ dependencies = [ "http", "hyper", "log", - "rustls", + "rustls 0.20.8", "rustls-native-certs", "tokio", "tokio-rustls", @@ -4426,6 +4595,12 @@ dependencies = [ "cxx-build", ] +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + [[package]] name = "idna" version = "0.2.3" @@ -4459,9 +4634,9 @@ dependencies = [ [[package]] name = "if-watch" -version = "2.0.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "065c008e570a43c00de6aed9714035e5ea6a498c255323db9091722af6ee67dd" +checksum = "ba7abdbb86e485125dad06c2691e1e393bf3b08c7b743b43aa162a00fd39062e" dependencies = [ "async-io", "core-foundation", @@ -4472,6 +4647,7 @@ dependencies = [ "log", "rtnetlink", "system-configuration", + "tokio", "windows", ] @@ -4557,6 +4733,25 @@ dependencies = [ "num-traits", ] +[[package]] +name = "interceptor" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b" +dependencies = [ + "async-trait", + "bytes", + "log", + "rand 0.8.5", + "rtcp", + "rtp", + "thiserror", + "tokio", + "waitgroup", + "webrtc-srtp", + "webrtc-util", +] + [[package]] name = "io-lifetimes" version = "0.7.5" @@ -4789,8 +4984,8 @@ dependencies = [ [[package]] name = "kusama-runtime" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "frame-benchmarking", @@ -4886,8 +5081,8 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "polkadot-primitives", @@ -4898,15 +5093,6 @@ dependencies = [ "sp-weights", ] -[[package]] -name = "kv-log-macro" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" -dependencies = [ - "log", -] - [[package]] name = "kvdb" version = "0.13.0" @@ -4985,16 +5171,15 @@ checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb" [[package]] name = "libp2p" -version = "0.49.0" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec878fda12ebec479186b3914ebc48ff180fa4c51847e11a1a68bf65249e02c1" +checksum = "2e0a0d2f693675f49ded13c5d510c48b78069e23cbd9108d7ccd59f6dc568819" dependencies = [ "bytes", "futures", "futures-timer", "getrandom 0.2.8", "instant", - "lazy_static", "libp2p-core", "libp2p-dns", "libp2p-identify", @@ -5004,11 +5189,12 @@ dependencies = [ "libp2p-mplex", "libp2p-noise", "libp2p-ping", + "libp2p-quic", "libp2p-request-response", "libp2p-swarm", - "libp2p-swarm-derive", "libp2p-tcp", "libp2p-wasm-ext", + "libp2p-webrtc", "libp2p-websocket", "libp2p-yamux", "multiaddr", @@ -5019,9 +5205,9 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "799676bb0807c788065e57551c6527d461ad572162b0519d1958946ff9e0539d" +checksum = "b6a8fcd392ff67af6cc3f03b1426c41f7f26b6b9aff2dc632c1c56dd649e571f" dependencies = [ "asn1_der", "bs58", @@ -5031,17 +5217,18 @@ dependencies = [ "futures", "futures-timer", "instant", - "lazy_static", "log", "multiaddr", "multihash", "multistream-select", + "once_cell", "parking_lot 0.12.1", "pin-project", "prost", "prost-build", "rand 0.8.5", "rw-stream-sink", + "sec1", "sha2 0.10.6", "smallvec", "thiserror", @@ -5052,9 +5239,9 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2322c9fb40d99101def6a01612ee30500c89abbbecb6297b3cd252903a4c1720" +checksum = "8e42a271c1b49f789b92f7fc87749fa79ce5c7bdc88cbdfacb818a4bca47fec5" dependencies = [ "futures", "libp2p-core", @@ -5066,9 +5253,9 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.40.0" +version = "0.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcf9a121f699e8719bda2e6e9e9b6ddafc6cff4602471d6481c1067930ccb29b" +checksum = "c052d0026f4817b44869bfb6810f4e1112f43aec8553f2cb38881c524b563abf" dependencies = [ "asynchronous-codec", "futures", @@ -5087,9 +5274,9 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.41.0" +version = "0.42.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6721c200e2021f6c3fab8b6cf0272ead8912d871610ee194ebd628cecf428f22" +checksum = "2766dcd2be8c87d5e1f35487deb22d765f49c6ae1251b3633efe3b25698bd3d2" dependencies = [ "arrayvec 0.7.2", "asynchronous-codec", @@ -5115,12 +5302,11 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "761704e727f7d68d58d7bc2231eafae5fc1b9814de24290f126df09d4bd37a15" +checksum = "04f378264aade9872d6ccd315c0accc18be3a35d15fc1b9c36e5b6f983b62b5b" dependencies = [ "data-encoding", - "dns-parser", "futures", "if-watch", "libp2p-core", @@ -5130,14 +5316,15 @@ dependencies = [ "smallvec", "socket2", "tokio", + "trust-dns-proto", "void", ] [[package]] name = "libp2p-metrics" -version = "0.10.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ee31b08e78b7b8bfd1c4204a9dd8a87b4fcdf6dafc57eb51701c1c264a81cb9" +checksum = "5ad8a64f29da86005c86a4d2728b8a0719e9b192f4092b609fd8790acb9dec55" dependencies = [ "libp2p-core", "libp2p-identify", @@ -5149,9 +5336,9 @@ dependencies = [ [[package]] name = "libp2p-mplex" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "692664acfd98652de739a8acbb0a0d670f1d67190a49be6b4395e22c37337d89" +checksum = "03805b44107aa013e7cbbfa5627b31c36cbedfdfb00603c0311998882bc4bace" dependencies = [ "asynchronous-codec", "bytes", @@ -5167,31 +5354,32 @@ dependencies = [ [[package]] name = "libp2p-noise" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "048155686bd81fe6cb5efdef0c6290f25ad32a0a42e8f4f72625cf6a505a206f" +checksum = "a978cb57efe82e892ec6f348a536bfbd9fee677adbe5689d7a93ad3a9bffbf2e" dependencies = [ "bytes", "curve25519-dalek 3.2.0", "futures", - "lazy_static", "libp2p-core", "log", + "once_cell", "prost", "prost-build", "rand 0.8.5", "sha2 0.10.6", "snow", "static_assertions", - "x25519-dalek", + "thiserror", + "x25519-dalek 1.1.1", "zeroize", ] [[package]] name = "libp2p-ping" -version = "0.40.1" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7228b9318d34689521349a86eb39a3c3a802c9efc99a0568062ffb80913e3f91" +checksum = "929fcace45a112536e22b3dcfd4db538723ef9c3cb79f672b98be2cc8e25f37f" dependencies = [ "futures", "futures-timer", @@ -5203,11 +5391,32 @@ dependencies = [ "void", ] +[[package]] +name = "libp2p-quic" +version = "0.7.0-alpha" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01e7c867e95c8130667b24409d236d37598270e6da69b3baf54213ba31ffca59" +dependencies = [ + "bytes", + "futures", + "futures-timer", + "if-watch", + "libp2p-core", + "libp2p-tls", + "log", + "parking_lot 0.12.1", + "quinn-proto", + "rand 0.8.5", + "rustls 0.20.8", + "thiserror", + "tokio", +] + [[package]] name = "libp2p-request-response" -version = "0.22.1" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8827af16a017b65311a410bb626205a9ad92ec0473967618425039fa5231adc1" +checksum = "3236168796727bfcf4927f766393415361e2c644b08bedb6a6b13d957c9a4884" dependencies = [ "async-trait", "bytes", @@ -5223,9 +5432,9 @@ dependencies = [ [[package]] name = "libp2p-swarm" -version = "0.40.1" +version = "0.41.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46d13df7c37807965d82930c0e4b04a659efcb6cca237373b206043db5398ecf" +checksum = "b2a35472fe3276b3855c00f1c032ea8413615e030256429ad5349cdf67c6e1a0" dependencies = [ "either", "fnv", @@ -5233,19 +5442,21 @@ dependencies = [ "futures-timer", "instant", "libp2p-core", + "libp2p-swarm-derive", "log", "pin-project", "rand 0.8.5", "smallvec", "thiserror", + "tokio", "void", ] [[package]] name = "libp2p-swarm-derive" -version = "0.30.1" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0eddc4497a8b5a506013c40e8189864f9c3a00db2b25671f428ae9007f3ba32" +checksum = "9d527d5827582abd44a6d80c07ff8b50b4ee238a8979e05998474179e79dc400" dependencies = [ "heck", "quote", @@ -5254,9 +5465,9 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9839d96761491c6d3e238e70554b856956fca0ab60feb9de2cd08eed4473fa92" +checksum = "b4b257baf6df8f2df39678b86c578961d48cc8b68642a12f0f763f56c8e5858d" dependencies = [ "futures", "futures-timer", @@ -5268,11 +5479,29 @@ dependencies = [ "tokio", ] +[[package]] +name = "libp2p-tls" +version = "0.1.0-alpha" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7905ce0d040576634e8a3229a7587cc8beab83f79db6023800f1792895defa8" +dependencies = [ + "futures", + "futures-rustls", + "libp2p-core", + "rcgen 0.10.0", + "ring", + "rustls 0.20.8", + "thiserror", + "webpki 0.22.0", + "x509-parser 0.14.0", + "yasna", +] + [[package]] name = "libp2p-wasm-ext" -version = "0.37.0" +version = "0.38.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17b5b8e7a73e379e47b1b77f8a82c4721e97eca01abcd18e9cd91a23ca6ce97" +checksum = "1bb1a35299860e0d4b3c02a3e74e3b293ad35ae0cee8a056363b0c862d082069" dependencies = [ "futures", "js-sys", @@ -5282,11 +5511,42 @@ dependencies = [ "wasm-bindgen-futures", ] +[[package]] +name = "libp2p-webrtc" +version = "0.4.0-alpha" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb6cd86dd68cba72308ea05de1cebf3ba0ae6e187c40548167955d4e3970f6a" +dependencies = [ + "async-trait", + "asynchronous-codec", + "bytes", + "futures", + "futures-timer", + "hex", + "if-watch", + "libp2p-core", + "libp2p-noise", + "log", + "multihash", + "prost", + "prost-build", + "prost-codec", + "rand 0.8.5", + "rcgen 0.9.3", + "serde", + "stun", + "thiserror", + "tinytemplate", + "tokio", + "tokio-util", + "webrtc", +] + [[package]] name = "libp2p-websocket" -version = "0.39.0" +version = "0.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3758ae6f89b2531a24b6d9f5776bda6a626b60a57600d7185d43dfa75ca5ecc4" +checksum = "1d705506030d5c0aaf2882437c70dab437605f21c5f9811978f694e6917a3b54" dependencies = [ "either", "futures", @@ -5303,9 +5563,9 @@ dependencies = [ [[package]] name = "libp2p-yamux" -version = "0.41.1" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d6874d66543c4f7e26e3b8ca9a6bead351563a13ab4fafd43c7927f7c0d6c12" +checksum = "4f63594a0aa818642d9d4915c791945053877253f08a3626f13416b5cd928a29" dependencies = [ "futures", "libp2p-core", @@ -5452,7 +5712,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" dependencies = [ "cfg-if", - "value-bag", ] [[package]] @@ -5532,6 +5791,15 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "md-5" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca" +dependencies = [ + "digest 0.10.6", +] + [[package]] name = "memchr" version = "2.5.0" @@ -5653,7 +5921,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "log", @@ -5665,7 +5933,6 @@ dependencies = [ "sp-blockchain", "sp-consensus", "sp-core", - "sp-io", "sp-mmr-primitives", "sp-runtime", ] @@ -5673,7 +5940,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "anyhow", "jsonrpsee", @@ -5715,14 +5982,14 @@ dependencies = [ [[package]] name = "multiaddr" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c580bfdd8803cce319b047d239559a22f809094aaea4ac13902a1fdcfcd4261" +checksum = "a4aebdb21e90f81d13ed01dc84123320838e53963c2ca94b60b305d3fa64f31e" dependencies = [ "arrayref", - "bs58", "byteorder", "data-encoding", + "multibase", "multihash", "percent-encoding", "serde", @@ -5896,11 +6163,11 @@ version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "260e21fbb6f3d253a14df90eb0000a6066780a15dd901a7519ce02d77a94985b" dependencies = [ - "async-io", "bytes", "futures", "libc", "log", + "tokio", ] [[package]] @@ -5912,6 +6179,7 @@ dependencies = [ "bitflags", "cfg-if", "libc", + "memoffset 0.6.5", ] [[package]] @@ -6090,6 +6358,24 @@ dependencies = [ "memchr", ] +[[package]] +name = "oid-registry" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a" +dependencies = [ + "asn1-rs 0.3.1", +] + +[[package]] +name = "oid-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" +dependencies = [ + "asn1-rs 0.5.1", +] + [[package]] name = "once_cell" version = "1.17.0" @@ -6116,9 +6402,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "orchestra" -version = "0.0.2" +version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aab54694ddaa8a9b703724c6ef04272b2d27bc32d2c855aae5cdd1857216b43" +checksum = "17e7d5b6bb115db09390bed8842c94180893dd83df3dfce7354f2a2aa090a4ee" dependencies = [ "async-trait", "dyn-clonable", @@ -6133,9 +6419,9 @@ dependencies = [ [[package]] name = "orchestra-proc-macro" -version = "0.0.2" +version = "0.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a702b2f6bf592b3eb06c00d80d05afaf7a8eff6b41bb361e397d799acc21b45a" +checksum = "c2af4dabb2286b0be0e9711d2d24e25f6217048b71210cffd3daddc3b5c84e1f" dependencies = [ "expander 0.0.6", "itertools", @@ -6158,7 +6444,7 @@ dependencies = [ [[package]] name = "orml-traits" version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.36#db0381f6363e0c8e781082b6f552c092b688fb1c" +source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -6175,7 +6461,7 @@ dependencies = [ [[package]] name = "orml-utilities" version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.36#db0381f6363e0c8e781082b6f552c092b688fb1c" +source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.37#16b6c1149a15674d21c87244b7988a667e2c14d9" dependencies = [ "frame-support", "parity-scale-codec", @@ -6191,6 +6477,28 @@ version = "6.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" +[[package]] +name = "p256" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" +dependencies = [ + "ecdsa", + "elliptic-curve", + "sha2 0.10.6", +] + +[[package]] +name = "p384" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" +dependencies = [ + "ecdsa", + "elliptic-curve", + "sha2 0.10.6", +] + [[package]] name = "packed_simd_2" version = "0.3.8" @@ -6204,7 +6512,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6219,7 +6527,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6235,7 +6543,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6251,7 +6559,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6266,7 +6574,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6290,7 +6598,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6310,7 +6618,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6325,7 +6633,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6341,7 +6649,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "beefy-merkle-tree", @@ -6364,7 +6672,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6382,7 +6690,7 @@ dependencies = [ [[package]] name = "pallet-bridge-dispatch" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-message-dispatch", "bp-runtime", @@ -6398,7 +6706,7 @@ dependencies = [ [[package]] name = "pallet-bridge-grandpa" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-header-chain", "bp-runtime", @@ -6420,7 +6728,7 @@ dependencies = [ [[package]] name = "pallet-bridge-messages" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bitvec", "bp-message-dispatch", @@ -6441,7 +6749,7 @@ dependencies = [ [[package]] name = "pallet-bridge-parachains" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-parachains", "bp-polkadot-core", @@ -6462,7 +6770,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6481,7 +6789,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6498,7 +6806,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -6515,7 +6823,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6533,7 +6841,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6542,7 +6850,7 @@ dependencies = [ "log", "pallet-election-provider-support-benchmarking", "parity-scale-codec", - "rand 0.7.3", + "rand 0.8.5", "scale-info", "sp-arithmetic", "sp-core", @@ -6550,14 +6858,13 @@ dependencies = [ "sp-npos-elections", "sp-runtime", "sp-std", - "static_assertions", "strum", ] [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6570,7 +6877,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6588,7 +6895,7 @@ dependencies = [ [[package]] name = "pallet-ethereum" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -6606,7 +6913,6 @@ dependencies = [ "parity-scale-codec", "rlp", "scale-info", - "serde", "sp-io", "sp-runtime", "sp-std", @@ -6615,7 +6921,7 @@ dependencies = [ [[package]] name = "pallet-evm" version = "6.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "environmental", "evm", @@ -6624,13 +6930,12 @@ dependencies = [ "frame-support", "frame-system", "hex", + "impl-trait-for-tuples", "log", "pallet-timestamp", "parity-scale-codec", - "primitive-types 0.12.1", "rlp", "scale-info", - "serde", "sp-core", "sp-io", "sp-runtime", @@ -6640,7 +6945,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-blake2" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-evm", ] @@ -6648,7 +6953,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-bn128" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-evm", "sp-core", @@ -6658,7 +6963,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-dispatch" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-evm", "frame-support", @@ -6668,7 +6973,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-modexp" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-evm", "num", @@ -6677,7 +6982,7 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-simple" version = "2.0.0-dev" -source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.36#63309df8e9a4b19ab4ceb2fd1a37f7968c111de9" +source = "git+https://github.com/darwinia-network/frontier?branch=polkadot-v0.9.37#6783dcd10ffcdb06a52793e0ffb793161881a5f2" dependencies = [ "fp-evm", "ripemd", @@ -6687,7 +6992,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6705,7 +7010,7 @@ dependencies = [ [[package]] name = "pallet-fee-market" version = "0.1.0" -source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.36#3cb281ddcd5a85b15da08bc2380f130d69ea2279" +source = "git+https://github.com/darwinia-network/darwinia-messages-substrate?branch=polkadot-v0.9.37#1092b5c91cb64c508dc581bfa2e58f0801970d32" dependencies = [ "bp-messages", "bp-runtime", @@ -6724,7 +7029,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6747,7 +7052,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -6763,7 +7068,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6783,7 +7088,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6800,7 +7105,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6817,7 +7122,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6834,7 +7139,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6850,7 +7155,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6866,7 +7171,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6883,7 +7188,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6903,7 +7208,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "sp-api", @@ -6913,7 +7218,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -6930,7 +7235,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -6953,7 +7258,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6970,7 +7275,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -6985,7 +7290,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7003,7 +7308,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7018,7 +7323,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7037,7 +7342,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7054,7 +7359,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -7075,14 +7380,14 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", "frame-system", "pallet-session", "pallet-staking", - "rand 0.7.3", + "rand 0.8.5", "sp-runtime", "sp-session", "sp-std", @@ -7091,7 +7396,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -7105,7 +7410,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7128,7 +7433,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -7139,7 +7444,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "log", "sp-arithmetic", @@ -7148,7 +7453,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7165,7 +7470,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -7179,7 +7484,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7197,7 +7502,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7216,7 +7521,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-support", "frame-system", @@ -7232,7 +7537,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -7248,7 +7553,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7260,7 +7565,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7277,7 +7582,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7293,7 +7598,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7308,7 +7613,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7322,8 +7627,8 @@ dependencies = [ [[package]] name = "pallet-xcm" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "frame-system", @@ -7340,8 +7645,8 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-benchmarking", "frame-support", @@ -7564,7 +7869,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.36#afe528af891f464b318293f183f6d3eefbc979b0" +source = "git+https://github.com/paritytech/cumulus.git?branch=polkadot-v0.9.37#09418fc04c2608b123f36ca80f16df3d2096753b" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -7693,20 +7998,20 @@ checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba" [[package]] name = "pbkdf2" -version = "0.4.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "216eaa586a190f0a738f2f918511eecfa90f13295abec0e457cdebcceda80cbd" +checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" dependencies = [ - "crypto-mac 0.8.0", + "crypto-mac 0.11.1", ] [[package]] name = "pbkdf2" -version = "0.8.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d95f5254224e617595d2cc3cc73ff0a5eaf2637519e25f03388154e9378b6ffa" +checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" dependencies = [ - "crypto-mac 0.11.1", + "digest 0.10.6", ] [[package]] @@ -7716,11 +8021,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" [[package]] -name = "percent-encoding" -version = "2.2.0" +name = "pem" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" - +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "pem-rfc7468" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" + [[package]] name = "pest" version = "2.5.4" @@ -7843,14 +8166,14 @@ checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" [[package]] name = "polkadot-approval-distribution" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", + "polkadot-node-metrics", "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-node-subsystem-util", "polkadot-primitives", "rand 0.8.5", "tracing-gum", @@ -7858,8 +8181,8 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "polkadot-node-network-protocol", @@ -7872,8 +8195,8 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "derive_more", "fatality", @@ -7895,8 +8218,8 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "fatality", "futures", @@ -7916,8 +8239,8 @@ dependencies = [ [[package]] name = "polkadot-cli" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "clap", "frame-benchmarking-cli", @@ -7943,8 +8266,8 @@ dependencies = [ [[package]] name = "polkadot-client" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "frame-benchmarking", @@ -7987,8 +8310,8 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "always-assert", "bitvec", @@ -8009,8 +8332,8 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "parity-scale-codec", "scale-info", @@ -8021,8 +8344,8 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "derive_more", "fatality", @@ -8046,8 +8369,8 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8060,8 +8383,8 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "futures-timer", @@ -8080,8 +8403,8 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "always-assert", "async-trait", @@ -8090,9 +8413,9 @@ dependencies = [ "futures", "parity-scale-codec", "parking_lot 0.12.1", + "polkadot-node-metrics", "polkadot-node-network-protocol", "polkadot-node-subsystem", - "polkadot-node-subsystem-util", "polkadot-overseer", "polkadot-primitives", "sc-network", @@ -8104,8 +8427,8 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "parity-scale-codec", @@ -8122,8 +8445,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "derive_more", @@ -8151,8 +8474,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "futures", @@ -8171,8 +8494,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "fatality", @@ -8190,8 +8513,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "polkadot-node-subsystem", @@ -8205,17 +8528,17 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "futures", "futures-timer", "parity-scale-codec", "polkadot-node-core-pvf", + "polkadot-node-metrics", "polkadot-node-primitives", "polkadot-node-subsystem", - "polkadot-node-subsystem-util", "polkadot-parachain", "polkadot-primitives", "sp-maybe-compressed-blob", @@ -8224,12 +8547,12 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", + "polkadot-node-metrics", "polkadot-node-subsystem", - "polkadot-node-subsystem-util", "polkadot-primitives", "sc-client-api", "sc-consensus-babe", @@ -8239,8 +8562,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "futures-timer", @@ -8256,8 +8579,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "fatality", "futures", @@ -8275,8 +8598,8 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "futures", @@ -8286,15 +8609,14 @@ dependencies = [ "polkadot-primitives", "sp-blockchain", "sp-inherents", - "sp-runtime", "thiserror", "tracing-gum", ] [[package]] name = "polkadot-node-core-provisioner" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "fatality", @@ -8311,13 +8633,11 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "always-assert", "assert_matches", - "async-process", - "async-std", "cpu-time", "futures", "futures-timer", @@ -8339,13 +8659,14 @@ dependencies = [ "sp-tracing", "sp-wasm-interface", "tempfile", + "tokio", "tracing-gum", ] [[package]] name = "polkadot-node-core-pvf-checker" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "polkadot-node-primitives", @@ -8360,14 +8681,14 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "futures", "lru", + "polkadot-node-metrics", "polkadot-node-subsystem", "polkadot-node-subsystem-types", - "polkadot-node-subsystem-util", "polkadot-primitives", "sp-consensus-babe", "tracing-gum", @@ -8375,8 +8696,8 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "lazy_static", "log", @@ -8393,8 +8714,8 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bs58", "futures", @@ -8412,8 +8733,8 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "derive_more", @@ -8435,8 +8756,8 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bounded-vec", "futures", @@ -8457,8 +8778,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -8467,8 +8788,8 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "derive_more", @@ -8490,13 +8811,14 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "derive_more", "fatality", "futures", + "futures-channel", "itertools", "kvdb", "lru", @@ -8522,8 +8844,8 @@ dependencies = [ [[package]] name = "polkadot-overseer" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "futures", @@ -8545,8 +8867,8 @@ dependencies = [ [[package]] name = "polkadot-parachain" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "derive_more", "frame-support", @@ -8561,8 +8883,8 @@ dependencies = [ [[package]] name = "polkadot-performance-test" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "env_logger 0.9.3", "kusama-runtime", @@ -8576,8 +8898,8 @@ dependencies = [ [[package]] name = "polkadot-primitives" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "hex-literal", @@ -8602,8 +8924,8 @@ dependencies = [ [[package]] name = "polkadot-rpc" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "beefy-gadget", "beefy-gadget-rpc", @@ -8634,8 +8956,8 @@ dependencies = [ [[package]] name = "polkadot-runtime" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "frame-benchmarking", @@ -8723,8 +9045,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "frame-benchmarking", @@ -8771,8 +9093,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "polkadot-primitives", @@ -8785,8 +9107,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bs58", "parity-scale-codec", @@ -8797,8 +9119,8 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitflags", "bitvec", @@ -8840,8 +9162,8 @@ dependencies = [ [[package]] name = "polkadot-service" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "async-trait", "beefy-gadget", @@ -8948,8 +9270,8 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "arrayvec 0.5.2", "fatality", @@ -8969,8 +9291,8 @@ dependencies = [ [[package]] name = "polkadot-statement-table" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -9002,6 +9324,17 @@ dependencies = [ "universal-hash", ] +[[package]] +name = "polyval" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" +dependencies = [ + "cpuid-bool", + "opaque-debug 0.3.0", + "universal-hash", +] + [[package]] name = "polyval" version = "0.5.3" @@ -9023,7 +9356,7 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "precompile-utils" version = "0.1.0" -source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.36#f5c98d5612bdb7b6311005f41fc873400d5e1481" +source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.37#3e272b5e0fad227e09880cd5a7c1c709a69f0a92" dependencies = [ "affix", "derive_more", @@ -9053,7 +9386,7 @@ dependencies = [ [[package]] name = "precompile-utils-macro" version = "0.1.0" -source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.36#f5c98d5612bdb7b6311005f41fc873400d5e1481" +source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.37#3e272b5e0fad227e09880cd5a7c1c709a69f0a92" dependencies = [ "case", "num_enum", @@ -9269,9 +9602,9 @@ dependencies = [ [[package]] name = "prost-codec" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "011ae9ff8359df7915f97302d591cdd9e0e27fbd5a4ddc5bd13b71079bb20987" +checksum = "0dc34979ff898b6e141106178981ce2596c387ea6e62533facfc61a37fc879c0" dependencies = [ "asynchronous-codec", "bytes", @@ -9329,6 +9662,24 @@ dependencies = [ "pin-project-lite 0.1.12", ] +[[package]] +name = "quinn-proto" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4ced82a24bb281af338b9e8f94429b6eca01b4e66d899f40031f074e74c9" +dependencies = [ + "bytes", + "rand 0.8.5", + "ring", + "rustc-hash", + "rustls 0.20.8", + "slab", + "thiserror", + "tinyvec", + "tracing", + "webpki 0.22.0", +] + [[package]] name = "quote" version = "1.0.23" @@ -9355,7 +9706,6 @@ dependencies = [ "rand_chacha 0.2.2", "rand_core 0.5.1", "rand_hc", - "rand_pcg 0.2.1", ] [[package]] @@ -9426,15 +9776,6 @@ dependencies = [ "rand_core 0.5.1", ] -[[package]] -name = "rand_pcg" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" -dependencies = [ - "rand_core 0.5.1", -] - [[package]] name = "rand_pcg" version = "0.3.1" @@ -9472,6 +9813,31 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "rcgen" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd" +dependencies = [ + "pem", + "ring", + "time 0.3.17", + "x509-parser 0.13.2", + "yasna", +] + +[[package]] +name = "rcgen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" +dependencies = [ + "pem", + "ring", + "time 0.3.17", + "yasna", +] + [[package]] name = "redox_syscall" version = "0.2.16" @@ -9651,8 +10017,8 @@ dependencies = [ [[package]] name = "rococo-runtime" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "beefy-merkle-tree", "frame-benchmarking", @@ -9661,6 +10027,7 @@ dependencies = [ "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", + "frame-try-runtime", "hex-literal", "log", "pallet-authority-discovery", @@ -9736,8 +10103,8 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "polkadot-primitives", @@ -9759,19 +10126,30 @@ dependencies = [ "winapi", ] +[[package]] +name = "rtcp" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691" +dependencies = [ + "bytes", + "thiserror", + "webrtc-util", +] + [[package]] name = "rtnetlink" version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" dependencies = [ - "async-global-executor", "futures", "log", "netlink-packet-route", "netlink-proto", "nix", "thiserror", + "tokio", ] [[package]] @@ -9784,6 +10162,20 @@ dependencies = [ "winapi", ] +[[package]] +name = "rtp" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80" +dependencies = [ + "async-trait", + "bytes", + "rand 0.8.5", + "serde", + "thiserror", + "webrtc-util", +] + [[package]] name = "rustc-demangle" version = "0.1.21" @@ -9811,6 +10203,15 @@ dependencies = [ "semver 1.0.16", ] +[[package]] +name = "rusticata-macros" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +dependencies = [ + "nom", +] + [[package]] name = "rustix" version = "0.35.13" @@ -9839,6 +10240,19 @@ dependencies = [ "windows-sys 0.42.0", ] +[[package]] +name = "rustls" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" +dependencies = [ + "base64 0.13.1", + "log", + "ring", + "sct 0.6.1", + "webpki 0.21.4", +] + [[package]] name = "rustls" version = "0.20.8" @@ -9847,8 +10261,8 @@ checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" dependencies = [ "log", "ring", - "sct", - "webpki", + "sct 0.7.0", + "webpki 0.22.0", ] [[package]] @@ -9907,7 +10321,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "log", "sp-core", @@ -9918,7 +10332,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -9929,7 +10343,7 @@ dependencies = [ "parity-scale-codec", "prost", "prost-build", - "rand 0.7.3", + "rand 0.8.5", "sc-client-api", "sc-network-common", "sp-api", @@ -9945,7 +10359,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "futures-timer", @@ -9968,7 +10382,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -9984,11 +10398,9 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "impl-trait-for-tuples", "memmap2", - "parity-scale-codec", "sc-chain-spec-derive", "sc-network-common", "sc-telemetry", @@ -10001,7 +10413,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10012,7 +10424,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -10023,7 +10435,7 @@ dependencies = [ "log", "names", "parity-scale-codec", - "rand 0.7.3", + "rand 0.8.5", "regex", "rpassword", "sc-client-api", @@ -10052,11 +10464,10 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "fnv", "futures", - "hash-db", "log", "parity-scale-codec", "parking_lot 0.12.1", @@ -10073,14 +10484,13 @@ dependencies = [ "sp-runtime", "sp-state-machine", "sp-storage", - "sp-trie", "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "hash-db", "kvdb", @@ -10105,7 +10515,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -10130,7 +10540,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -10159,7 +10569,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "fork-tree", @@ -10178,7 +10588,6 @@ dependencies = [ "sc-keystore", "sc-telemetry", "schnorrkel", - "serde", "sp-api", "sp-application-crypto", "sp-block-builder", @@ -10189,10 +10598,8 @@ dependencies = [ "sp-consensus-vrf", "sp-core", "sp-inherents", - "sp-io", "sp-keystore", "sp-runtime", - "sp-version", "substrate-prometheus-endpoint", "thiserror", ] @@ -10200,7 +10607,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "jsonrpsee", @@ -10222,7 +10629,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -10235,7 +10642,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -10253,13 +10660,12 @@ dependencies = [ "sp-inherents", "sp-runtime", "sp-state-machine", - "thiserror", ] [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "lru", "parity-scale-codec", @@ -10283,7 +10689,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -10296,7 +10702,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "log", "sc-allocator", @@ -10309,7 +10715,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "cfg-if", "libc", @@ -10326,7 +10732,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ahash", "array-bytes 4.2.0", @@ -10344,7 +10750,6 @@ dependencies = [ "sc-chain-spec", "sc-client-api", "sc-consensus", - "sc-keystore", "sc-network", "sc-network-common", "sc-network-gossip", @@ -10367,7 +10772,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "finality-grandpa", "futures", @@ -10378,7 +10783,6 @@ dependencies = [ "sc-finality-grandpa", "sc-rpc", "serde", - "serde_json", "sp-blockchain", "sp-core", "sp-runtime", @@ -10388,7 +10792,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ansi_term", "futures", @@ -10396,7 +10800,6 @@ dependencies = [ "log", "sc-client-api", "sc-network-common", - "sc-transaction-pool-api", "sp-blockchain", "sp-runtime", ] @@ -10404,7 +10807,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10419,30 +10822,25 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "async-trait", "asynchronous-codec", - "bitflags", + "backtrace", "bytes", - "cid", "either", "fnv", - "fork-tree", "futures", "futures-timer", "ip_network", "libp2p", - "linked-hash-map", - "linked_hash_set", "log", "lru", "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "prost", - "rand 0.7.3", + "rand 0.8.5", "sc-block-builder", "sc-client-api", "sc-consensus", @@ -10466,7 +10864,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "cid", "futures", @@ -10480,13 +10878,12 @@ dependencies = [ "sp-runtime", "thiserror", "unsigned-varint", - "void", ] [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "bitflags", @@ -10512,7 +10909,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ahash", "futures", @@ -10530,7 +10927,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "futures", @@ -10551,7 +10948,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -10583,17 +10980,17 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "futures", - "hex", "libp2p", "log", "parity-scale-codec", "pin-project", "sc-network-common", "sc-peerset", + "sc-utils", "sp-consensus", "sp-runtime", "substrate-prometheus-endpoint", @@ -10602,7 +10999,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -10616,7 +11013,7 @@ dependencies = [ "once_cell", "parity-scale-codec", "parking_lot 0.12.1", - "rand 0.7.3", + "rand 0.8.5", "sc-client-api", "sc-network-common", "sc-peerset", @@ -10632,7 +11029,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "libp2p", @@ -10645,7 +11042,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10654,10 +11051,9 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", - "hash-db", "jsonrpsee", "log", "parity-scale-codec", @@ -10684,13 +11080,10 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "futures", "jsonrpsee", - "log", "parity-scale-codec", - "parking_lot 0.12.1", "sc-chain-spec", "sc-transaction-pool-api", "scale-info", @@ -10699,7 +11092,6 @@ dependencies = [ "sp-core", "sp-rpc", "sp-runtime", - "sp-tracing", "sp-version", "thiserror", ] @@ -10707,9 +11099,8 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "futures", "http", "jsonrpsee", "log", @@ -10723,39 +11114,45 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ + "array-bytes 4.2.0", "futures", + "futures-util", "hex", "jsonrpsee", + "log", "parity-scale-codec", + "parking_lot 0.12.1", "sc-chain-spec", + "sc-client-api", "sc-transaction-pool-api", "serde", "sp-api", "sp-blockchain", "sp-core", "sp-runtime", + "sp-version", "thiserror", + "tokio-stream", ] [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "directories", "exit-future", "futures", "futures-timer", - "hash-db", "jsonrpsee", "log", "parity-scale-codec", "parking_lot 0.12.1", "pin-project", - "rand 0.7.3", + "rand 0.8.5", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -10783,19 +11180,15 @@ dependencies = [ "serde", "serde_json", "sp-api", - "sp-application-crypto", - "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-core", "sp-externalities", - "sp-inherents", "sp-keystore", "sp-runtime", "sp-session", "sp-state-machine", "sp-storage", - "sp-tracing", "sp-transaction-pool", "sp-transaction-storage-proof", "sp-trie", @@ -10812,19 +11205,18 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "log", "parity-scale-codec", "parking_lot 0.12.1", - "sc-client-api", "sp-core", ] [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -10843,13 +11235,13 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "libc", "log", - "rand 0.7.3", - "rand_pcg 0.2.1", + "rand 0.8.5", + "rand_pcg", "regex", "sc-telemetry", "serde", @@ -10862,7 +11254,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "chrono", "futures", @@ -10870,7 +11262,8 @@ dependencies = [ "log", "parking_lot 0.12.1", "pin-project", - "rand 0.7.3", + "rand 0.8.5", + "sc-utils", "serde", "serde_json", "thiserror", @@ -10880,7 +11273,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ansi_term", "atty", @@ -10911,7 +11304,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -10922,7 +11315,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -10948,7 +11341,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -10962,8 +11355,9 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ + "backtrace", "futures", "futures-timer", "lazy_static", @@ -11037,6 +11431,16 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2" +[[package]] +name = "sct" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "sct" version = "0.7.0" @@ -11047,6 +11451,18 @@ dependencies = [ "untrusted", ] +[[package]] +name = "sdp" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13" +dependencies = [ + "rand 0.8.5", + "substring", + "thiserror", + "url", +] + [[package]] name = "sec1" version = "0.3.0" @@ -11166,15 +11582,6 @@ dependencies = [ "serde", ] -[[package]] -name = "serde_nanos" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e44969a61f5d316be20a42ff97816efb3b407a924d06824c3d8a49fa8450de0e" -dependencies = [ - "serde", -] - [[package]] name = "sha-1" version = "0.9.8" @@ -11261,16 +11668,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" -[[package]] -name = "signal-hook" -version = "0.3.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d" -dependencies = [ - "libc", - "signal-hook-registry", -] - [[package]] name = "signal-hook-registry" version = "1.4.0" @@ -11339,8 +11736,8 @@ checksum = "03b634d87b960ab1a38c4fe143b508576f075e7c978bfad18217645ebfdfa2ec" [[package]] name = "slot-range-helper" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "enumn", "parity-scale-codec", @@ -11376,7 +11773,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "774d05a3edae07ce6d68ea6984f3c05e9bba8927e3dd591e3b479e5b03213d0d" dependencies = [ - "aes-gcm", + "aes-gcm 0.9.4", "blake2", "chacha20poly1305", "curve25519-dalek 4.0.0-pre.5", @@ -11417,7 +11814,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "hash-db", "log", @@ -11435,7 +11832,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "blake2", "proc-macro-crate", @@ -11447,7 +11844,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11460,14 +11857,13 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "integer-sqrt", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-debug-derive", "sp-std", "static_assertions", ] @@ -11475,7 +11871,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11488,7 +11884,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11500,7 +11896,7 @@ dependencies = [ [[package]] name = "sp-beefy" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11517,7 +11913,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "sp-api", @@ -11529,7 +11925,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "futures", "log", @@ -11547,11 +11943,10 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", - "futures-timer", "log", "parity-scale-codec", "sp-core", @@ -11566,7 +11961,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "parity-scale-codec", @@ -11584,7 +11979,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "merlin", @@ -11607,13 +12002,11 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic", - "sp-runtime", "sp-std", "sp-timestamp", ] @@ -11621,7 +12014,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11634,13 +12027,12 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "array-bytes 4.2.0", "base58", "bitflags", "blake2", - "byteorder", "dyn-clonable", "ed25519-zebra", "futures", @@ -11651,11 +12043,10 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "num-traits", "parity-scale-codec", "parking_lot 0.12.1", "primitive-types 0.12.1", - "rand 0.7.3", + "rand 0.8.5", "regex", "scale-info", "schnorrkel", @@ -11672,14 +12063,13 @@ dependencies = [ "substrate-bip39", "thiserror", "tiny-bip39", - "wasmi", "zeroize", ] [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "blake2", "byteorder", @@ -11693,7 +12083,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro2", "quote", @@ -11704,7 +12094,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11713,7 +12103,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "proc-macro2", "quote", @@ -11723,7 +12113,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "environmental", "parity-scale-codec", @@ -11734,7 +12124,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "finality-grandpa", "log", @@ -11752,7 +12142,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -11766,16 +12156,15 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "bytes", + "ed25519", "ed25519-dalek", "futures", - "hash-db", "libsecp256k1", "log", "parity-scale-codec", - "parking_lot 0.12.1", "secp256k1", "sp-core", "sp-externalities", @@ -11785,7 +12174,6 @@ dependencies = [ "sp-std", "sp-tracing", "sp-trie", - "sp-wasm-interface", "tracing", "tracing-core", ] @@ -11793,7 +12181,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "lazy_static", "sp-core", @@ -11804,7 +12192,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures", @@ -11821,7 +12209,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "thiserror", "zstd", @@ -11830,7 +12218,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -11848,7 +12236,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11862,7 +12250,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "sp-api", "sp-core", @@ -11872,7 +12260,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "backtrace", "lazy_static", @@ -11882,7 +12270,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "rustc-hash", "serde", @@ -11892,7 +12280,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "either", "hash256-std-hasher", @@ -11900,7 +12288,7 @@ dependencies = [ "log", "parity-scale-codec", "paste", - "rand 0.7.3", + "rand 0.8.5", "scale-info", "serde", "sp-application-crypto", @@ -11914,7 +12302,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -11932,7 +12320,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "Inflector", "proc-macro-crate", @@ -11944,7 +12332,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11958,7 +12346,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "scale-info", @@ -11970,14 +12358,13 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "hash-db", "log", - "num-traits", "parity-scale-codec", "parking_lot 0.12.1", - "rand 0.7.3", + "rand 0.8.5", "smallvec", "sp-core", "sp-externalities", @@ -11986,18 +12373,17 @@ dependencies = [ "sp-trie", "thiserror", "tracing", - "trie-root", ] [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -12010,13 +12396,12 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "futures-timer", "log", "parity-scale-codec", - "sp-api", "sp-inherents", "sp-runtime", "sp-std", @@ -12026,7 +12411,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "sp-std", @@ -12038,7 +12423,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "sp-api", "sp-runtime", @@ -12047,7 +12432,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "log", @@ -12063,7 +12448,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ahash", "hash-db", @@ -12086,7 +12471,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec", @@ -12103,7 +12488,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -12114,7 +12499,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "impl-trait-for-tuples", "log", @@ -12127,9 +12512,8 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "serde", @@ -12277,6 +12661,25 @@ dependencies = [ "syn", ] +[[package]] +name = "stun" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25" +dependencies = [ + "base64 0.13.1", + "crc", + "lazy_static", + "md-5", + "rand 0.8.5", + "ring", + "subtle", + "thiserror", + "tokio", + "url", + "webrtc-util", +] + [[package]] name = "substrate-bip39" version = "0.4.4" @@ -12306,7 +12709,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "platforms 2.0.0", ] @@ -12325,17 +12728,15 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "frame-system-rpc-runtime-api", "futures", "jsonrpsee", "log", "parity-scale-codec", - "sc-client-api", "sc-rpc-api", "sc-transaction-pool-api", - "serde_json", "sp-api", "sp-block-builder", "sp-blockchain", @@ -12346,9 +12747,8 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ - "futures-util", "hyper", "log", "prometheus", @@ -12359,7 +12759,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "async-trait", "jsonrpsee", @@ -12372,7 +12772,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "jsonrpsee", "log", @@ -12382,10 +12782,8 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-io", "sp-runtime", "sp-state-machine", - "sp-std", "sp-trie", "trie-db", ] @@ -12393,7 +12791,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "ansi_term", "build-helper", @@ -12407,6 +12805,15 @@ dependencies = [ "wasm-opt", ] +[[package]] +name = "substring" +version = "1.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" +dependencies = [ + "autocfg", +] + [[package]] name = "subtle" version = "2.4.1" @@ -12588,19 +12995,46 @@ dependencies = [ "winapi", ] +[[package]] +name = "time" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" +dependencies = [ + "itoa", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" +dependencies = [ + "time-core", +] + [[package]] name = "tiny-bip39" -version = "0.8.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffc59cb9dfc85bb312c3a78fd6aa8a8582e310b0fa885d5bb877f6dcc601839d" +checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861" dependencies = [ "anyhow", - "hmac 0.8.1", + "hmac 0.12.1", "once_cell", - "pbkdf2 0.4.0", - "rand 0.7.3", + "pbkdf2 0.11.0", + "rand 0.8.5", "rustc-hash", - "sha2 0.9.9", + "sha2 0.10.6", "thiserror", "unicode-normalization", "wasm-bindgen", @@ -12616,6 +13050,16 @@ dependencies = [ "crunchy", ] +[[package]] +name = "tinytemplate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" +dependencies = [ + "serde", + "serde_json", +] + [[package]] name = "tinyvec" version = "1.6.0" @@ -12668,9 +13112,9 @@ version = "0.23.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ - "rustls", + "rustls 0.20.8", "tokio", - "webpki", + "webpki 0.22.0", ] [[package]] @@ -12682,6 +13126,7 @@ dependencies = [ "futures-core", "pin-project-lite 0.2.9", "tokio", + "tokio-util", ] [[package]] @@ -12812,8 +13257,8 @@ dependencies = [ [[package]] name = "tracing-gum" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "polkadot-node-jaeger", "polkadot-primitives", @@ -12823,8 +13268,8 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "expander 0.0.6", "proc-macro-crate", @@ -12927,6 +13372,7 @@ dependencies = [ "lazy_static", "rand 0.8.5", "smallvec", + "socket2", "thiserror", "tinyvec", "tokio", @@ -12963,7 +13409,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.36#d6d80979da7b176bede2974f91259fbf80710003" +source = "git+https://github.com/darwinia-network/substrate?branch=polkadot-v0.9.37#3f2d4cff53a283a14c5b8241e07519f6144cafe1" dependencies = [ "clap", "frame-remote-externalities", @@ -12971,11 +13417,11 @@ dependencies = [ "hex", "log", "parity-scale-codec", - "sc-chain-spec", "sc-cli", "sc-executor", "sc-service", "serde", + "serde_json", "sp-api", "sp-core", "sp-debug-derive", @@ -12997,6 +13443,25 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" +[[package]] +name = "turn" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8" +dependencies = [ + "async-trait", + "base64 0.13.1", + "futures", + "log", + "md-5", + "rand 0.8.5", + "ring", + "stun", + "thiserror", + "tokio", + "webrtc-util", +] + [[package]] name = "twox-hash" version = "1.6.3" @@ -13121,20 +13586,19 @@ dependencies = [ ] [[package]] -name = "valuable" -version = "0.1.0" +name = "uuid" +version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" +checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +dependencies = [ + "getrandom 0.2.8", +] [[package]] -name = "value-bag" -version = "1.0.0-alpha.9" +name = "valuable" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" -dependencies = [ - "ctor", - "version_check", -] +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "vcpkg" @@ -13154,6 +13618,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +[[package]] +name = "waitgroup" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292" +dependencies = [ + "atomic-waker", +] + [[package]] name = "waker-fn" version = "1.1.0" @@ -13552,6 +14025,16 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "webpki" +version = "0.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "webpki" version = "0.22.0" @@ -13568,7 +14051,219 @@ version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" dependencies = [ - "webpki", + "webpki 0.22.0", +] + +[[package]] +name = "webrtc" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "hex", + "interceptor", + "lazy_static", + "log", + "rand 0.8.5", + "rcgen 0.9.3", + "regex", + "ring", + "rtcp", + "rtp", + "rustls 0.19.1", + "sdp", + "serde", + "serde_json", + "sha2 0.10.6", + "stun", + "thiserror", + "time 0.3.17", + "tokio", + "turn", + "url", + "waitgroup", + "webrtc-data", + "webrtc-dtls", + "webrtc-ice", + "webrtc-mdns", + "webrtc-media", + "webrtc-sctp", + "webrtc-srtp", + "webrtc-util", +] + +[[package]] +name = "webrtc-data" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100" +dependencies = [ + "bytes", + "derive_builder", + "log", + "thiserror", + "tokio", + "webrtc-sctp", + "webrtc-util", +] + +[[package]] +name = "webrtc-dtls" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7021987ae0a2ed6c8cd33f68e98e49bb6e74ffe9543310267b48a1bbe3900e5f" +dependencies = [ + "aes 0.6.0", + "aes-gcm 0.8.0", + "async-trait", + "bincode", + "block-modes", + "byteorder", + "ccm", + "curve25519-dalek 3.2.0", + "der-parser 8.1.0", + "elliptic-curve", + "hkdf", + "hmac 0.10.1", + "log", + "oid-registry 0.6.1", + "p256", + "p384", + "rand 0.8.5", + "rand_core 0.6.4", + "rcgen 0.9.3", + "ring", + "rustls 0.19.1", + "sec1", + "serde", + "sha-1", + "sha2 0.9.9", + "signature", + "subtle", + "thiserror", + "tokio", + "webpki 0.21.4", + "webrtc-util", + "x25519-dalek 2.0.0-pre.1", + "x509-parser 0.13.2", +] + +[[package]] +name = "webrtc-ice" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "494483fbb2f5492620871fdc78b084aed8807377f6e3fe88b2e49f0a9c9c41d7" +dependencies = [ + "arc-swap", + "async-trait", + "crc", + "log", + "rand 0.8.5", + "serde", + "serde_json", + "stun", + "thiserror", + "tokio", + "turn", + "url", + "uuid", + "waitgroup", + "webrtc-mdns", + "webrtc-util", +] + +[[package]] +name = "webrtc-mdns" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" +dependencies = [ + "log", + "socket2", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-media" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee2a3c157a040324e5049bcbd644ffc9079e6738fa2cfab2bcff64e5cc4c00d7" +dependencies = [ + "byteorder", + "bytes", + "derive_builder", + "displaydoc", + "rand 0.8.5", + "rtp", + "thiserror", + "webrtc-util", +] + +[[package]] +name = "webrtc-sctp" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "crc", + "log", + "rand 0.8.5", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-srtp" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6183edc4c1c6c0175f8812eefdce84dfa0aea9c3ece71c2bf6ddd3c964de3da5" +dependencies = [ + "aead 0.4.3", + "aes 0.7.5", + "aes-gcm 0.9.4", + "async-trait", + "byteorder", + "bytes", + "ctr 0.8.0", + "hmac 0.11.0", + "log", + "rtcp", + "rtp", + "sha-1", + "subtle", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-util" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87" +dependencies = [ + "async-trait", + "bitflags", + "bytes", + "cc", + "ipnet", + "lazy_static", + "libc", + "log", + "nix", + "rand 0.8.5", + "thiserror", + "tokio", + "winapi", ] [[package]] @@ -13582,8 +14277,8 @@ dependencies = [ [[package]] name = "westend-runtime" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "bitvec", "frame-benchmarking", @@ -13672,8 +14367,8 @@ dependencies = [ [[package]] name = "westend-runtime-constants" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "polkadot-primitives", @@ -13904,10 +14599,58 @@ dependencies = [ "zeroize", ] +[[package]] +name = "x25519-dalek" +version = "2.0.0-pre.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df" +dependencies = [ + "curve25519-dalek 3.2.0", + "rand_core 0.6.4", + "zeroize", +] + +[[package]] +name = "x509-parser" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c" +dependencies = [ + "asn1-rs 0.3.1", + "base64 0.13.1", + "data-encoding", + "der-parser 7.0.0", + "lazy_static", + "nom", + "oid-registry 0.4.0", + "ring", + "rusticata-macros", + "thiserror", + "time 0.3.17", +] + +[[package]] +name = "x509-parser" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" +dependencies = [ + "asn1-rs 0.5.1", + "base64 0.13.1", + "data-encoding", + "der-parser 8.1.0", + "lazy_static", + "nom", + "oid-registry 0.6.1", + "rusticata-macros", + "thiserror", + "time 0.3.17", +] + [[package]] name = "xcm" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "derivative", "impl-trait-for-tuples", @@ -13920,8 +14663,8 @@ dependencies = [ [[package]] name = "xcm-builder" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-support", "frame-system", @@ -13940,8 +14683,8 @@ dependencies = [ [[package]] name = "xcm-executor" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "frame-benchmarking", "frame-support", @@ -13959,7 +14702,7 @@ dependencies = [ [[package]] name = "xcm-primitives" version = "0.1.0" -source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.36#f5c98d5612bdb7b6311005f41fc873400d5e1481" +source = "git+https://github.com/darwinia-network/moonbeam?branch=polkadot-v0.9.37#3e272b5e0fad227e09880cd5a7c1c709a69f0a92" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -13982,8 +14725,8 @@ dependencies = [ [[package]] name = "xcm-procedural" -version = "0.9.36" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.36#dc25abc712e42b9b51d87ad1168e453a42b5f0bc" +version = "0.9.37" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.37#645723987cf9662244be8faf4e9b63e8b9a1b3a3" dependencies = [ "Inflector", "proc-macro2", @@ -14005,6 +14748,15 @@ dependencies = [ "static_assertions", ] +[[package]] +name = "yasna" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" +dependencies = [ + "time 0.3.17", +] + [[package]] name = "zeroize" version = "1.5.7" diff --git a/Cargo.toml b/Cargo.toml index cce2c62f5..3fd30fd62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,24 +28,24 @@ members = [ static_assertions = { version = "1.1" } # cumulus - cumulus-client-cli = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-client-collator = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-client-network = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-client-service = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-pallet-aura-ext = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-pallet-dmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-pallet-parachain-system = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-pallet-session-benchmarking = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-pallet-xcm = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-pallet-xcmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - cumulus-primitives-timestamp = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-primitives-utility = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } - cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.36" } - parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" } + cumulus-client-cli = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-client-collator = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-client-network = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-client-service = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-pallet-aura-ext = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-pallet-dmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-pallet-parachain-system = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-pallet-session-benchmarking = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-pallet-xcm = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-pallet-xcmp-queue = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + cumulus-primitives-timestamp = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-primitives-utility = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } + cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.37" } + parachain-info = { default-features = false, git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.37" } # darwinia crab-runtime = { path = "runtime/crab" } @@ -69,293 +69,293 @@ members = [ pangoro-runtime = { path = "runtime/pangoro" } # darwinia-messages-substrate - bp-darwinia-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - bp-message-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - bp-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - bp-polkadot-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - bp-runtime = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - bridge-runtime-common = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - pallet-bridge-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - pallet-bridge-grandpa = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - pallet-bridge-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - pallet-bridge-parachains = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } - pallet-fee-market = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.36" } + bp-darwinia-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + bp-message-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + bp-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + bp-polkadot-core = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + bp-runtime = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + bridge-runtime-common = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + pallet-bridge-dispatch = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + pallet-bridge-grandpa = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + pallet-bridge-messages = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + pallet-bridge-parachains = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } + pallet-fee-market = { default-features = false, git = "https://github.com/darwinia-network/darwinia-messages-substrate", branch = "polkadot-v0.9.37" } # frontier - fc-cli = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fc-consensus = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fc-db = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fc-mapping-sync = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fc-rpc = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fc-rpc-core = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fp-ethereum = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fp-evm = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fp-rpc = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fp-self-contained = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - fp-storage = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-ethereum = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm-precompile-blake2 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm-precompile-bn128 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm-precompile-dispatch = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } - pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.36" } + fc-cli = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fc-consensus = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fc-db = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fc-mapping-sync = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fc-rpc = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fc-rpc-core = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fp-ethereum = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fp-evm = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fp-rpc = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fp-self-contained = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + fp-storage = { git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-ethereum = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm = { default-features = false, features = ["forbid-evm-reentrancy"], git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm-precompile-blake2 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm-precompile-bn128 = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm-precompile-dispatch = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm-precompile-modexp = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } + pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/darwinia-network/frontier", branch = "polkadot-v0.9.37" } # moonbeam - account = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.36" } - precompile-utils = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.36" } - xcm-primitives = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.36" } + account = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" } + precompile-utils = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" } + xcm-primitives = { default-features = false, git = "https://github.com/darwinia-network/moonbeam", branch = "polkadot-v0.9.37" } # polkadot - pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - polkadot-parachain = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - polkadot-runtime-common = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - xcm-builder = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } - xcm-executor = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" } + pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + polkadot-parachain = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + polkadot-runtime-common = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + xcm-builder = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } + xcm-executor = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37" } # substrate - frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-collective = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-democracy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-elections-phragmen = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-identity = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-membership = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-multisig = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-preimage = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-proxy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-scheduler = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-tips = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-utility = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - pallet-vesting = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-keyring = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } - try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" } + frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-assets = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-authorship = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-collective = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-democracy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-elections-phragmen = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-identity = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-membership = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-multisig = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-preimage = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-proxy = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-scheduler = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-tips = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-treasury = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-utility = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + pallet-vesting = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-executor = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-keyring = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-session = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + sp-version = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } + try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37" } [patch."https://github.com/paritytech/substrate"] -beefy-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -beefy-gadget-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -beefy-merkle-tree = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-benchmarking-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-election-provider-solution-type = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-election-provider-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-executive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-support-procedural = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-support-procedural-tools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-support-procedural-tools-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-system-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-system-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -frame-try-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -mmr-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -mmr-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-assets = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-bags-list = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-balances = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-beefy-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-child-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-conviction-voting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-democracy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-election-provider-multi-phase = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-election-provider-support-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-elections-phragmen = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-fast-unstake = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-identity = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-im-online = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-indices = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-membership = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-multisig = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-nis = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-nomination-pools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-nomination-pools-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-nomination-pools-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-offences = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-offences-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-preimage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-proxy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-ranked-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-recovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-referenda = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-scheduler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-session-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-society = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-staking-reward-curve = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-staking-reward-fn = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-state-trie-migration = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-sudo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-tips = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-transaction-payment = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-treasury = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-utility = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-vesting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -pallet-whitelist = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-allocator = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-basic-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-chain-spec = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-chain-spec-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-client-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-client-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus-babe-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus-epochs = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-executor = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-executor-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-executor-wasmi = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-executor-wasmtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-finality-grandpa-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-informant = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-network = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-network-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-network-gossip = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-peerset = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-proposer-metrics = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-rpc-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-rpc-server = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-service = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-state-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-sync-state-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-sysinfo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-telemetry = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-tracing-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-transaction-pool-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sc-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-api-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-application-crypto = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-arithmetic = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-blockchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-consensus-vrf = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-core = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-database = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-debug-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-externalities = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-inherents = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-io = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-keyring = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-maybe-compressed-blob = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-mmr-primitives = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-npos-elections = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-panic-handler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-runtime-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-runtime-interface-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-state-machine = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-std = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-storage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-transaction-storage-proof = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-trie = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-version = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-version-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-wasm-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -sp-weights = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-build-script-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-rpc-client = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-state-trie-migration-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -substrate-wasm-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } -try-runtime-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.36" } +beefy-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +beefy-gadget-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +beefy-merkle-tree = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-benchmarking-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-election-provider-solution-type = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-election-provider-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-executive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-support = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-support-procedural = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-support-procedural-tools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-support-procedural-tools-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-system-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-system-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +frame-try-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +mmr-gadget = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +mmr-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-assets = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-bags-list = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-balances = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-beefy-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-child-bounties = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-conviction-voting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-democracy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-election-provider-multi-phase = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-election-provider-support-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-elections-phragmen = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-fast-unstake = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-identity = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-im-online = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-indices = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-membership = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-mmr = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-multisig = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-nis = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-nomination-pools = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-nomination-pools-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-nomination-pools-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-offences = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-offences-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-preimage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-proxy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-ranked-collective = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-recovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-referenda = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-scheduler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-session-benchmarking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-society = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-staking-reward-curve = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-staking-reward-fn = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-state-trie-migration = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-sudo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-tips = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-transaction-payment = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-transaction-payment-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-treasury = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-utility = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-vesting = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +pallet-whitelist = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-allocator = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-basic-authorship = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-chain-spec = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-chain-spec-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-client-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-client-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus-babe-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus-epochs = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-executor = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-executor-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-executor-wasmi = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-executor-wasmtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-finality-grandpa-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-informant = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-network = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-network-common = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-network-gossip = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-peerset = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-proposer-metrics = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-rpc-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-rpc-server = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-service = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-state-db = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-sync-state-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-sysinfo = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-telemetry = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-tracing-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-transaction-pool-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sc-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-api = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-api-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-application-crypto = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-arithmetic = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-authority-discovery = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-beefy = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-block-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-blockchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-consensus = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-consensus-aura = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-consensus-babe = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-consensus-slots = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-consensus-vrf = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-core = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-database = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-debug-derive = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-externalities = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-finality-grandpa = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-inherents = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-io = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-keyring = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-keystore = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-maybe-compressed-blob = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-mmr-primitives = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-npos-elections = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-offchain = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-panic-handler = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-runtime = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-runtime-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-runtime-interface-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-session = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-staking = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-state-machine = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-std = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-storage = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-timestamp = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-tracing = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-transaction-pool = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-transaction-storage-proof = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-trie = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-version = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-version-proc-macro = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-wasm-interface = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +sp-weights = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-build-script-utils = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-frame-rpc-system = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-prometheus-endpoint = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-rpc-client = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-state-trie-migration-rpc = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +substrate-wasm-builder = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } +try-runtime-cli = { git = "https://github.com/darwinia-network/substrate", branch = "polkadot-v0.9.37" } diff --git a/node/Cargo.toml b/node/Cargo.toml index 79e405702..472e6df3e 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -43,7 +43,7 @@ fc-cli = { workspace = true } fc-consensus = { workspace = true } fc-db = { workspace = true } fc-mapping-sync = { workspace = true } -fc-rpc = { features = ["rpc_binary_search_estimate"], workspace = true } +fc-rpc = { features = ["rpc-binary-search-estimate"], workspace = true } fc-rpc-core = { workspace = true } fp-evm = { workspace = true } fp-rpc = { workspace = true } diff --git a/node/src/command.rs b/node/src/command.rs index bab287d18..41000855f 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -614,24 +614,28 @@ pub fn run() -> Result<()> { let task_manager = TaskManager::new(runner.config().tokio_handle.clone(), *registry) .map_err(|e| format!("Error: {:?}", e))?; + #[cfg(feature = "crab-native")] if chain_spec.is_crab() { return runner.async_run(|_| { Ok((cmd.run::>(), task_manager)) }); } + #[cfg(feature = "darwinia-native")] if chain_spec.is_darwinia() { return runner.async_run(|_| { Ok((cmd.run::>(), task_manager)) }); } + #[cfg(feature = "pangolin-native")] if chain_spec.is_pangolin() { return runner.async_run(|_| { Ok((cmd.run::>(), task_manager)) }); } + #[cfg(feature = "pangoro-native")] if chain_spec.is_pangoro() { return runner.async_run(|_| { Ok((cmd.run::>(), task_manager)) diff --git a/pallet/account-migration/tests/mock.rs b/pallet/account-migration/tests/mock.rs index afcab1f14..91c737fdd 100644 --- a/pallet/account-migration/tests/mock.rs +++ b/pallet/account-migration/tests/mock.rs @@ -111,6 +111,7 @@ impl pallet_assets::Config for Runtime { type AssetId = AssetId; type AssetIdParameter = codec::Compact; type Balance = Balance; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg>; type Currency = Balances; diff --git a/pallet/deposit/tests/mock.rs b/pallet/deposit/tests/mock.rs index a28aea9c9..c00eca4e8 100644 --- a/pallet/deposit/tests/mock.rs +++ b/pallet/deposit/tests/mock.rs @@ -75,6 +75,7 @@ impl pallet_assets::Config for Runtime { type AssetId = AssetId; type AssetIdParameter = codec::Compact; type Balance = Balance; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, u32>, >; diff --git a/pallet/message-gadget/src/lib.rs b/pallet/message-gadget/src/lib.rs index e36ca4b40..9d4e2a21c 100644 --- a/pallet/message-gadget/src/lib.rs +++ b/pallet/message-gadget/src/lib.rs @@ -27,7 +27,7 @@ use frame_support::{log, pallet_prelude::*, traits::Get}; use frame_system::pallet_prelude::*; use sp_core::{H160, H256}; use sp_io::hashing; -use sp_std::vec; +use sp_std::prelude::*; #[frame_support::pallet] pub mod pallet { @@ -88,7 +88,7 @@ where None, None, None, - vec![], + Vec::new(), false, false, ::config(), diff --git a/pallet/message-gadget/tests/tests.rs b/pallet/message-gadget/tests/tests.rs index 800626b49..9eecd581a 100644 --- a/pallet/message-gadget/tests/tests.rs +++ b/pallet/message-gadget/tests/tests.rs @@ -76,6 +76,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = (); type PrecompilesValue = (); type Runner = pallet_evm::runner::stack::Runner; diff --git a/pallet/message-transact/src/mock.rs b/pallet/message-transact/src/mock.rs index c6a9344b7..dd59e762a 100644 --- a/pallet/message-transact/src/mock.rs +++ b/pallet/message-transact/src/mock.rs @@ -125,6 +125,7 @@ impl pallet_evm::Config for TestRuntime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = (); type PrecompilesValue = (); type Runner = pallet_evm::runner::stack::Runner; diff --git a/pallet/staking/tests/mock.rs b/pallet/staking/tests/mock.rs index 91422e9fc..b7b0bae2c 100644 --- a/pallet/staking/tests/mock.rs +++ b/pallet/staking/tests/mock.rs @@ -77,6 +77,7 @@ impl pallet_assets::Config for Runtime { type AssetId = AssetId; type AssetIdParameter = codec::Compact; type Balance = Balance; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, u32>, >; diff --git a/precompile/assets/src/mock.rs b/precompile/assets/src/mock.rs index 41eba8fbb..775b00755 100644 --- a/precompile/assets/src/mock.rs +++ b/precompile/assets/src/mock.rs @@ -162,6 +162,7 @@ impl pallet_evm::Config for TestRuntime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = TestPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; @@ -177,6 +178,7 @@ impl pallet_assets::Config for TestRuntime { type AssetId = AssetId; type AssetIdParameter = codec::Compact; type Balance = Balance; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, AccountId>, >; diff --git a/precompile/bls12-381/src/lib.rs b/precompile/bls12-381/src/lib.rs index 7016a9153..fbfa4b1e7 100644 --- a/precompile/bls12-381/src/lib.rs +++ b/precompile/bls12-381/src/lib.rs @@ -25,7 +25,7 @@ use milagro_bls::{AggregatePublicKey, AggregateSignature, PublicKey, Signature}; // moonbeam use precompile_utils::prelude::*; // substrate -use sp_std::vec::Vec; +use sp_std::prelude::*; pub(crate) const VERIFY_ESTIMATED_COST: u64 = 100_000; pub struct BLS12381(PhantomData); diff --git a/precompile/deposit/src/mock.rs b/precompile/deposit/src/mock.rs index 860170ffc..ee62615a5 100644 --- a/precompile/deposit/src/mock.rs +++ b/precompile/deposit/src/mock.rs @@ -164,6 +164,7 @@ impl pallet_evm::Config for TestRuntime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = TestPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/precompile/staking/src/lib.rs b/precompile/staking/src/lib.rs index d5fef1e31..8724462e1 100644 --- a/precompile/staking/src/lib.rs +++ b/precompile/staking/src/lib.rs @@ -36,7 +36,7 @@ use frame_support::{ }; use sp_core::{H160, U256}; use sp_runtime::Perbill; -use sp_std::vec::Vec; +use sp_std::prelude::*; pub struct Staking(PhantomData); diff --git a/precompile/staking/src/mock.rs b/precompile/staking/src/mock.rs index 2ee0d9026..8062b4a3c 100644 --- a/precompile/staking/src/mock.rs +++ b/precompile/staking/src/mock.rs @@ -168,6 +168,7 @@ impl pallet_evm::Config for TestRuntime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = TestPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/precompile/state-storage/src/mock.rs b/precompile/state-storage/src/mock.rs index a16bd2ed5..1e8a3cbdf 100644 --- a/precompile/state-storage/src/mock.rs +++ b/precompile/state-storage/src/mock.rs @@ -149,6 +149,7 @@ impl pallet_evm::Config for TestRuntime { type FindAuthor = (); type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = TestPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index 65a879853..b6b5238ef 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -28,6 +28,7 @@ xcm-executor = { workspace = true } # substrate frame-support = { workspace = true } frame-system = { workspace = true } +pallet-assets = { workspace = true } pallet-balances = { workspace = true } pallet-collective = { workspace = true } pallet-treasury = { workspace = true } @@ -58,6 +59,7 @@ std = [ # substrate "frame-support/std", "frame-system/std", + "pallet-assets/std", "pallet-balances/std", "pallet-collective/std", "pallet-treasury/std", @@ -67,3 +69,7 @@ std = [ ] test = [] + +runtime-benchmarks = [ + "pallet-assets/runtime-benchmarks" +] diff --git a/runtime/common/src/lib.rs b/runtime/common/src/lib.rs index 3952e1960..4f1c1c52a 100644 --- a/runtime/common/src/lib.rs +++ b/runtime/common/src/lib.rs @@ -204,3 +204,13 @@ macro_rules! impl_self_contained_call { } }; } + +/// Helper for pallet-assets benchmarking. +#[cfg(feature = "runtime-benchmarks")] +pub struct AssetsBenchmarkHelper; +#[cfg(feature = "runtime-benchmarks")] +impl pallet_assets::BenchmarkHelper> for AssetsBenchmarkHelper { + fn create_asset_id_parameter(id: u32) -> codec::Compact { + u64::from(id).into() + } +} diff --git a/runtime/crab/Cargo.toml b/runtime/crab/Cargo.toml index 9ff8066f5..4c70f0e37 100644 --- a/runtime/crab/Cargo.toml +++ b/runtime/crab/Cargo.toml @@ -257,6 +257,9 @@ runtime-benchmarks = [ # cumulus optional "cumulus-pallet-session-benchmarking/runtime-benchmarks", + # darwinia + "darwinia-common-runtime/runtime-benchmarks", + # darwinia-messages-substrate "bridge-runtime-common/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", diff --git a/runtime/crab/src/lib.rs b/runtime/crab/src/lib.rs index 93193bdd9..bb1691008 100644 --- a/runtime/crab/src/lib.rs +++ b/runtime/crab/src/lib.rs @@ -172,7 +172,6 @@ frame_benchmarking::define_benchmarks! { [pallet_balances, Balances] [pallet_session, SessionBench::] [pallet_timestamp, Timestamp] - [pallet_collator_selection, CollatorSelection] [cumulus_pallet_xcmp_queue, XcmpQueue] } @@ -547,7 +546,7 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade(checks: bool) -> (Weight, frame_support::weights::Weight) { + fn on_runtime_upgrade(checks: frame_try_runtime::UpgradeCheckSelect) -> (frame_support::weights::Weight, frame_support::weights::Weight) { // substrate use frame_support::log; @@ -563,7 +562,7 @@ sp_api::impl_runtime_apis! { state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect, - ) -> Weight { + ) -> frame_support::weights::Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. Executive::try_execute_block(block, state_root_check, signature_check, select).unwrap() diff --git a/runtime/crab/src/pallets/assets.rs b/runtime/crab/src/pallets/assets.rs index 73f6c29f8..d1a47f55f 100644 --- a/runtime/crab/src/pallets/assets.rs +++ b/runtime/crab/src/pallets/assets.rs @@ -36,7 +36,8 @@ impl pallet_assets::Config for Runtime { type AssetIdParameter = codec::Compact; type Balance = Balance; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = (); + type BenchmarkHelper = AssetsBenchmarkHelper; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, AccountId>, >; diff --git a/runtime/crab/src/pallets/evm.rs b/runtime/crab/src/pallets/evm.rs index cbdb9578a..9718f62e8 100644 --- a/runtime/crab/src/pallets/evm.rs +++ b/runtime/crab/src/pallets/evm.rs @@ -181,6 +181,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = CrabPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/runtime/crab/src/pallets/proxy.rs b/runtime/crab/src/pallets/proxy.rs index 866900465..1354085a5 100644 --- a/runtime/crab/src/pallets/proxy.rs +++ b/runtime/crab/src/pallets/proxy.rs @@ -78,7 +78,9 @@ impl frame_support::traits::InstanceFilter for ProxyType { ProxyType::Staking => { matches!( c, - RuntimeCall::Session(..) | RuntimeCall::Deposit(..) | RuntimeCall::DarwiniaStaking(..) + RuntimeCall::Session(..) + | RuntimeCall::Deposit(..) + | RuntimeCall::DarwiniaStaking(..) ) }, ProxyType::IdentityJudgement => diff --git a/runtime/darwinia/Cargo.toml b/runtime/darwinia/Cargo.toml index e766d0a7e..40c7ee032 100644 --- a/runtime/darwinia/Cargo.toml +++ b/runtime/darwinia/Cargo.toml @@ -258,6 +258,9 @@ runtime-benchmarks = [ # cumulus optional "cumulus-pallet-session-benchmarking/runtime-benchmarks", + # darwinia + "darwinia-common-runtime/runtime-benchmarks", + # darwinia-messages-substrate "bridge-runtime-common/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", diff --git a/runtime/darwinia/src/lib.rs b/runtime/darwinia/src/lib.rs index 761def089..ba7674422 100644 --- a/runtime/darwinia/src/lib.rs +++ b/runtime/darwinia/src/lib.rs @@ -172,7 +172,6 @@ frame_benchmarking::define_benchmarks! { [pallet_balances, Balances] [pallet_session, SessionBench::] [pallet_timestamp, Timestamp] - [pallet_collator_selection, CollatorSelection] [cumulus_pallet_xcmp_queue, XcmpQueue] } @@ -548,7 +547,7 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade(checks: bool) -> (Weight, frame_support::weights::Weight) { + fn on_runtime_upgrade(checks: frame_try_runtime::UpgradeCheckSelect) -> (frame_support::weights::Weight, frame_support::weights::Weight) { // substrate use frame_support::log; @@ -564,7 +563,7 @@ sp_api::impl_runtime_apis! { state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect, - ) -> Weight { + ) -> frame_support::weights::Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. Executive::try_execute_block(block, state_root_check, signature_check, select).unwrap() diff --git a/runtime/darwinia/src/pallets/assets.rs b/runtime/darwinia/src/pallets/assets.rs index ebd52e789..a2cd311b7 100644 --- a/runtime/darwinia/src/pallets/assets.rs +++ b/runtime/darwinia/src/pallets/assets.rs @@ -36,7 +36,8 @@ impl pallet_assets::Config for Runtime { type AssetIdParameter = codec::Compact; type Balance = Balance; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = (); + type BenchmarkHelper = AssetsBenchmarkHelper; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, AccountId>, >; diff --git a/runtime/darwinia/src/pallets/evm.rs b/runtime/darwinia/src/pallets/evm.rs index 4a6d3f967..397516018 100644 --- a/runtime/darwinia/src/pallets/evm.rs +++ b/runtime/darwinia/src/pallets/evm.rs @@ -181,6 +181,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = DarwiniaPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/runtime/darwinia/src/pallets/proxy.rs b/runtime/darwinia/src/pallets/proxy.rs index ccacf162b..c571d5f14 100644 --- a/runtime/darwinia/src/pallets/proxy.rs +++ b/runtime/darwinia/src/pallets/proxy.rs @@ -78,7 +78,9 @@ impl frame_support::traits::InstanceFilter for ProxyType { ProxyType::Staking => { matches!( c, - RuntimeCall::Session(..) | RuntimeCall::Deposit(..) | RuntimeCall::DarwiniaStaking(..) + RuntimeCall::Session(..) + | RuntimeCall::Deposit(..) + | RuntimeCall::DarwiniaStaking(..) ) }, ProxyType::IdentityJudgement => diff --git a/runtime/pangolin/Cargo.toml b/runtime/pangolin/Cargo.toml index c0983e38b..b48121080 100644 --- a/runtime/pangolin/Cargo.toml +++ b/runtime/pangolin/Cargo.toml @@ -256,6 +256,9 @@ runtime-benchmarks = [ # cumulus optional "cumulus-pallet-session-benchmarking/runtime-benchmarks", + # darwinia + "darwinia-common-runtime/runtime-benchmarks", + # darwinia-messages-substrate "bridge-runtime-common/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", diff --git a/runtime/pangolin/src/lib.rs b/runtime/pangolin/src/lib.rs index 5b5f8e1c8..73c1c9885 100644 --- a/runtime/pangolin/src/lib.rs +++ b/runtime/pangolin/src/lib.rs @@ -163,7 +163,6 @@ frame_benchmarking::define_benchmarks! { [pallet_balances, Balances] [pallet_session, SessionBench::] [pallet_timestamp, Timestamp] - [pallet_collator_selection, CollatorSelection] [cumulus_pallet_xcmp_queue, XcmpQueue] } @@ -529,7 +528,7 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade(checks: bool) -> (Weight, frame_support::weights::Weight) { + fn on_runtime_upgrade(checks: frame_try_runtime::UpgradeCheckSelect) -> (frame_support::weights::Weight, frame_support::weights::Weight) { // substrate use frame_support::log; @@ -545,7 +544,7 @@ sp_api::impl_runtime_apis! { state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect, - ) -> Weight { + ) -> frame_support::weights::Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. Executive::try_execute_block(block, state_root_check, signature_check, select).unwrap() diff --git a/runtime/pangolin/src/migration.rs b/runtime/pangolin/src/migration.rs index f725e52b7..d4e49525f 100644 --- a/runtime/pangolin/src/migration.rs +++ b/runtime/pangolin/src/migration.rs @@ -1,12 +1,13 @@ // darwinia #[allow(unused_imports)] use crate::*; +// substrate pub struct CustomOnRuntimeUpgrade; impl frame_support::traits::OnRuntimeUpgrade for CustomOnRuntimeUpgrade { #[cfg(feature = "try-runtime")] - fn pre_upgrade() -> Result<(), &'static str> { - Ok(()) + fn pre_upgrade() -> Result, &'static str> { + Ok(Vec::new()) } #[cfg(feature = "try-runtime")] diff --git a/runtime/pangolin/src/pallets/assets.rs b/runtime/pangolin/src/pallets/assets.rs index 1dc4dd543..dfe936635 100644 --- a/runtime/pangolin/src/pallets/assets.rs +++ b/runtime/pangolin/src/pallets/assets.rs @@ -36,7 +36,8 @@ impl pallet_assets::Config for Runtime { type AssetIdParameter = codec::Compact; type Balance = Balance; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = (); + type BenchmarkHelper = AssetsBenchmarkHelper; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, AccountId>, >; diff --git a/runtime/pangolin/src/pallets/evm.rs b/runtime/pangolin/src/pallets/evm.rs index 138e263bb..1880c402f 100644 --- a/runtime/pangolin/src/pallets/evm.rs +++ b/runtime/pangolin/src/pallets/evm.rs @@ -181,6 +181,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = PangolinPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/runtime/pangolin/src/pallets/proxy.rs b/runtime/pangolin/src/pallets/proxy.rs index 9da74c43d..dae6ddf4c 100644 --- a/runtime/pangolin/src/pallets/proxy.rs +++ b/runtime/pangolin/src/pallets/proxy.rs @@ -77,7 +77,9 @@ impl frame_support::traits::InstanceFilter for ProxyType { ProxyType::Staking => { matches!( c, - RuntimeCall::Session(..) | RuntimeCall::Deposit(..) | RuntimeCall::DarwiniaStaking(..) + RuntimeCall::Session(..) + | RuntimeCall::Deposit(..) + | RuntimeCall::DarwiniaStaking(..) ) }, ProxyType::IdentityJudgement => diff --git a/runtime/pangoro/Cargo.toml b/runtime/pangoro/Cargo.toml index d474ca305..8a18bf2e7 100644 --- a/runtime/pangoro/Cargo.toml +++ b/runtime/pangoro/Cargo.toml @@ -256,6 +256,9 @@ runtime-benchmarks = [ # cumulus optional "cumulus-pallet-session-benchmarking/runtime-benchmarks", + # darwinia + "darwinia-common-runtime/runtime-benchmarks", + # darwinia-messages-substrate "bridge-runtime-common/runtime-benchmarks", "pallet-bridge-grandpa/runtime-benchmarks", diff --git a/runtime/pangoro/src/lib.rs b/runtime/pangoro/src/lib.rs index e0169758d..1b1559f68 100644 --- a/runtime/pangoro/src/lib.rs +++ b/runtime/pangoro/src/lib.rs @@ -163,7 +163,6 @@ frame_benchmarking::define_benchmarks! { [pallet_balances, Balances] [pallet_session, SessionBench::] [pallet_timestamp, Timestamp] - [pallet_collator_selection, CollatorSelection] [cumulus_pallet_xcmp_queue, XcmpQueue] } @@ -529,7 +528,7 @@ sp_api::impl_runtime_apis! { #[cfg(feature = "try-runtime")] impl frame_try_runtime::TryRuntime for Runtime { - fn on_runtime_upgrade(checks: bool) -> (Weight, frame_support::weights::Weight) { + fn on_runtime_upgrade(checks: frame_try_runtime::UpgradeCheckSelect) -> (frame_support::weights::Weight, frame_support::weights::Weight) { // substrate use frame_support::log; @@ -545,7 +544,7 @@ sp_api::impl_runtime_apis! { state_root_check: bool, signature_check: bool, select: frame_try_runtime::TryStateSelect, - ) -> Weight { + ) -> frame_support::weights::Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. Executive::try_execute_block(block, state_root_check, signature_check, select).unwrap() diff --git a/runtime/pangoro/src/migration.rs b/runtime/pangoro/src/migration.rs index f453df013..4650e4bba 100644 --- a/runtime/pangoro/src/migration.rs +++ b/runtime/pangoro/src/migration.rs @@ -23,8 +23,8 @@ use crate::*; pub struct CustomOnRuntimeUpgrade; impl frame_support::traits::OnRuntimeUpgrade for CustomOnRuntimeUpgrade { #[cfg(feature = "try-runtime")] - fn pre_upgrade() -> Result<(), &'static str> { - Ok(()) + fn pre_upgrade() -> Result, &'static str> { + Ok(Vec::new()) } #[cfg(feature = "try-runtime")] diff --git a/runtime/pangoro/src/pallets/assets.rs b/runtime/pangoro/src/pallets/assets.rs index 9dc10c67c..f52fb39b1 100644 --- a/runtime/pangoro/src/pallets/assets.rs +++ b/runtime/pangoro/src/pallets/assets.rs @@ -36,7 +36,8 @@ impl pallet_assets::Config for Runtime { type AssetIdParameter = codec::Compact; type Balance = Balance; #[cfg(feature = "runtime-benchmarks")] - type BenchmarkHelper = (); + type BenchmarkHelper = AssetsBenchmarkHelper; + type CallbackHandle = (); type CreateOrigin = frame_support::traits::AsEnsureOriginWithArg< frame_system::EnsureSignedBy, AccountId>, >; diff --git a/runtime/pangoro/src/pallets/evm.rs b/runtime/pangoro/src/pallets/evm.rs index 8c8c68452..1559df6db 100644 --- a/runtime/pangoro/src/pallets/evm.rs +++ b/runtime/pangoro/src/pallets/evm.rs @@ -181,6 +181,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type GasWeightMapping = pallet_evm::FixedGasWeightMapping; type OnChargeTransaction = (); + type OnCreate = (); type PrecompilesType = PangoroPrecompiles; type PrecompilesValue = PrecompilesValue; type Runner = pallet_evm::runner::stack::Runner; diff --git a/runtime/pangoro/src/pallets/proxy.rs b/runtime/pangoro/src/pallets/proxy.rs index 9da74c43d..dae6ddf4c 100644 --- a/runtime/pangoro/src/pallets/proxy.rs +++ b/runtime/pangoro/src/pallets/proxy.rs @@ -77,7 +77,9 @@ impl frame_support::traits::InstanceFilter for ProxyType { ProxyType::Staking => { matches!( c, - RuntimeCall::Session(..) | RuntimeCall::Deposit(..) | RuntimeCall::DarwiniaStaking(..) + RuntimeCall::Session(..) + | RuntimeCall::Deposit(..) + | RuntimeCall::DarwiniaStaking(..) ) }, ProxyType::IdentityJudgement =>