From 00851570ca0695651a2b0de68066219cb194df47 Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Wed, 9 Mar 2022 17:44:56 +0100 Subject: [PATCH] update to substrate commit 46c67a84587a4f02740e956b9736ad0be970c5f9 --- CONTRIBUTING.md | 6 +- Cargo.lock | 463 ++++++++++-------- node/Cargo.toml | 88 ++-- pallets/exchange-rate/Cargo.toml | 18 +- pallets/lockdrop/rpc/Cargo.toml | 18 +- pallets/lockdrop/runtime-api/Cargo.toml | 2 +- pallets/lockdrop/runtime/Cargo.toml | 2 +- pallets/membership/supernodes/Cargo.toml | 14 +- pallets/mining/claims/hardware/Cargo.toml | 18 +- pallets/mining/claims/token/Cargo.toml | 18 +- .../mining/eligibility/hardware/Cargo.toml | 18 +- pallets/mining/eligibility/proxy/Cargo.toml | 22 +- pallets/mining/eligibility/token/Cargo.toml | 18 +- pallets/mining/execution/token/Cargo.toml | 18 +- pallets/mining/rates/hardware/Cargo.toml | 18 +- pallets/mining/rates/token/Cargo.toml | 18 +- pallets/mining/sampling/hardware/Cargo.toml | 18 +- pallets/mining/sampling/token/Cargo.toml | 18 +- pallets/mining/setting/hardware/Cargo.toml | 18 +- pallets/mining/setting/token/Cargo.toml | 18 +- pallets/primitives/Cargo.toml | 6 +- .../roaming-accounting-policies/Cargo.toml | 18 +- .../roaming-agreement-policies/Cargo.toml | 18 +- .../roaming-billing-policies/Cargo.toml | 18 +- .../roaming-charging-policies/Cargo.toml | 18 +- .../roaming-device-profiles/Cargo.toml | 18 +- pallets/roaming/roaming-devices/Cargo.toml | 18 +- .../roaming-network-profiles/Cargo.toml | 18 +- .../roaming-network-servers/Cargo.toml | 18 +- pallets/roaming/roaming-networks/Cargo.toml | 24 +- pallets/roaming/roaming-operators/Cargo.toml | 18 +- .../roaming/roaming-organizations/Cargo.toml | 18 +- .../roaming/roaming-packet-bundles/Cargo.toml | 18 +- .../roaming-routing-profiles/Cargo.toml | 18 +- .../roaming-service-profiles/Cargo.toml | 18 +- pallets/roaming/roaming-sessions/Cargo.toml | 18 +- pallets/treasury/dao/Cargo.toml | 20 +- runtime/Cargo.toml | 110 ++--- traits/account-set/Cargo.toml | 2 +- 39 files changed, 662 insertions(+), 583 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 26460522b..2f7064a26 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -398,19 +398,19 @@ ERROR tokio-runtime-worker sync: Bootnode with peer id `12D3KooWKS7jU8ti7S5PDqCN * Question: How to overcome this error when updating my Substrate-based chain to a more recent commit of Substrate? -After updating the DataHighway-DHX/node repository from [Substrate commit 027368fe34e9a57ead752d4f900db6b5f85352e6](https://github.com/paritytech/substrate/commits/master?before=9b5e654074655737ac041d059d88bfd68593b069+245&branch=master) to Substrate commit 0ac1a00c54a65416ed44e4c779f1483e32355130 in this DataHighway commit https://github.com/DataHighway-DHX/node/pull/215/commits/0a56ac0b6bb73b6faac8dcb0a533768dfb644f39 by doing a search and replace for `027368fe34e9a57ead752d4f900db6b5f85352e6` and replacing it with contents like the following, as well as applying any other changes as necessary: +After updating the DataHighway-DHX/node repository from [Substrate commit 027368fe34e9a57ead752d4f900db6b5f85352e6](https://github.com/paritytech/substrate/commits/master?before=9b5e654074655737ac041d059d88bfd68593b069+245&branch=master) to Substrate commit 46c67a84587a4f02740e956b9736ad0be970c5f9 in this DataHighway commit https://github.com/DataHighway-DHX/node/pull/215/commits/0a56ac0b6bb73b6faac8dcb0a533768dfb644f39 by doing a search and replace for `027368fe34e9a57ead752d4f900db6b5f85352e6` and replacing it with contents like the following, as well as applying any other changes as necessary: ``` sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '027368fe34e9a57ead752d4f900db6b5f85352e6', default-features = false } ``` and replacing it with ``` -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } ``` when trying to compile it with `cargo build --release` it gave error: ``` error: failed to select a version for the requirement `sp-keystore = "*"` candidate versions found which didn't match: 0.10.0 -location searched: Git repository https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#50ab759f +location searched: Git repository https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#50ab759f required by package `datahighway v3.0.6 (/Users/ls2/code/DataHighway-DHX/node/node)` ``` each error like this was caused because the Substrate repository was using a version like `0.10.0-dev`, whereas only `0.10.0` was available at https://docs.rs/sp-runtime. diff --git a/Cargo.lock b/Cargo.lock index 964394c8d..7d3f95cd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -466,6 +466,15 @@ dependencies = [ "opaque-debug 0.3.0", ] +[[package]] +name = "blake2" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9cf849ee05b2ee5fba5e36f97ff8ec2533916700fc0758d40d92136a42f3388" +dependencies = [ + "digest 0.10.3", +] + [[package]] name = "blake2-rfc" version = "0.2.18" @@ -1334,6 +1343,7 @@ checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506" dependencies = [ "block-buffer 0.10.2", "crypto-common", + "subtle", ] [[package]] @@ -1615,7 +1625,7 @@ dependencies = [ "log", "num-traits", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "scale-info", ] @@ -1659,7 +1669,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", ] @@ -1677,7 +1687,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -1699,7 +1709,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "Inflector", "chrono", @@ -1726,7 +1736,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -1740,7 +1750,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -1768,7 +1778,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "bitflags", "frame-metadata", @@ -1797,7 +1807,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -1809,7 +1819,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", @@ -1821,7 +1831,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro2", "quote", @@ -1831,7 +1841,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "log", @@ -1848,7 +1858,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "sp-api", @@ -2616,7 +2626,7 @@ dependencies = [ "jsonrpc-server-utils", "log", "net2", - "parking_lot", + "parking_lot 0.11.2", "unicase", ] @@ -2631,7 +2641,7 @@ dependencies = [ "jsonrpc-server-utils", "log", "parity-tokio-ipc", - "parking_lot", + "parking_lot 0.11.2", "tower-service", ] @@ -2645,7 +2655,7 @@ dependencies = [ "jsonrpc-core", "lazy_static", "log", - "parking_lot", + "parking_lot 0.11.2", "rand 0.7.3", "serde", ] @@ -2679,7 +2689,7 @@ dependencies = [ "jsonrpc-server-utils", "log", "parity-ws", - "parking_lot", + "parking_lot 0.11.2", "slab", ] @@ -2726,7 +2736,7 @@ checksum = "c3b6b85fc643f5acd0bffb2cc8a6d150209379267af0d41db72170021841f9f5" dependencies = [ "kvdb", "parity-util-mem", - "parking_lot", + "parking_lot 0.11.2", ] [[package]] @@ -2741,7 +2751,7 @@ dependencies = [ "num_cpus", "owning_ref", "parity-util-mem", - "parking_lot", + "parking_lot 0.11.2", "regex", "rocksdb", "smallvec", @@ -2826,7 +2836,7 @@ dependencies = [ "libp2p-websocket", "libp2p-yamux", "multiaddr", - "parking_lot", + "parking_lot 0.11.2", "pin-project 1.0.10", "smallvec", "wasm-timer", @@ -2852,7 +2862,7 @@ dependencies = [ "multiaddr", "multihash 0.14.0", "multistream-select", - "parking_lot", + "parking_lot 0.11.2", "pin-project 1.0.10", "prost", "prost-build", @@ -3026,7 +3036,7 @@ dependencies = [ "libp2p-core", "log", "nohash-hasher", - "parking_lot", + "parking_lot 0.11.2", "rand 0.7.3", "smallvec", "unsigned-varint 0.7.1", @@ -3097,7 +3107,7 @@ dependencies = [ "pin-project 1.0.10", "rand 0.7.3", "salsa20", - "sha3", + "sha3 0.9.1", ] [[package]] @@ -3259,7 +3269,7 @@ checksum = "4e7362abb8867d7187e7e93df17f460d554c997fc5c8ac57dc1259057f6889af" dependencies = [ "futures 0.3.21", "libp2p-core", - "parking_lot", + "parking_lot 0.11.2", "thiserror", "yamux", ] @@ -3973,7 +3983,7 @@ dependencies = [ "generic-array 0.14.5", "multihash-derive", "sha2 0.9.9", - "sha3", + "sha3 0.9.1", "unsigned-varint 0.5.1", ] @@ -4257,7 +4267,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4273,7 +4283,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4289,7 +4299,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4304,7 +4314,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4319,7 +4329,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4334,7 +4344,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4351,7 +4361,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4369,7 +4379,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4386,7 +4396,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "assert_matches", "frame-benchmarking", @@ -4403,7 +4413,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4419,7 +4429,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4442,7 +4452,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4459,7 +4469,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4482,7 +4492,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4498,7 +4508,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4517,7 +4527,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4533,7 +4543,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4550,7 +4560,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4564,7 +4574,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4581,7 +4591,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4597,7 +4607,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4611,7 +4621,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4627,7 +4637,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4643,7 +4653,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4664,7 +4674,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-election-provider-support", "frame-support", @@ -4685,7 +4695,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -4696,7 +4706,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4710,7 +4720,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-benchmarking", "frame-support", @@ -4727,7 +4737,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4745,7 +4755,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4762,7 +4772,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4779,7 +4789,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -4790,7 +4800,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4806,7 +4816,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-support", "frame-system", @@ -4832,7 +4842,7 @@ dependencies = [ "log", "lz4", "memmap2 0.2.3", - "parking_lot", + "parking_lot 0.11.2", "rand 0.8.5", "snap", ] @@ -4893,7 +4903,7 @@ dependencies = [ "hashbrown 0.11.2", "impl-trait-for-tuples", "parity-util-mem-derive", - "parking_lot", + "parking_lot 0.11.2", "primitive-types", "smallvec", "winapi 0.3.9", @@ -4957,7 +4967,17 @@ checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" dependencies = [ "instant", "lock_api", - "parking_lot_core", + "parking_lot_core 0.8.5", +] + +[[package]] +name = "parking_lot" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58" +dependencies = [ + "lock_api", + "parking_lot_core 0.9.1", ] [[package]] @@ -4974,6 +4994,19 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "parking_lot_core" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28141e0cc4143da2443301914478dc976a61ffdb3f043058310c70df2fed8954" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "redox_syscall", + "smallvec", + "windows-sys", +] + [[package]] name = "paste" version = "1.0.6" @@ -5256,7 +5289,7 @@ dependencies = [ "fnv", "lazy_static", "memchr", - "parking_lot", + "parking_lot 0.11.2", "thiserror", ] @@ -6114,7 +6147,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "log", "sp-core", @@ -6125,7 +6158,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", @@ -6152,7 +6185,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "futures-timer", @@ -6175,7 +6208,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -6191,7 +6224,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "impl-trait-for-tuples", "memmap2 0.5.3", @@ -6208,7 +6241,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -6219,7 +6252,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "chrono", "clap", @@ -6257,14 +6290,14 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "fnv", "futures 0.3.21", "hash-db", "log", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sc-executor", "sc-transaction-pool-api", "sc-utils", @@ -6285,7 +6318,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "hash-db", "kvdb", @@ -6295,7 +6328,7 @@ dependencies = [ "log", "parity-db", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sc-client-api", "sc-state-db", "sp-arithmetic", @@ -6310,14 +6343,14 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", "futures-timer", "libp2p", "log", - "parking_lot", + "parking_lot 0.11.2", "sc-client-api", "sc-utils", "serde", @@ -6334,7 +6367,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", @@ -6363,7 +6396,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "fork-tree", "parity-scale-codec", @@ -6376,7 +6409,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", @@ -6401,7 +6434,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "sc-client-api", "sp-authorship", @@ -6412,14 +6445,13 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "lazy_static", "libsecp256k1", - "log", "lru 0.6.6", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sc-executor-common", "sc-executor-wasmi", "sc-executor-wasmtime", @@ -6434,13 +6466,14 @@ dependencies = [ "sp-trie", "sp-version", "sp-wasm-interface", + "tracing", "wasmi", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "environmental", "parity-scale-codec", @@ -6457,7 +6490,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "log", "parity-scale-codec", @@ -6473,7 +6506,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "cfg-if 1.0.0", "libc", @@ -6491,8 +6524,9 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ + "ahash", "async-trait", "dyn-clone", "finality-grandpa", @@ -6501,7 +6535,7 @@ dependencies = [ "futures-timer", "log", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "rand 0.8.5", "sc-block-builder", "sc-chain-spec", @@ -6529,7 +6563,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "ansi_term", "futures 0.3.21", @@ -6546,11 +6580,11 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "hex", - "parking_lot", + "parking_lot 0.11.2", "serde_json", "sp-application-crypto", "sp-core", @@ -6561,7 +6595,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-std", "async-trait", @@ -6582,7 +6616,7 @@ dependencies = [ "log", "lru 0.7.3", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "pin-project 1.0.10", "prost", "prost-build", @@ -6611,8 +6645,9 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ + "ahash", "futures 0.3.21", "futures-timer", "libp2p", @@ -6627,7 +6662,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "bytes 1.1.0", "fnv", @@ -6639,7 +6674,7 @@ dependencies = [ "num_cpus", "once_cell", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "rand 0.7.3", "sc-client-api", "sc-network", @@ -6655,7 +6690,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "libp2p", @@ -6668,7 +6703,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -6677,7 +6712,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "hash-db", @@ -6685,7 +6720,7 @@ dependencies = [ "jsonrpc-pubsub", "log", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sc-block-builder", "sc-chain-spec", "sc-client-api", @@ -6708,7 +6743,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -6717,7 +6752,7 @@ dependencies = [ "jsonrpc-pubsub", "log", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sc-chain-spec", "sc-transaction-pool-api", "serde", @@ -6733,7 +6768,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "jsonrpc-core", @@ -6750,7 +6785,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "directories", @@ -6763,7 +6798,7 @@ dependencies = [ "log", "parity-scale-codec", "parity-util-mem", - "parking_lot", + "parking_lot 0.11.2", "pin-project 1.0.10", "rand 0.7.3", "sc-block-builder", @@ -6814,13 +6849,13 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "log", "parity-scale-codec", "parity-util-mem", "parity-util-mem-derive", - "parking_lot", + "parking_lot 0.11.2", "sc-client-api", "sp-core", ] @@ -6828,13 +6863,13 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "chrono", "futures 0.3.21", "libp2p", "log", - "parking_lot", + "parking_lot 0.11.2", "pin-project 1.0.10", "rand 0.7.3", "serde", @@ -6846,7 +6881,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "ansi_term", "atty", @@ -6855,7 +6890,7 @@ dependencies = [ "libc", "log", "once_cell", - "parking_lot", + "parking_lot 0.11.2", "regex", "rustc-hash", "sc-client-api", @@ -6877,7 +6912,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -6888,7 +6923,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "futures-timer", @@ -6896,7 +6931,7 @@ dependencies = [ "log", "parity-scale-codec", "parity-util-mem", - "parking_lot", + "parking_lot 0.11.2", "retain_mut", "sc-client-api", "sc-transaction-pool-api", @@ -6915,7 +6950,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "log", @@ -6928,12 +6963,12 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "futures-timer", "lazy_static", - "parking_lot", + "parking_lot 0.11.2", "prometheus", ] @@ -7200,6 +7235,16 @@ dependencies = [ "opaque-debug 0.3.0", ] +[[package]] +name = "sha3" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "881bf8156c87b6301fc5ca6b27f11eeb2761224c7081e69b409d5a1951a70c86" +dependencies = [ + "digest 0.10.3", + "keccak", +] + [[package]] name = "sharded-slab" version = "0.1.4" @@ -7277,7 +7322,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6142f7c25e94f6fd25a32c3348ec230df9109b463f59c8c7acc4bd34936babb7" dependencies = [ "aes-gcm", - "blake2", + "blake2 0.9.2", "chacha20poly1305", "rand 0.8.5", "rand_core 0.6.3", @@ -7328,7 +7373,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "hash-db", "log", @@ -7345,9 +7390,9 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ - "blake2-rfc", + "blake2 0.10.4", "proc-macro-crate 1.1.3", "proc-macro2", "quote", @@ -7357,7 +7402,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7370,7 +7415,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "integer-sqrt", "num-traits", @@ -7385,7 +7430,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7398,7 +7443,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "parity-scale-codec", @@ -7410,7 +7455,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "sp-api", @@ -7422,13 +7467,13 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "log", "lru 0.7.3", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sp-api", "sp-consensus", "sp-database", @@ -7440,7 +7485,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", @@ -7459,7 +7504,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "parity-scale-codec", @@ -7477,7 +7522,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7489,7 +7534,7 @@ dependencies = [ [[package]] name = "sp-core" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "base58", "bitflags", @@ -7509,7 +7554,7 @@ dependencies = [ "num-traits", "parity-scale-codec", "parity-util-mem", - "parking_lot", + "parking_lot 0.11.2", "primitive-types", "rand 0.7.3", "regex", @@ -7517,7 +7562,6 @@ dependencies = [ "schnorrkel", "secrecy", "serde", - "sha2 0.10.2", "sp-core-hashing", "sp-debug-derive", "sp-externalities", @@ -7528,8 +7572,6 @@ dependencies = [ "substrate-bip39", "thiserror", "tiny-bip39", - "tiny-keccak", - "twox-hash", "wasmi", "zeroize", ] @@ -7537,20 +7579,21 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ - "blake2-rfc", + "blake2 0.10.4", "byteorder", + "digest 0.10.3", "sha2 0.10.2", + "sha3 0.10.1", "sp-std", - "tiny-keccak", "twox-hash", ] [[package]] name = "sp-core-hashing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro2", "quote", @@ -7561,16 +7604,16 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "kvdb", - "parking_lot", + "parking_lot 0.11.2", ] [[package]] name = "sp-debug-derive" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro2", "quote", @@ -7580,7 +7623,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "environmental", "parity-scale-codec", @@ -7591,7 +7634,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "finality-grandpa", "log", @@ -7609,7 +7652,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -7623,14 +7666,14 @@ dependencies = [ [[package]] name = "sp-io" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "futures 0.3.21", "hash-db", "libsecp256k1", "log", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "sp-core", "sp-externalities", "sp-keystore", @@ -7647,7 +7690,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "lazy_static", "sp-core", @@ -7658,13 +7701,13 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures 0.3.21", "merlin", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "schnorrkel", "serde", "sp-core", @@ -7675,7 +7718,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "thiserror", "zstd", @@ -7684,7 +7727,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7699,7 +7742,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -7710,7 +7753,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "sp-api", "sp-core", @@ -7720,7 +7763,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "backtrace", "lazy_static", @@ -7730,7 +7773,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "rustc-hash", "serde", @@ -7740,7 +7783,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "either", "hash256-std-hasher", @@ -7762,7 +7805,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7779,7 +7822,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -7791,7 +7834,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "serde", "serde_json", @@ -7800,7 +7843,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7814,7 +7857,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "scale-info", @@ -7825,13 +7868,13 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.11.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "hash-db", "log", "num-traits", "parity-scale-codec", - "parking_lot", + "parking_lot 0.11.2", "rand 0.7.3", "smallvec", "sp-core", @@ -7848,12 +7891,12 @@ dependencies = [ [[package]] name = "sp-std" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" [[package]] name = "sp-storage" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -7866,7 +7909,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "log", "sp-core", @@ -7879,7 +7922,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "futures-timer", @@ -7895,7 +7938,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "sp-std", @@ -7907,7 +7950,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "sp-api", "sp-runtime", @@ -7916,7 +7959,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-trait", "log", @@ -7932,7 +7975,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "hash-db", "memory-db", @@ -7947,7 +7990,7 @@ dependencies = [ [[package]] name = "sp-version" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "impl-serde", "parity-scale-codec", @@ -7964,7 +8007,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -7975,7 +8018,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "impl-trait-for-tuples", "log", @@ -8074,7 +8117,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "platforms", ] @@ -8082,7 +8125,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.21", @@ -8104,7 +8147,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "async-std", "futures-util", @@ -8118,7 +8161,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?rev=0ac1a00c54a65416ed44e4c779f1483e32355130#0ac1a00c54a65416ed44e4c779f1483e32355130" +source = "git+https://github.com/paritytech/substrate?rev=46c67a84587a4f02740e956b9736ad0be970c5f9#46c67a84587a4f02740e956b9736ad0be970c5f9" dependencies = [ "ansi_term", "build-helper", @@ -8269,15 +8312,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "tiny-keccak" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -dependencies = [ - "crunchy", -] - [[package]] name = "tinyvec" version = "1.5.1" @@ -8305,6 +8339,7 @@ dependencies = [ "mio 0.8.0", "num_cpus", "once_cell", + "parking_lot 0.12.0", "pin-project-lite 0.2.8", "signal-hook-registry", "socket2 0.4.4", @@ -8436,7 +8471,7 @@ dependencies = [ "chrono", "lazy_static", "matchers", - "parking_lot", + "parking_lot 0.11.2", "regex", "serde", "serde_json", @@ -8507,7 +8542,7 @@ dependencies = [ "lazy_static", "log", "lru-cache", - "parking_lot", + "parking_lot 0.11.2", "resolv-conf", "smallvec", "thiserror", @@ -8533,6 +8568,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0" dependencies = [ "cfg-if 1.0.0", + "digest 0.10.3", "rand 0.8.5", "static_assertions", ] @@ -8844,7 +8880,7 @@ checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" dependencies = [ "futures 0.3.21", "js-sys", - "parking_lot", + "parking_lot 0.11.2", "pin-utils", "wasm-bindgen", "wasm-bindgen-futures", @@ -9132,6 +9168,49 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows-sys" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3df6e476185f92a12c072be4a189a0210dcdcf512a1891d6dff9edb874deadc6" +dependencies = [ + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_msvc" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8e92753b1c443191654ec532f14c199742964a061be25d77d7a96f09db20bf5" + +[[package]] +name = "windows_i686_gnu" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a711c68811799e017b6038e0922cb27a5e2f43a2ddb609fe0b6f3eeda9de615" + +[[package]] +name = "windows_i686_msvc" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "146c11bb1a02615db74680b32a68e2d61f553cc24c4eb5b4ca10311740e44172" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c912b12f7454c6620635bbff3450962753834be2a594819bd5e945af18ec64bc" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "504a2476202769977a040c6364301a3f65d0cc9e3fb08600b2bda150a0488316" + [[package]] name = "winreg" version = "0.6.2" @@ -9177,7 +9256,7 @@ dependencies = [ "futures 0.3.21", "log", "nohash-hasher", - "parking_lot", + "parking_lot 0.11.2", "rand 0.8.5", "static_assertions", ] diff --git a/node/Cargo.toml b/node/Cargo.toml index 99b2e860a..fb4b16803 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -12,7 +12,7 @@ name = 'datahighway' targets = ['x86_64-unknown-linux-gnu'] [build-dependencies] -substrate-build-script-utils = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } +substrate-build-script-utils = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } vergen = '3.0.4' [dependencies] @@ -29,50 +29,50 @@ serde_json = '1.0.74' datahighway-runtime = { version = '3.0.6', path = '../runtime' } # Substrate dependencies -frame-benchmarking = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -frame-benchmarking-cli = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } +frame-benchmarking = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +frame-benchmarking-cli = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } module-primitives = { version = '3.0.6', default-features = false, path = '../pallets/primitives' } -pallet-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -pallet-democracy = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -pallet-im-online = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -pallet-transaction-payment-rpc = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-basic-authorship = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-cli = { features = ['wasmtime'], git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-client-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-consensus-epochs = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-chain-spec = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-finality-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-keystore = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-client-db = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-consensus = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-consensus-slots = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-executor = { features = ['wasmtime'], git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-rpc = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-rpc-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-service = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false, features = ['wasmtime'] } -sc-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-transaction-pool-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-block-builder = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-blockchain = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-consensus = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-finality-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-keystore = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-network = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-authorship = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-tracing = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sp-transaction-storage-proof = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-consensus-uncles = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -sc-telemetry = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } -substrate-frame-rpc-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130' } +pallet-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +pallet-democracy = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +pallet-im-online = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +pallet-transaction-payment-rpc = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-basic-authorship = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-cli = { features = ['wasmtime'], git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-client-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-consensus-epochs = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-chain-spec = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-finality-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-keystore = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-client-db = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-consensus = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-consensus-slots = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-executor = { features = ['wasmtime'], git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-rpc = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-rpc-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-service = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false, features = ['wasmtime'] } +sc-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-transaction-pool-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-block-builder = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-blockchain = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-consensus = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-finality-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-keystore = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-network = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-authorship = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-tracing = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sp-transaction-storage-proof = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-consensus-uncles = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +sc-telemetry = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } +substrate-frame-rpc-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9' } [dev-dependencies] futures = { version = '0.3.16' } diff --git a/pallets/exchange-rate/Cargo.toml b/pallets/exchange-rate/Cargo.toml index 08108de1c..149f76b8c 100755 --- a/pallets/exchange-rate/Cargo.toml +++ b/pallets/exchange-rate/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../roaming/roaming-operators' } diff --git a/pallets/lockdrop/rpc/Cargo.toml b/pallets/lockdrop/rpc/Cargo.toml index 13760a4cd..0bed3a85c 100644 --- a/pallets/lockdrop/rpc/Cargo.toml +++ b/pallets/lockdrop/rpc/Cargo.toml @@ -9,15 +9,15 @@ web3 = "0.13.0" codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = false, features = ['derive', 'max-encoded-len'] } scale-info = { version = '1.0', default-features = false, features = ['derive'] } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } log = { version = '0.4.8' } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/lockdrop/runtime-api/Cargo.toml b/pallets/lockdrop/runtime-api/Cargo.toml index 75ee8a802..3142a2d6d 100644 --- a/pallets/lockdrop/runtime-api/Cargo.toml +++ b/pallets/lockdrop/runtime-api/Cargo.toml @@ -5,7 +5,7 @@ authors = ['Ilya Beregovskiy'] edition = "2021" [dependencies] -sp-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false} +sp-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false} [features] default = ["std"] diff --git a/pallets/lockdrop/runtime/Cargo.toml b/pallets/lockdrop/runtime/Cargo.toml index cff95daa8..c849551fe 100644 --- a/pallets/lockdrop/runtime/Cargo.toml +++ b/pallets/lockdrop/runtime/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Ilya Beregovskiy"] edition = "2021" [dependencies] -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } [features] default = ['std'] diff --git a/pallets/membership/supernodes/Cargo.toml b/pallets/membership/supernodes/Cargo.toml index e3e737d39..a701b1f41 100644 --- a/pallets/membership/supernodes/Cargo.toml +++ b/pallets/membership/supernodes/Cargo.toml @@ -20,18 +20,18 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } # Substrate packages -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } # local packages account-set = { path = '../../../traits/account-set', default-features = false } [dev-dependencies] -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } [features] default = ['std'] diff --git a/pallets/mining/claims/hardware/Cargo.toml b/pallets/mining/claims/hardware/Cargo.toml index f612bbac1..8d3d05e6a 100644 --- a/pallets/mining/claims/hardware/Cargo.toml +++ b/pallets/mining/claims/hardware/Cargo.toml @@ -34,15 +34,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-hardware = { default-features = false, package = 'mining-setting-hardware', path = '../../../mining/setting/hardware' } diff --git a/pallets/mining/claims/token/Cargo.toml b/pallets/mining/claims/token/Cargo.toml index ce5993055..e0e365b57 100644 --- a/pallets/mining/claims/token/Cargo.toml +++ b/pallets/mining/claims/token/Cargo.toml @@ -34,15 +34,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-token = { default-features = false, package = 'mining-setting-token', path = '../../../mining/setting/token' } diff --git a/pallets/mining/eligibility/hardware/Cargo.toml b/pallets/mining/eligibility/hardware/Cargo.toml index d0121fe80..c449f4c78 100644 --- a/pallets/mining/eligibility/hardware/Cargo.toml +++ b/pallets/mining/eligibility/hardware/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-hardware = { default-features = false, package = 'mining-setting-hardware', path = '../../../mining/setting/hardware' } diff --git a/pallets/mining/eligibility/proxy/Cargo.toml b/pallets/mining/eligibility/proxy/Cargo.toml index 8fee2b823..aafd0f7a7 100644 --- a/pallets/mining/eligibility/proxy/Cargo.toml +++ b/pallets/mining/eligibility/proxy/Cargo.toml @@ -34,18 +34,18 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } module-primitives = { version = '3.0.6', default-features = false, path = '../../../primitives' } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default_features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default_features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } chrono = { version = '0.4.19', default_features = false } account-set = { path = '../../../../traits/account-set', default-features = false } diff --git a/pallets/mining/eligibility/token/Cargo.toml b/pallets/mining/eligibility/token/Cargo.toml index 285bfe0f7..14f914060 100644 --- a/pallets/mining/eligibility/token/Cargo.toml +++ b/pallets/mining/eligibility/token/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-token = { default-features = false, package = 'mining-setting-token', path = '../../../mining/setting/token' } diff --git a/pallets/mining/execution/token/Cargo.toml b/pallets/mining/execution/token/Cargo.toml index fce7b7c7f..b82c06f34 100644 --- a/pallets/mining/execution/token/Cargo.toml +++ b/pallets/mining/execution/token/Cargo.toml @@ -34,15 +34,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-token = { default-features = false, package = 'mining-setting-token', path = '../../../mining/setting/token' } diff --git a/pallets/mining/rates/hardware/Cargo.toml b/pallets/mining/rates/hardware/Cargo.toml index b9f87a070..8667fe2c4 100644 --- a/pallets/mining/rates/hardware/Cargo.toml +++ b/pallets/mining/rates/hardware/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } diff --git a/pallets/mining/rates/token/Cargo.toml b/pallets/mining/rates/token/Cargo.toml index f5270f9d0..f8057494a 100644 --- a/pallets/mining/rates/token/Cargo.toml +++ b/pallets/mining/rates/token/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } diff --git a/pallets/mining/sampling/hardware/Cargo.toml b/pallets/mining/sampling/hardware/Cargo.toml index 237743a87..f270ac71b 100644 --- a/pallets/mining/sampling/hardware/Cargo.toml +++ b/pallets/mining/sampling/hardware/Cargo.toml @@ -31,15 +31,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-hardware = { default-features = false, package = 'mining-setting-hardware', path = '../../../mining/setting/hardware' } diff --git a/pallets/mining/sampling/token/Cargo.toml b/pallets/mining/sampling/token/Cargo.toml index 2bef4b3e9..bf96df240 100644 --- a/pallets/mining/sampling/token/Cargo.toml +++ b/pallets/mining/sampling/token/Cargo.toml @@ -31,15 +31,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } mining-setting-token = { default-features = false, package = 'mining-setting-token', path = '../../../mining/setting/token' } diff --git a/pallets/mining/setting/hardware/Cargo.toml b/pallets/mining/setting/hardware/Cargo.toml index 468f9ece9..7afa1bdb4 100644 --- a/pallets/mining/setting/hardware/Cargo.toml +++ b/pallets/mining/setting/hardware/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } diff --git a/pallets/mining/setting/token/Cargo.toml b/pallets/mining/setting/token/Cargo.toml index 48a62c375..97012e03d 100644 --- a/pallets/mining/setting/token/Cargo.toml +++ b/pallets/mining/setting/token/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../../roaming/roaming-operators' } diff --git a/pallets/primitives/Cargo.toml b/pallets/primitives/Cargo.toml index 4d33a6d6d..b0897061d 100644 --- a/pallets/primitives/Cargo.toml +++ b/pallets/primitives/Cargo.toml @@ -8,10 +8,10 @@ edition = '2018' serde = { version = '1.0.136', optional = true, features = ['derive'] } codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = false, features = ['derive', 'max-encoded-len'] } scale-info = { version = '1.0', default-features = false, features = ['derive'] } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } bitmask = { version = '0.5.0', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } [features] default = ['std'] diff --git a/pallets/roaming/roaming-accounting-policies/Cargo.toml b/pallets/roaming/roaming-accounting-policies/Cargo.toml index b385a9b48..7263bcc32 100644 --- a/pallets/roaming/roaming-accounting-policies/Cargo.toml +++ b/pallets/roaming/roaming-accounting-policies/Cargo.toml @@ -31,15 +31,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-networks = { default-features = false, package = 'roaming-networks', path = '../roaming-networks' } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../roaming-operators' } diff --git a/pallets/roaming/roaming-agreement-policies/Cargo.toml b/pallets/roaming/roaming-agreement-policies/Cargo.toml index 1c7ea6027..334f9e01a 100644 --- a/pallets/roaming/roaming-agreement-policies/Cargo.toml +++ b/pallets/roaming/roaming-agreement-policies/Cargo.toml @@ -32,15 +32,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } # env = { default-features = false, package = 'env', path = '../../env' } roaming-networks = { default-features = false, package = 'roaming-networks', path = '../roaming-networks' } diff --git a/pallets/roaming/roaming-billing-policies/Cargo.toml b/pallets/roaming/roaming-billing-policies/Cargo.toml index 6d41276f4..4bdb9d29a 100644 --- a/pallets/roaming/roaming-billing-policies/Cargo.toml +++ b/pallets/roaming/roaming-billing-policies/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-charging-policies/Cargo.toml b/pallets/roaming/roaming-charging-policies/Cargo.toml index b65e3c1ed..5d03f1a33 100644 --- a/pallets/roaming/roaming-charging-policies/Cargo.toml +++ b/pallets/roaming/roaming-charging-policies/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-device-profiles/Cargo.toml b/pallets/roaming/roaming-device-profiles/Cargo.toml index 989db4a0d..be3b39ec3 100644 --- a/pallets/roaming/roaming-device-profiles/Cargo.toml +++ b/pallets/roaming/roaming-device-profiles/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-devices/Cargo.toml b/pallets/roaming/roaming-devices/Cargo.toml index 44a14d0a4..dd6469b4a 100644 --- a/pallets/roaming/roaming-devices/Cargo.toml +++ b/pallets/roaming/roaming-devices/Cargo.toml @@ -32,15 +32,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-network-profiles/Cargo.toml b/pallets/roaming/roaming-network-profiles/Cargo.toml index e7852a8e1..521acac3c 100644 --- a/pallets/roaming/roaming-network-profiles/Cargo.toml +++ b/pallets/roaming/roaming-network-profiles/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-network-servers/Cargo.toml b/pallets/roaming/roaming-network-servers/Cargo.toml index 5c419978d..f974454a4 100644 --- a/pallets/roaming/roaming-network-servers/Cargo.toml +++ b/pallets/roaming/roaming-network-servers/Cargo.toml @@ -30,15 +30,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-networks/Cargo.toml b/pallets/roaming/roaming-networks/Cargo.toml index da5b0fcb3..bce341856 100644 --- a/pallets/roaming/roaming-networks/Cargo.toml +++ b/pallets/roaming/roaming-networks/Cargo.toml @@ -32,21 +32,21 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../roaming-operators' } [dev-dependencies] -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } diff --git a/pallets/roaming/roaming-operators/Cargo.toml b/pallets/roaming/roaming-operators/Cargo.toml index 013f1c9d2..d825f99bf 100644 --- a/pallets/roaming/roaming-operators/Cargo.toml +++ b/pallets/roaming/roaming-operators/Cargo.toml @@ -30,15 +30,15 @@ std = [ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = false, features = ['derive', 'max-encoded-len'] } scale-info = { version = '1.0', default-features = false, features = ['derive'] } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-organizations/Cargo.toml b/pallets/roaming/roaming-organizations/Cargo.toml index c7b5b136d..b0bb784bd 100644 --- a/pallets/roaming/roaming-organizations/Cargo.toml +++ b/pallets/roaming/roaming-organizations/Cargo.toml @@ -31,15 +31,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-packet-bundles/Cargo.toml b/pallets/roaming/roaming-packet-bundles/Cargo.toml index bc77d9e41..59b18b925 100644 --- a/pallets/roaming/roaming-packet-bundles/Cargo.toml +++ b/pallets/roaming/roaming-packet-bundles/Cargo.toml @@ -34,15 +34,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-routing-profiles/Cargo.toml b/pallets/roaming/roaming-routing-profiles/Cargo.toml index 672eb762a..0734b964d 100644 --- a/pallets/roaming/roaming-routing-profiles/Cargo.toml +++ b/pallets/roaming/roaming-routing-profiles/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-service-profiles/Cargo.toml b/pallets/roaming/roaming-service-profiles/Cargo.toml index 97e4511a2..f1d60f496 100644 --- a/pallets/roaming/roaming-service-profiles/Cargo.toml +++ b/pallets/roaming/roaming-service-profiles/Cargo.toml @@ -31,15 +31,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/roaming/roaming-sessions/Cargo.toml b/pallets/roaming/roaming-sessions/Cargo.toml index c7df410f7..64ba24413 100644 --- a/pallets/roaming/roaming-sessions/Cargo.toml +++ b/pallets/roaming/roaming-sessions/Cargo.toml @@ -33,15 +33,15 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } serde = { version = '1.0.136', optional = true, features = ['derive'] } diff --git a/pallets/treasury/dao/Cargo.toml b/pallets/treasury/dao/Cargo.toml index 1cbb76a7b..7b7219bcb 100644 --- a/pallets/treasury/dao/Cargo.toml +++ b/pallets/treasury/dao/Cargo.toml @@ -31,16 +31,16 @@ codec = { version = '2.3.1', package = 'parity-scale-codec', default-features = scale-info = { version = '1.0', default-features = false, features = ['derive'] } log = { version = '0.4.14', default-features = false } safe-mix = { version = '1.0.0', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } roaming-operators = { default-features = false, package = 'roaming-operators', path = '../../roaming/roaming-operators' } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index e717793c7..ab918db1c 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -18,63 +18,63 @@ serde = { version = '1.0.136', optional = true, features = ['derive'] } static_assertions = '1.1.0' # primitives -sp-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-block-builder = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-core = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-inherents = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-io = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-offchain = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-session = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-staking = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-transaction-storage-proof = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-version = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -sp-npos-elections = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-block-builder = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-core = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-inherents = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-io = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-offchain = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-runtime = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-session = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-staking = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-transaction-storage-proof = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-version = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +sp-npos-elections = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } module-primitives = { default-features = false, path = '../pallets/primitives' } # frame dependencies -frame-executive = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-system-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -frame-election-provider-support = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-aura = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-authorship = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-bags-list = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-bounties = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-child-bounties = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-collective = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-conviction-voting = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-democracy = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-elections-phragmen = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-election-provider-multi-phase = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-identity = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-im-online = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-indices = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-membership = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-multisig = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-offences = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-preimage = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-referenda = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-scheduler = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-session = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false, features = ['historical'] } -pallet-staking = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-staking-reward-curve = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-sudo = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-tips = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } -pallet-utility = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +frame-executive = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-system-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +frame-election-provider-support = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-aura = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-authorship = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-authority-discovery = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-bags-list = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-balances = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-bounties = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-child-bounties = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-collective = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-conviction-voting = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-democracy = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-elections-phragmen = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-election-provider-multi-phase = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-grandpa = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-identity = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-im-online = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-indices = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-membership = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-multisig = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-offences = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-preimage = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-randomness-collective-flip = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-referenda = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-scheduler = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-session = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false, features = ['historical'] } +pallet-staking = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-staking-reward-curve = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-sudo = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-timestamp = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-tips = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-treasury = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } +pallet-utility = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false } # custom pallets @@ -202,4 +202,4 @@ std = [ ] [build-dependencies] -substrate-wasm-builder = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false, package = 'substrate-wasm-builder' } +substrate-wasm-builder = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false, package = 'substrate-wasm-builder' } diff --git a/traits/account-set/Cargo.toml b/traits/account-set/Cargo.toml index 3e6812bba..9d2ce33c3 100644 --- a/traits/account-set/Cargo.toml +++ b/traits/account-set/Cargo.toml @@ -23,4 +23,4 @@ std = [ [dependencies] # Substrate packages -sp-std = { git = 'https://github.com/paritytech/substrate', rev = '0ac1a00c54a65416ed44e4c779f1483e32355130', default-features = false } +sp-std = { git = 'https://github.com/paritytech/substrate', rev = '46c67a84587a4f02740e956b9736ad0be970c5f9', default-features = false }