From 6b1f457078f670397c65636b13c3708daeaff665 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Tue, 8 Jun 2021 18:47:06 +0200 Subject: [PATCH] Companion for #9036 (#3191) * deps: cargo update -p rustls * fix build * update Substrate Co-authored-by: parity-processbot <> --- polkadot/Cargo.lock | 546 ++++++++++++++++---------- polkadot/node/test/service/src/lib.rs | 1 + 2 files changed, 338 insertions(+), 209 deletions(-) diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index 1421dca0f4..f3d6ba663d 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -354,19 +354,6 @@ version = "4.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e91831deabf0d6d7ec49552e489aed63b7456a7a3c46cff62adad428110b0af0" -[[package]] -name = "async-tls" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f23d769dbf1838d5df5156e7b1ad404f4c463d1ac2c6aeb6cd943630f8a8400" -dependencies = [ - "futures-core", - "futures-io", - "rustls 0.19.0", - "webpki 0.21.3", - "webpki-roots", -] - [[package]] name = "async-trait" version = "0.1.48" @@ -485,6 +472,9 @@ name = "beef" version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6736e2428df2ca2848d846c43e88745121a6654696e349ce0054a420815a7409" +dependencies = [ + "serde", +] [[package]] name = "beefy-gadget" @@ -1122,7 +1112,17 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171" dependencies = [ - "core-foundation-sys", + "core-foundation-sys 0.7.0", + "libc", +] + +[[package]] +name = "core-foundation" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a89e2ae426ea83155dccf10c0fa6b1463ef6d5fcb44cee0b224a408fa640a62" +dependencies = [ + "core-foundation-sys 0.8.2", "libc", ] @@ -1132,6 +1132,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac" +[[package]] +name = "core-foundation-sys" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea221b5284a47e40033bf9b66f35f984ec0ea2931eb03505246cd27a963f981b" + [[package]] name = "cpp_demangle" version = "0.3.2" @@ -1142,6 +1148,15 @@ dependencies = [ "glob", ] +[[package]] +name = "cpufeatures" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed00c67cb5d0a7d64a44f6ad2668db7e7530311dd53ea79bcd4fb022c64911c8" +dependencies = [ + "libc", +] + [[package]] name = "cpuid-bool" version = "0.1.0" @@ -1888,7 +1903,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", ] @@ -1906,7 +1921,7 @@ dependencies = [ [[package]] name = "frame-benchmarking" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -1925,7 +1940,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "Inflector", "chrono", @@ -1948,7 +1963,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -1961,7 +1976,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -1976,7 +1991,7 @@ dependencies = [ [[package]] name = "frame-metadata" version = "13.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "serde", @@ -1987,7 +2002,7 @@ dependencies = [ [[package]] name = "frame-support" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "bitflags", "frame-metadata", @@ -2014,7 +2029,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "Inflector", "frame-support-procedural-tools", @@ -2026,7 +2041,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate 1.0.0", @@ -2038,7 +2053,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro2", "quote", @@ -2048,7 +2063,7 @@ dependencies = [ [[package]] name = "frame-support-test" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-metadata", "frame-support", @@ -2068,7 +2083,7 @@ dependencies = [ [[package]] name = "frame-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -2085,7 +2100,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -2099,7 +2114,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-api", @@ -2108,7 +2123,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "parity-scale-codec", @@ -2294,8 +2309,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3a1387e07917c711fb4ee4f48ea0adb04a3c9739e53ef85bf43ae1edc2937a8b" dependencies = [ "futures-io", - "rustls 0.19.0", - "webpki 0.21.3", + "rustls 0.19.1", + "webpki", ] [[package]] @@ -2674,6 +2689,17 @@ dependencies = [ "http 0.2.1", ] +[[package]] +name = "http-body" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60daa14be0e0786db0f03a9e57cb404c9d756eed2b6c62b9ea98ec5743ec75a9" +dependencies = [ + "bytes 1.0.1", + "http 0.2.1", + "pin-project-lite 0.2.4", +] + [[package]] name = "httparse" version = "1.3.4" @@ -2755,6 +2781,28 @@ dependencies = [ "want 0.3.0", ] +[[package]] +name = "hyper" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bf09f61b52cfcf4c00de50df88ae423d6c02354e385a86341133b5338630ad1" +dependencies = [ + "bytes 1.0.1", + "futures-channel", + "futures-core", + "futures-util", + "http 0.2.1", + "http-body 0.4.2", + "httparse", + "httpdate", + "itoa", + "pin-project 1.0.4", + "tokio 1.6.1", + "tower-service", + "tracing", + "want 0.3.0", +] + [[package]] name = "hyper-rustls" version = "0.21.0" @@ -2767,10 +2815,10 @@ dependencies = [ "hyper 0.13.9", "log", "rustls 0.18.0", - "rustls-native-certs", + "rustls-native-certs 0.4.0", "tokio 0.2.21", - "tokio-rustls", - "webpki 0.21.3", + "tokio-rustls 0.14.0", + "webpki", ] [[package]] @@ -3140,9 +3188,9 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.2.0-alpha.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5784ee8bb31988fa2c7a755fe31b0e21aa51894a67e5c99b6d4470f0253bf31a" +checksum = "3b4c85cfa6767333f3e5f3b2f2f765dad2727b0033ee270ae07c599bf43ed5ae" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -3153,40 +3201,44 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.2.0-alpha.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab3dabceeeeb865897661d532d47202eaae71cd2c606f53cb69f1fbc0555a51" +checksum = "c0cf7bd4e93b3b56e59131de7f24afbea871faf914e97bcdd942c86927ab0172" dependencies = [ "async-trait", "beef", "futures-channel", "futures-util", + "hyper 0.14.5", "log", "serde", "serde_json", + "soketto 0.5.0", "thiserror", ] [[package]] name = "jsonrpsee-ws-client" -version = "0.2.0-alpha.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6fdb4390bd25358c62e8b778652a564a1723ba07dca0feb3da439c2253fe59f" +checksum = "6ec51150965544e1a4468f372bdab8545243a1b045d4ab272023aac74c60de32" dependencies = [ - "async-std", - "async-tls", "async-trait", "fnv", "futures 0.3.14", "jsonrpsee-types", "log", "pin-project 1.0.4", + "rustls 0.19.1", + "rustls-native-certs 0.5.0", "serde", "serde_json", - "soketto", + "soketto 0.5.0", "thiserror", + "tokio 0.2.21", + "tokio-rustls 0.15.0", + "tokio-util", "url 2.2.0", - "webpki 0.22.0", ] [[package]] @@ -3827,7 +3879,7 @@ dependencies = [ "log", "quicksink", "rw-stream-sink", - "soketto", + "soketto 0.4.1", "url 2.2.0", "webpki-roots", ] @@ -4017,7 +4069,7 @@ dependencies = [ [[package]] name = "max-encoded-len" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-trait-for-tuples", "max-encoded-len-derive", @@ -4028,7 +4080,7 @@ dependencies = [ [[package]] name = "max-encoded-len-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -4531,7 +4583,7 @@ checksum = "13370dae44474229701bb69b90b4f4dca6404cb0357a2d50d635f1171dc3aa7b" [[package]] name = "pallet-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4546,7 +4598,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4560,7 +4612,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4583,7 +4635,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4613,7 +4665,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4649,7 +4701,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4665,7 +4717,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4680,7 +4732,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4701,7 +4753,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4718,7 +4770,7 @@ dependencies = [ [[package]] name = "pallet-gilt" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4732,7 +4784,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "3.1.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4754,7 +4806,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -4769,7 +4821,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4788,7 +4840,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4804,7 +4856,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4819,7 +4871,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "ckb-merkle-mountain-range", "frame-benchmarking", @@ -4836,7 +4888,7 @@ dependencies = [ [[package]] name = "pallet-mmr-primitives" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4852,7 +4904,7 @@ dependencies = [ [[package]] name = "pallet-mmr-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -4870,7 +4922,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4885,7 +4937,7 @@ dependencies = [ [[package]] name = "pallet-nicks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4898,7 +4950,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4914,7 +4966,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -4936,7 +4988,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4952,7 +5004,7 @@ dependencies = [ [[package]] name = "pallet-randomness-collective-flip" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -4965,7 +5017,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "enumflags2", "frame-support", @@ -4979,7 +5031,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -4994,7 +5046,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -5013,7 +5065,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5029,7 +5081,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -5042,7 +5094,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -5066,7 +5118,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -5077,7 +5129,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "sp-arithmetic", @@ -5086,7 +5138,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -5099,7 +5151,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5117,7 +5169,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5132,7 +5184,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-support", "frame-system", @@ -5148,7 +5200,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -5165,7 +5217,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -5176,7 +5228,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5192,7 +5244,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-benchmarking", "frame-support", @@ -5207,7 +5259,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "enumflags2", "frame-benchmarking", @@ -5375,7 +5427,7 @@ dependencies = [ "mio", "mio-extras", "rand 0.7.3", - "sha-1", + "sha-1 0.8.2", "slab", "url 2.2.0", ] @@ -5570,7 +5622,7 @@ checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d" dependencies = [ "maplit", "pest", - "sha-1", + "sha-1 0.8.2", ] [[package]] @@ -7446,7 +7498,7 @@ dependencies = [ [[package]] name = "remote-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "env_logger 0.8.2", "hex", @@ -7645,20 +7697,20 @@ dependencies = [ "log", "ring", "sct", - "webpki 0.21.3", + "webpki", ] [[package]] name = "rustls" -version = "0.19.0" +version = "0.19.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "064fd21ff87c6e87ed4506e68beb42459caa4a0e2eb144932e6776768556980b" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" dependencies = [ "base64 0.13.0", "log", "ring", "sct", - "webpki 0.21.3", + "webpki", ] [[package]] @@ -7670,7 +7722,19 @@ dependencies = [ "openssl-probe", "rustls 0.18.0", "schannel", - "security-framework", + "security-framework 1.0.0", +] + +[[package]] +name = "rustls-native-certs" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092" +dependencies = [ + "openssl-probe", + "rustls 0.19.1", + "schannel", + "security-framework 2.2.0", ] [[package]] @@ -7736,7 +7800,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "derive_more", @@ -7765,7 +7829,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "futures-timer 3.0.2", @@ -7788,7 +7852,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -7804,7 +7868,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -7825,7 +7889,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -7836,7 +7900,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "chrono", "fdlimit", @@ -7874,7 +7938,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "fnv", @@ -7908,7 +7972,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "blake2-rfc", "hash-db", @@ -7938,7 +8002,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parking_lot 0.11.1", "sc-client-api", @@ -7950,7 +8014,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "derive_more", @@ -7996,7 +8060,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "futures 0.3.14", @@ -8020,7 +8084,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "fork-tree", "parity-scale-codec", @@ -8033,7 +8097,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "futures 0.3.14", @@ -8061,7 +8125,7 @@ dependencies = [ [[package]] name = "sc-consensus-uncles" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "sc-client-api", "sp-authorship", @@ -8072,7 +8136,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "lazy_static", @@ -8101,7 +8165,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "parity-scale-codec", @@ -8118,7 +8182,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "parity-scale-codec", @@ -8133,7 +8197,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "parity-scale-codec", @@ -8150,7 +8214,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "derive_more", @@ -8191,7 +8255,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "finality-grandpa", @@ -8215,7 +8279,7 @@ dependencies = [ [[package]] name = "sc-finality-grandpa-warp-sync" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "futures 0.3.14", @@ -8236,7 +8300,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "ansi_term 0.12.1", "futures 0.3.14", @@ -8254,7 +8318,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "derive_more", @@ -8274,7 +8338,7 @@ dependencies = [ [[package]] name = "sc-light" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "hash-db", "lazy_static", @@ -8293,7 +8357,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-std", "async-trait", @@ -8346,7 +8410,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "futures-timer 3.0.2", @@ -8363,7 +8427,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "bytes 0.5.6", "fnv", @@ -8391,7 +8455,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "libp2p", @@ -8404,7 +8468,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -8413,7 +8477,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "hash-db", @@ -8448,7 +8512,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "futures 0.3.14", @@ -8473,7 +8537,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.1.29", "jsonrpc-core", @@ -8491,7 +8555,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "directories", @@ -8556,7 +8620,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "parity-scale-codec", @@ -8571,7 +8635,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "jsonrpc-core", "jsonrpc-core-client", @@ -8591,7 +8655,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "chrono", "futures 0.3.14", @@ -8611,7 +8675,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "ansi_term 0.12.1", "atty", @@ -8648,7 +8712,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -8659,7 +8723,7 @@ dependencies = [ [[package]] name = "sc-transaction-graph" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "futures 0.3.14", @@ -8681,7 +8745,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "futures-diagnose", @@ -8791,10 +8855,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad502866817f0575705bd7be36e2b2535cc33262d493aa733a2ec862baa2bc2b" dependencies = [ "bitflags", - "core-foundation", - "core-foundation-sys", + "core-foundation 0.7.0", + "core-foundation-sys 0.7.0", "libc", - "security-framework-sys", + "security-framework-sys 1.0.0", +] + +[[package]] +name = "security-framework" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3670b1d2fdf6084d192bc71ead7aabe6c06aa2ea3fbd9cc3ac111fa5c2b1bd84" +dependencies = [ + "bitflags", + "core-foundation 0.9.1", + "core-foundation-sys 0.8.2", + "libc", + "security-framework-sys 2.2.0", ] [[package]] @@ -8803,7 +8880,17 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51ceb04988b17b6d1dcd555390fa822ca5637b4a14e1f5099f13d351bed4d6c7" dependencies = [ - "core-foundation-sys", + "core-foundation-sys 0.7.0", + "libc", +] + +[[package]] +name = "security-framework-sys" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3676258fd3cfe2c9a0ec99ce3038798d847ce3e4bb17746373eb9f0f1ac16339" +dependencies = [ + "core-foundation-sys 0.8.2", "libc", ] @@ -8911,6 +8998,19 @@ dependencies = [ "opaque-debug 0.2.3", ] +[[package]] +name = "sha-1" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c4cfa741c5832d0ef7fab46cabed29c2aae926db0b11bb2069edd8db5e64e16" +dependencies = [ + "block-buffer 0.9.0", + "cfg-if 1.0.0", + "cpufeatures", + "digest 0.9.0", + "opaque-debug 0.3.0", +] + [[package]] name = "sha2" version = "0.8.2" @@ -9105,13 +9205,28 @@ dependencies = [ "httparse", "log", "rand 0.7.3", - "sha-1", + "sha-1 0.8.2", +] + +[[package]] +name = "soketto" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4919971d141dbadaa0e82b5d369e2d7666c98e4625046140615ca363e50d4daa" +dependencies = [ + "base64 0.13.0", + "bytes 1.0.1", + "futures 0.3.14", + "httparse", + "log", + "rand 0.8.3", + "sha-1 0.9.6", ] [[package]] name = "sp-allocator" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "sp-core", @@ -9123,7 +9238,7 @@ dependencies = [ [[package]] name = "sp-api" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "hash-db", "log", @@ -9140,7 +9255,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "blake2-rfc", "proc-macro-crate 1.0.0", @@ -9152,7 +9267,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "max-encoded-len", "parity-scale-codec", @@ -9165,7 +9280,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "integer-sqrt", "num-traits", @@ -9179,7 +9294,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-api", @@ -9191,7 +9306,7 @@ dependencies = [ [[package]] name = "sp-authorship" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "parity-scale-codec", @@ -9203,7 +9318,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-api", @@ -9215,7 +9330,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "log", @@ -9233,7 +9348,7 @@ dependencies = [ [[package]] name = "sp-chain-spec" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "serde", "serde_json", @@ -9242,7 +9357,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "futures 0.3.14", @@ -9269,7 +9384,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "merlin", @@ -9291,7 +9406,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-arithmetic", @@ -9301,7 +9416,7 @@ dependencies = [ [[package]] name = "sp-consensus-vrf" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "schnorrkel", @@ -9313,7 +9428,7 @@ dependencies = [ [[package]] name = "sp-core" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "base58", "blake2-rfc", @@ -9358,7 +9473,7 @@ dependencies = [ [[package]] name = "sp-database" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "kvdb", "parking_lot 0.11.1", @@ -9367,7 +9482,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro2", "quote", @@ -9377,7 +9492,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "environmental", "parity-scale-codec", @@ -9388,7 +9503,7 @@ dependencies = [ [[package]] name = "sp-finality-grandpa" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "finality-grandpa", "log", @@ -9405,7 +9520,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -9419,7 +9534,7 @@ dependencies = [ [[package]] name = "sp-io" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "hash-db", @@ -9444,7 +9559,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "lazy_static", "sp-core", @@ -9455,7 +9570,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "derive_more", @@ -9472,7 +9587,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "ruzstd", "zstd", @@ -9481,7 +9596,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "serde", @@ -9494,7 +9609,7 @@ dependencies = [ [[package]] name = "sp-npos-elections-compact" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "proc-macro2", @@ -9505,7 +9620,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "sp-api", "sp-core", @@ -9515,7 +9630,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "backtrace", ] @@ -9523,7 +9638,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "rustc-hash", "serde", @@ -9534,7 +9649,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "either", "hash256-std-hasher", @@ -9556,7 +9671,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9573,7 +9688,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "Inflector", "proc-macro-crate 1.0.0", @@ -9585,7 +9700,7 @@ dependencies = [ [[package]] name = "sp-serializer" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "serde", "serde_json", @@ -9594,7 +9709,7 @@ dependencies = [ [[package]] name = "sp-session" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-api", @@ -9607,7 +9722,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "sp-runtime", @@ -9617,7 +9732,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "hash-db", "log", @@ -9640,12 +9755,12 @@ dependencies = [ [[package]] name = "sp-std" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" [[package]] name = "sp-storage" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9658,7 +9773,7 @@ dependencies = [ [[package]] name = "sp-tasks" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "log", "sp-core", @@ -9671,7 +9786,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "futures-timer 3.0.2", @@ -9688,7 +9803,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "erased-serde", "log", @@ -9706,7 +9821,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "derive_more", "futures 0.3.14", @@ -9722,7 +9837,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "log", @@ -9737,7 +9852,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "hash-db", "memory-db", @@ -9751,7 +9866,7 @@ dependencies = [ [[package]] name = "sp-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "futures-core", @@ -9763,7 +9878,7 @@ dependencies = [ [[package]] name = "sp-version" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-serde", "parity-scale-codec", @@ -9776,7 +9891,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "parity-scale-codec", "proc-macro-crate 1.0.0", @@ -9788,7 +9903,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -9945,7 +10060,7 @@ dependencies = [ [[package]] name = "substrate-browser-utils" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "chrono", "console_error_panic_hook", @@ -9971,7 +10086,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "platforms", ] @@ -9979,7 +10094,7 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-system-rpc-runtime-api", "futures 0.3.14", @@ -10002,7 +10117,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-std", "derive_more", @@ -10016,7 +10131,7 @@ dependencies = [ [[package]] name = "substrate-test-client" version = "2.0.1" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "async-trait", "futures 0.1.29", @@ -10045,7 +10160,7 @@ dependencies = [ [[package]] name = "substrate-test-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "futures 0.3.14", "substrate-test-utils-derive", @@ -10055,7 +10170,7 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "proc-macro-crate 1.0.0", "quote", @@ -10378,6 +10493,16 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "tokio" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a38d31d7831c6ed7aad00aa4c12d9375fd225a6dd77da1d25b707346319a975" +dependencies = [ + "autocfg", + "pin-project-lite 0.2.4", +] + [[package]] name = "tokio-buf" version = "0.1.1" @@ -10494,7 +10619,19 @@ dependencies = [ "futures-core", "rustls 0.18.0", "tokio 0.2.21", - "webpki 0.21.3", + "webpki", +] + +[[package]] +name = "tokio-rustls" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03d15e5669243a45f630a5167d101b942174ca94b615445b2057eace1c818736" +dependencies = [ + "futures-core", + "rustls 0.19.1", + "tokio 0.2.21", + "webpki", ] [[package]] @@ -10600,6 +10737,7 @@ checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" dependencies = [ "bytes 0.5.6", "futures-core", + "futures-io", "futures-sink", "log", "pin-project-lite 0.1.7", @@ -10797,7 +10935,7 @@ checksum = "e604eb7b43c06650e854be16a2a03155743d3752dd1c943f6829e26b7a36e382" [[package]] name = "try-runtime-cli" version = "0.9.0" -source = "git+https://github.com/paritytech/substrate#37bb3ae7eb559afaf9c7dbf7fd99e08b282c8127" +source = "git+https://github.com/paritytech/substrate#5f5fbea7a787d8b5db6133530e1dbb0606c08cf1" dependencies = [ "frame-try-runtime", "log", @@ -11445,23 +11583,13 @@ dependencies = [ "untrusted", ] -[[package]] -name = "webpki" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" -dependencies = [ - "ring", - "untrusted", -] - [[package]] name = "webpki-roots" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82015b7e0b8bad8185994674a13a93306bea76cf5a16c5a181382fd3a5ec2376" dependencies = [ - "webpki 0.21.3", + "webpki", ] [[package]] diff --git a/polkadot/node/test/service/src/lib.rs b/polkadot/node/test/service/src/lib.rs index e09d9adc4b..c345c96875 100644 --- a/polkadot/node/test/service/src/lib.rs +++ b/polkadot/node/test/service/src/lib.rs @@ -180,6 +180,7 @@ pub fn node_config( offchain_worker: sc_client_api::ExecutionStrategy::NativeWhenPossible, other: sc_client_api::ExecutionStrategy::NativeWhenPossible, }, + rpc_http_threads: None, rpc_http: None, rpc_ws: None, rpc_ipc: None,