From d61d7fe7af32d41376a6d88ab2b4d33d456915c2 Mon Sep 17 00:00:00 2001 From: akorchyn Date: Thu, 7 Sep 2023 13:19:53 +0300 Subject: [PATCH 01/35] init work. Sydney compiles and runs. Brooklyn in progress --- Cargo.lock | 5777 +++++++++++------- Cargo.toml | 255 +- flake.lock | 48 +- flake.nix | 2 + node/src/rpc.rs | 4 +- node/src/service/{testnet.rs => brooklyn.rs} | 0 node/src/service/mod.rs | 8 +- node/src/service/{mainnet.rs => sydney.rs} | 109 +- runtime/brooklyn/Cargo.toml | 20 +- runtime/brooklyn/src/chain_extensions.rs | 9 +- runtime/brooklyn/src/ethereum.rs | 44 +- runtime/brooklyn/src/ink.rs | 8 +- runtime/brooklyn/src/lib.rs | 34 +- runtime/runtime-common/src/precompiles.rs | 10 +- runtime/sydney/Cargo.toml | 13 +- runtime/sydney/src/ethereum.rs | 52 +- runtime/sydney/src/ink.rs | 12 +- runtime/sydney/src/lib.rs | 237 +- rust-toolchain.toml | 2 +- 19 files changed, 3981 insertions(+), 2663 deletions(-) rename node/src/service/{testnet.rs => brooklyn.rs} (100%) rename node/src/service/{mainnet.rs => sydney.rs} (91%) diff --git a/Cargo.lock b/Cargo.lock index 75669021..2d7616ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,7 +27,16 @@ version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97" dependencies = [ - "gimli 0.27.2", + "gimli 0.27.3", +] + +[[package]] +name = "addr2line" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" +dependencies = [ + "gimli 0.28.0", ] [[package]] @@ -90,9 +99,9 @@ dependencies = [ [[package]] name = "aes" -version = "0.8.2" +version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241" +checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" dependencies = [ "cfg-if", "cipher 0.4.4", @@ -120,7 +129,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" dependencies = [ "aead 0.5.2", - "aes 0.8.2", + "aes 0.8.3", "cipher 0.4.4", "ctr 0.9.2", "ghash 0.5.0", @@ -153,7 +162,7 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ - "getrandom 0.2.9", + "getrandom 0.2.10", "once_cell", "version_check", ] @@ -165,28 +174,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" dependencies = [ "cfg-if", - "getrandom 0.2.9", + "getrandom 0.2.10", "once_cell", "version_check", ] [[package]] name = "aho-corasick" -version = "0.7.20" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac" +checksum = "0c378d78423fdad8089616f827526ee33c19f2fddbd5de1629152c9593ba4783" dependencies = [ "memchr", ] [[package]] -name = "aho-corasick" -version = "1.0.1" +name = "android-tzdata" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" -dependencies = [ - "memchr", -] +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" [[package]] name = "android_system_properties" @@ -208,30 +214,29 @@ dependencies = [ [[package]] name = "anstream" -version = "0.3.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" +checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", "anstyle-wincon", "colorchoice", - "is-terminal", "utf8parse", ] [[package]] name = "anstyle" -version = "1.0.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" +checksum = "15c4c2c83f81532e5845a733998b6971faca23490340a418e9b72a3ec9de12ea" [[package]] name = "anstyle-parse" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" +checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333" dependencies = [ "utf8parse", ] @@ -247,9 +252,9 @@ dependencies = [ [[package]] name = "anstyle-wincon" -version = "1.0.1" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" +checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" dependencies = [ "anstyle", "windows-sys 0.48.0", @@ -257,9 +262,9 @@ dependencies = [ [[package]] name = "anyhow" -version = "1.0.71" +version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" +checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6" [[package]] name = "approx" @@ -302,7 +307,7 @@ dependencies = [ "blake2", "derivative", "digest 0.10.7", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -455,6 +460,15 @@ version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" +[[package]] +name = "array-init" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23589ecb866b460d3a0f1278834750268c607e8e28a1b982c907219f3178cd72" +dependencies = [ + "nodrop", +] + [[package]] name = "arrayref" version = "0.3.7" @@ -469,9 +483,9 @@ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" [[package]] name = "arrayvec" -version = "0.7.2" +version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6" +checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "ascii-canvas" @@ -549,17 +563,11 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "asn1_der" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247" - [[package]] name = "assert_cmd" -version = "2.0.11" +version = "2.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86d6b683edf8d1119fe420a94f8a7e389239666aa72e65495d91c00462510151" +checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6" dependencies = [ "anstyle", "bstr", @@ -576,6 +584,33 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b34d609dfbaf33d6889b2b7106d3ca345eacad44200913df5ba02bfd31d2ba9" +[[package]] +name = "astar-primitives" +version = "0.1.0" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" +dependencies = [ + "ethereum", + "ethereum-types 0.14.1", + "fp-evm", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "impl-trait-for-tuples", + "log", + "orml-traits", + "pallet-assets", + "pallet-evm", + "pallet-evm-precompile-assets-erc20", + "pallet-xc-asset-config", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "xcm", + "xcm-builder", + "xcm-executor", +] + [[package]] name = "async-channel" version = "1.9.0" @@ -601,30 +636,30 @@ dependencies = [ "log", "parking", "polling", - "rustix 0.37.19", + "rustix 0.37.23", "slab", - "socket2", + "socket2 0.4.9", "waker-fn", ] [[package]] name = "async-lock" -version = "2.7.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" +checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" dependencies = [ "event-listener", ] [[package]] name = "async-trait" -version = "0.1.68" +version = "0.1.73" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" +checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -640,15 +675,15 @@ dependencies = [ [[package]] name = "asynchronous-codec" -version = "0.6.1" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06a0daa378f5fd10634e44b0a29b2a87b890657658e072a30d6f26e57ddee182" +checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" dependencies = [ "bytes", "futures-sink", "futures-util", "memchr", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", ] [[package]] @@ -688,16 +723,16 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.67" +version = "0.3.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca" +checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ - "addr2line 0.19.0", + "addr2line 0.21.0", "cc", "cfg-if", "libc", - "miniz_oxide 0.6.2", - "object 0.30.3", + "miniz_oxide", + "object 0.32.1", "rustc-demangle", ] @@ -733,9 +768,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" [[package]] name = "base64" -version = "0.21.2" +version = "0.21.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d" +checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53" [[package]] name = "base64ct" @@ -745,9 +780,9 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "bech32" -version = "0.7.3" +version = "0.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dabbe35f96fb9507f7330793dc490461b2962659ac5d427181e451a623751d1" +checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" [[package]] name = "beef" @@ -761,7 +796,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", "log", @@ -778,9 +813,9 @@ dependencies = [ [[package]] name = "bindgen" -version = "0.64.0" +version = "0.65.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" +checksum = "cfdf7b466f9a4903edc73f95d6d2bcd5baf8ae620638762244d3f60143643cc5" dependencies = [ "bitflags 1.3.2", "cexpr", @@ -788,12 +823,13 @@ dependencies = [ "lazy_static", "lazycell", "peeking_take_while", + "prettyplease 0.2.14", "proc-macro2", "quote", "regex", "rustc-hash", "shlex", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] @@ -819,19 +855,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" [[package]] name = "bitflags" -version = "2.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42" - -[[package]] -name = "bitvec" -version = "0.17.4" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c" -dependencies = [ - "either", - "radium 0.3.0", -] +checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" [[package]] name = "bitvec" @@ -873,8 +899,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c2f0dc9a68c6317d884f97cc36cf5a3d20ba14ce404227df55e1af708ab04bc" dependencies = [ "arrayref", - "arrayvec 0.7.2", - "constant_time_eq 0.2.5", + "arrayvec 0.7.4", + "constant_time_eq 0.2.6", ] [[package]] @@ -884,21 +910,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6637f448b9e61dfadbdcbae9a885fadee1f3eaffb1f8d3c1965d3ade8bdfd44f" dependencies = [ "arrayref", - "arrayvec 0.7.2", - "constant_time_eq 0.2.5", + "arrayvec 0.7.4", + "constant_time_eq 0.2.6", ] [[package]] name = "blake3" -version = "1.3.3" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef" +checksum = "199c42ab6972d92c9f8995f086273d25c42fc0f7b2a1fcefba465c1352d25ba5" dependencies = [ "arrayref", - "arrayvec 0.7.2", + "arrayvec 0.7.4", "cc", "cfg-if", - "constant_time_eq 0.2.5", + "constant_time_eq 0.3.0", ] [[package]] @@ -1004,12 +1030,12 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.1.7" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07fbd1d11282a1eb134d3c3b7cf8ce213b5161c6e5f73fb1b98618482c606b64" +checksum = "eb5b05133427c07c4776906f673ccf36c21b102c9829c641a5b56bd151d44fd6" dependencies = [ "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -1019,19 +1045,25 @@ name = "bs58" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" + +[[package]] +name = "bs58" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5353f36341f7451062466f0b755b96ac3a9547e4d7f6b70d603fc721a7d7896" dependencies = [ - "sha2 0.9.9", + "sha2 0.10.7", + "tinyvec", ] [[package]] name = "bstr" -version = "1.5.0" +version = "1.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a246e68bb43f6cd9db24bea052a53e40405417c5fb372e3d1a8a7f770a564ef5" +checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" dependencies = [ "memchr", - "once_cell", - "regex-automata", + "regex-automata 0.3.8", "serde", ] @@ -1064,9 +1096,9 @@ checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" [[package]] name = "bytemuck" -version = "1.13.1" +version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" +checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" [[package]] name = "byteorder" @@ -1106,18 +1138,18 @@ dependencies = [ [[package]] name = "camino" -version = "1.1.4" +version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2" +checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c" dependencies = [ "serde", ] [[package]] name = "cargo-platform" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27" +checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" dependencies = [ "serde", ] @@ -1130,7 +1162,21 @@ checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", - "semver 1.0.17", + "semver 1.0.18", + "serde", + "serde_json", + "thiserror", +] + +[[package]] +name = "cargo_metadata" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7daec1a2a2129eeba1644b220b4647ec537b0b5d4bfd6876fcc5a540056b592" +dependencies = [ + "camino", + "cargo-platform", + "semver 1.0.18", "serde", "serde_json", "thiserror", @@ -1138,11 +1184,12 @@ dependencies = [ [[package]] name = "cc" -version = "1.0.79" +version = "1.0.83" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" +checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" dependencies = [ "jobserver", + "libc", ] [[package]] @@ -1171,7 +1218,16 @@ version = "0.10.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" dependencies = [ - "smallvec", + "smallvec 1.11.0", +] + +[[package]] +name = "cfg-expr" +version = "0.15.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" +dependencies = [ + "smallvec 1.11.0", ] [[package]] @@ -1213,17 +1269,17 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.24" +version = "0.4.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" +checksum = "d87d9d13be47a5b7c3907137f1290b0459a7f80efb26be8c52afb11963bccb02" dependencies = [ + "android-tzdata", "iana-time-zone", "js-sys", - "num-integer", "num-traits", "time 0.1.45", "wasm-bindgen", - "winapi", + "windows-targets 0.48.5", ] [[package]] @@ -1289,45 +1345,43 @@ dependencies = [ [[package]] name = "clap" -version = "4.3.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" +checksum = "6a13b88d2c62ff462f88e4a121f17a82c1af05693a2f192b5c38d14de73c19f6" dependencies = [ "clap_builder", "clap_derive", - "once_cell", ] [[package]] name = "clap_builder" -version = "4.3.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" +checksum = "2bb9faaa7c2ef94b2743a21f5a29e6f0010dff4caa69ac8e9d6cf8b6fa74da08" dependencies = [ "anstream", "anstyle", - "bitflags 1.3.2", "clap_lex", "strsim", ] [[package]] name = "clap_derive" -version = "4.3.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b" +checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "clap_lex" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" +checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" [[package]] name = "codespan-reporting" @@ -1341,56 +1395,52 @@ dependencies = [ [[package]] name = "coins-bip32" -version = "0.8.3" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b30a84aab436fcb256a2ab3c80663d8aec686e6bae12827bb05fef3e1e439c9f" +checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3" dependencies = [ - "bincode", - "bs58", + "bs58 0.5.0", "coins-core", "digest 0.10.7", - "getrandom 0.2.9", "hmac 0.12.1", "k256 0.13.1", - "lazy_static", "serde", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", ] [[package]] name = "coins-bip39" -version = "0.8.6" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84f4d04ee18e58356accd644896aeb2094ddeafb6a713e056cef0c0a8e468c15" +checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528" dependencies = [ - "bitvec 0.17.4", + "bitvec 1.0.1", "coins-bip32", - "getrandom 0.2.9", "hmac 0.12.1", "once_cell", - "pbkdf2 0.12.1", + "pbkdf2 0.12.2", "rand 0.8.5", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", ] [[package]] name = "coins-core" -version = "0.8.3" +version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b949a1c63fb7eb591eb7ba438746326aedf0ae843e51ec92ba6bec5bb382c4f" +checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979" dependencies = [ - "base64 0.21.2", + "base64 0.21.3", "bech32", - "bs58", + "bs58 0.5.0", "digest 0.10.7", "generic-array 0.14.7", "hex", "ripemd", "serde", "serde_derive", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", "thiserror", ] @@ -1407,8 +1457,8 @@ version = "6.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e959d788268e3bf9d35ace83e81b124190378e4c91c9067524675e33394b8ba" dependencies = [ - "strum", - "strum_macros", + "strum 0.24.1", + "strum_macros 0.24.3", "unicode-width", ] @@ -1421,11 +1471,23 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "const-hex" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08849ed393c907c90016652a01465a12d86361cd38ad2a7de026c56a520cc259" +dependencies = [ + "cfg-if", + "cpufeatures", + "hex", + "serde", +] + [[package]] name = "const-oid" -version = "0.9.2" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913" +checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" [[package]] name = "constant_time_eq" @@ -1435,9 +1497,15 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "constant_time_eq" -version = "0.2.5" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21a53c0a4d288377e7415b53dcfc3c04da5cdc2cc95c8d5ac178b58f0b861ad6" + +[[package]] +name = "constant_time_eq" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13418e745008f7349ec7e449155f419a61b92b58a99cc3616942b926825ec76b" +checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" [[package]] name = "convert_case" @@ -1481,57 +1549,56 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" +checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bc42ba2e232e5b20ff7dc299a812d53337dadce9a7e39a238e6a5cb82d2e57b" +checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" dependencies = [ - "cranelift-entity", + "cranelift-entity 0.95.1", ] [[package]] name = "cranelift-codegen" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "253531aca9b6f56103c9420369db3263e784df39aa1c90685a1f69cfbba0623e" +checksum = "c6e8c31ad3b2270e9aeec38723888fe1b0ace3bea2b06b3f749ccf46661d3220" dependencies = [ - "arrayvec 0.7.2", "bumpalo", "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", - "cranelift-entity", + "cranelift-entity 0.95.1", "cranelift-isle", - "gimli 0.26.2", - "hashbrown 0.12.3", + "gimli 0.27.3", + "hashbrown 0.13.2", "log", "regalloc2", - "smallvec", + "smallvec 1.11.0", "target-lexicon", ] [[package]] name = "cranelift-codegen-meta" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72f2154365e2bff1b1b8537a7181591fdff50d8e27fa6e40d5c69c3bad0ca7c8" +checksum = "c8ac5ac30d62b2d66f12651f6b606dbdfd9c2cfd0908de6b387560a277c5c9da" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "687e14e3f5775248930e0d5a84195abef8b829958e9794bf8d525104993612b4" +checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" [[package]] name = "cranelift-entity" @@ -1542,29 +1609,38 @@ dependencies = [ "serde", ] +[[package]] +name = "cranelift-entity" +version = "0.95.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40099d38061b37e505e63f89bab52199037a72b931ad4868d9089ff7268660b0" +dependencies = [ + "serde", +] + [[package]] name = "cranelift-frontend" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8483c2db6f45fe9ace984e5adc5d058102227e4c62e5aa2054e16b0275fd3a6e" +checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" dependencies = [ "cranelift-codegen", "log", - "smallvec", + "smallvec 1.11.0", "target-lexicon", ] [[package]] name = "cranelift-isle" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9793158837678902446c411741d87b43f57dadfb944f2440db4287cda8cbd59" +checksum = "80de6a7d0486e4acbd5f9f87ec49912bf4c8fb6aea00087b989685460d4469ba" [[package]] name = "cranelift-native" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72668c7755f2b880665cb422c8ad2d56db58a88b9bebfef0b73edc2277c13c49" +checksum = "bb6b03e0e03801c4b3fd8ce0758a94750c07a44e7944cc0ffbf0d3f2e7c79b00" dependencies = [ "cranelift-codegen", "libc", @@ -1573,18 +1649,18 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.93.2" +version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3852ce4b088b44ac4e29459573943009a70d1b192c8d77ef949b4e814f656fc1" +checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" dependencies = [ "cranelift-codegen", - "cranelift-entity", + "cranelift-entity 0.95.1", "cranelift-frontend", "itertools", "log", - "smallvec", - "wasmparser", - "wasmtime-types", + "smallvec 1.11.0", + "wasmparser 0.102.0", + "wasmtime-types 8.0.1", ] [[package]] @@ -1634,22 +1710,22 @@ dependencies = [ [[package]] name = "crossbeam-epoch" -version = "0.9.14" +version = "0.9.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" +checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" dependencies = [ "autocfg", "cfg-if", "crossbeam-utils", - "memoffset 0.8.0", + "memoffset 0.9.0", "scopeguard", ] [[package]] name = "crossbeam-utils" -version = "0.8.15" +version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" +checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ "cfg-if", ] @@ -1674,9 +1750,9 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.5.2" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" +checksum = "740fe28e594155f10cfc383984cbefd529d7396050557148f79cb0f621204124" dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", @@ -1761,23 +1837,37 @@ dependencies = [ [[package]] name = "curve25519-dalek" -version = "4.0.0-rc.1" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d4ba9852b42210c7538b75484f9daa0655e9a3ac04f693747bb0f02cf3cfe16" +checksum = "622178105f911d937a42cdb140730ba4a3ed2becd8ae6ce39c7d28b5d75d4588" dependencies = [ "cfg-if", + "cpufeatures", + "curve25519-dalek-derive", + "digest 0.10.7", "fiat-crypto", - "packed_simd_2", - "platforms 3.0.2", + "platforms 3.1.2", + "rustc_version 0.4.0", "subtle", "zeroize", ] +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "cxx" -version = "1.0.95" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "109308c20e8445959c2792e81871054c6a17e6976489a93d2769641a2ba5839c" +checksum = "bbe98ba1789d56fb3db3bee5e032774d4f421b685de7ba703643584ba24effbe" dependencies = [ "cc", "cxxbridge-flags", @@ -1787,9 +1877,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.95" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daf4c6755cdf10798b97510e0e2b3edb9573032bd9379de8fffa59d68165494f" +checksum = "c4ce20f6b8433da4841b1dadfb9468709868022d829d5ca1f2ffbda928455ea3" dependencies = [ "cc", "codespan-reporting", @@ -1797,24 +1887,24 @@ dependencies = [ "proc-macro2", "quote", "scratch", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "cxxbridge-flags" -version = "1.0.95" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "882074421238e84fe3b4c65d0081de34e5b323bf64555d3e61991f76eb64a7bb" +checksum = "20888d9e1d2298e2ff473cee30efe7d5036e437857ab68bbfea84c74dba91da2" [[package]] name = "cxxbridge-macro" -version = "1.0.95" +version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a076022ece33e7686fb76513518e219cca4fce5750a8ae6d1ce6c0f48fd1af9" +checksum = "2fa16a70dd58129e4dfffdff535fb1bce66673f7bbeec4a5a1765a504e1ccd84" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -1862,7 +1952,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -1884,7 +1974,7 @@ checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" dependencies = [ "darling_core 0.20.3", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -1926,9 +2016,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.6" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56acb310e15652100da43d130af8d97b509e95af61aab1c5a7939ef24337ee17" +checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" dependencies = [ "const-oid", "zeroize", @@ -2076,7 +2166,7 @@ version = "4.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210" dependencies = [ - "dirs-sys", + "dirs-sys 0.3.7", ] [[package]] @@ -2089,6 +2179,15 @@ dependencies = [ "dirs-sys-next", ] +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys 0.4.1", +] + [[package]] name = "dirs-next" version = "2.0.0" @@ -2110,6 +2209,18 @@ dependencies = [ "winapi", ] +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + [[package]] name = "dirs-sys-next" version = "0.1.2" @@ -2129,7 +2240,7 @@ checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -2152,9 +2263,9 @@ checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" [[package]] name = "dtoa" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65d09067bfacaa79114679b279d7f5885b53295b1e2cfb4e79c8e4bd3d633169" +checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653" [[package]] name = "dunce" @@ -2185,9 +2296,9 @@ dependencies = [ [[package]] name = "dyn-clone" -version = "1.0.11" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" +checksum = "bbfc4744c1b8f2a09adc0e55242f60b1af195d88596bd8700be74418c056c555" [[package]] name = "ecdsa" @@ -2203,11 +2314,11 @@ dependencies = [ [[package]] name = "ecdsa" -version = "0.16.7" +version = "0.16.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0997c976637b606099b9985693efa3581e84e41f5c11ba5255f88711058ad428" +checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4" dependencies = [ - "der 0.7.6", + "der 0.7.8", "digest 0.10.7", "elliptic-curve 0.13.5", "rfc6979 0.4.0", @@ -2224,6 +2335,16 @@ dependencies = [ "signature 1.6.4", ] +[[package]] +name = "ed25519" +version = "2.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60f6d271ca33075c88028be6f04d502853d63a5ece419d269c15315d4fc1cf1d" +dependencies = [ + "pkcs8 0.10.2", + "signature 2.1.0", +] + [[package]] name = "ed25519-dalek" version = "1.0.1" @@ -2231,13 +2352,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" dependencies = [ "curve25519-dalek 3.2.0", - "ed25519", + "ed25519 1.5.3", "rand 0.7.3", - "serde", "sha2 0.9.9", "zeroize", ] +[[package]] +name = "ed25519-dalek" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7277392b266383ef8396db7fdeb1e77b6c52fed775f5df15bb24f35b72156980" +dependencies = [ + "curve25519-dalek 4.1.0", + "ed25519 2.2.2", + "rand_core 0.6.4", + "serde", + "sha2 0.10.7", + "zeroize", +] + [[package]] name = "ed25519-zebra" version = "3.1.0" @@ -2254,9 +2388,9 @@ dependencies = [ [[package]] name = "either" -version = "1.8.1" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" +checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" [[package]] name = "elliptic-curve" @@ -2287,14 +2421,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b" dependencies = [ "base16ct 0.2.0", - "crypto-bigint 0.5.2", + "crypto-bigint 0.5.3", "digest 0.10.7", "ff 0.13.0", "generic-array 0.14.7", "group 0.13.0", "pkcs8 0.10.2", "rand_core 0.6.4", - "sec1 0.7.2", + "sec1 0.7.3", "subtle", "zeroize", ] @@ -2310,20 +2444,20 @@ dependencies = [ [[package]] name = "encoding_rs" -version = "0.8.32" +version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ "cfg-if", ] [[package]] name = "enr" -version = "0.8.1" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf56acd72bb22d2824e66ae8e9e5ada4d0de17a69c7fd35569dde2ada8ec9116" +checksum = "0be7b2ac146c1f99fe245c02d16af0696450d8e06c135db75e10eeb9e642c20d" dependencies = [ - "base64 0.13.1", + "base64 0.21.3", "bytes", "hex", "k256 0.13.1", @@ -2331,6 +2465,7 @@ dependencies = [ "rand 0.8.5", "rlp", "serde", + "serde-hex", "sha3 0.10.8", "zeroize", ] @@ -2364,7 +2499,7 @@ checksum = "5e9a1f9f7d83e59740248a6e14ecf93929ade55027844dfcea78beafccc15745" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -2386,20 +2521,26 @@ version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e48c92028aaa870e83d51c64e5d4e0b6981b360c522198c23959f219a4e1b15b" +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + [[package]] name = "erased-serde" -version = "0.3.25" +version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569" +checksum = "6c138974f9d5e7fe373eb04df7cae98833802ae4b11c24ac7039a21d5af4b26c" dependencies = [ "serde", ] [[package]] name = "errno" -version = "0.3.1" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" +checksum = "136526188508e25c6fef639d7927dfb3e0e3084488bf202267829cf7fc23dbdd" dependencies = [ "errno-dragonfly", "libc", @@ -2422,7 +2563,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fda3bf123be441da5260717e0661c25a2fd9cb2b2c1d20bf2e05580047158ab" dependencies = [ - "aes 0.8.2", + "aes 0.8.3", "ctr 0.9.2", "digest 0.10.7", "hex", @@ -2432,7 +2573,7 @@ dependencies = [ "scrypt", "serde", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", "thiserror", "uuid 0.8.2", @@ -2508,7 +2649,7 @@ dependencies = [ "ethereum-types 0.14.1", "hash-db 0.15.2", "hash256-std-hasher", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rlp", "scale-info", "serde", @@ -2548,9 +2689,9 @@ dependencies = [ [[package]] name = "ethers" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d5486fdc149826f38c388f26a7df72534ee3f20d3a3f72539376fa7b3bbc43d" +checksum = "9ba3fd516c15a9a587135229466dbbfc85796de55c5660afbbb1b1c78517d85c" dependencies = [ "ethers-addressbook", "ethers-contract", @@ -2564,9 +2705,9 @@ dependencies = [ [[package]] name = "ethers-addressbook" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c66a426b824a0f6d1361ad74b6b01adfd26c44ee1e14c3662dcf28406763ec5" +checksum = "0245617f11b8178fa50b52e433e2c34ac69f39116b62c8be2437decf2edf1986" dependencies = [ "ethers-core", "once_cell", @@ -2576,16 +2717,16 @@ dependencies = [ [[package]] name = "ethers-contract" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfa43e2e69632492d7b38e59465d125a0066cf4c477390ece00d3acbd11b338b" +checksum = "02bb80fd2c22631a5eb8a02cbf373cc5fd86937fc966bb670b9a884580c8e71c" dependencies = [ + "const-hex", "ethers-contract-abigen", "ethers-contract-derive", "ethers-core", "ethers-providers", "futures-util", - "hex", "once_cell", "pin-project", "serde", @@ -2595,72 +2736,68 @@ dependencies = [ [[package]] name = "ethers-contract-abigen" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2edb8fdbf77459819a443234b461171a024476bfc12f1853b889a62c6e1185ff" +checksum = "22c54db0d393393e732a5b20273e4f8ab89f0cce501c84e75fab9c126799a6e6" dependencies = [ "Inflector", + "const-hex", "dunce", "ethers-core", "ethers-etherscan", "eyre", - "getrandom 0.2.9", - "hex", - "prettyplease 0.2.6", + "prettyplease 0.2.14", "proc-macro2", "quote", "regex", "reqwest", "serde", "serde_json", - "syn 2.0.17", - "tokio", - "toml 0.7.4", - "url", + "syn 2.0.31", + "toml 0.7.6", "walkdir", ] [[package]] name = "ethers-contract-derive" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "939b0c37746929f869285ee37d270b7c998d80cc7404c2e20dda8efe93e3b295" +checksum = "62ee4f216184a1304b707ed258f4f70aa40bf7e1522ab8963d127a8d516eaa1a" dependencies = [ "Inflector", + "const-hex", "ethers-contract-abigen", "ethers-core", - "hex", "proc-macro2", "quote", "serde_json", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "ethers-core" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "198ea9efa8480fa69f73d31d41b1601dace13d053c6fe4be6f5878d9dfcf0108" +checksum = "8c29523f73c12753165781c6e5dc11c84d3e44c080a15f7c6cfbd70b514cb6f1" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "bytes", - "cargo_metadata", + "cargo_metadata 0.17.0", "chrono", + "const-hex", "elliptic-curve 0.13.5", "ethabi 18.0.0", "generic-array 0.14.7", - "getrandom 0.2.9", - "hex", "k256 0.13.1", - "num_enum 0.6.1", + "num_enum 0.7.0", "once_cell", "open-fastrlp", "rand 0.8.5", "rlp", "serde", "serde_json", - "strum", - "syn 2.0.17", + "strum 0.25.0", + "syn 2.0.31", "tempfile", "thiserror", "tiny-keccak", @@ -2669,15 +2806,13 @@ dependencies = [ [[package]] name = "ethers-etherscan" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "196a21d6939ab78b7a1e4c45c2b33b0c2dd821a2e1af7c896f06721e1ba2a0c7" +checksum = "4aab5af432b3fe5b7756b60df5c9ddeb85a13414575ad8a9acd707c24f0a77a5" dependencies = [ "ethers-core", - "ethers-solc", - "getrandom 0.2.9", "reqwest", - "semver 1.0.17", + "semver 1.0.18", "serde", "serde_json", "thiserror", @@ -2686,9 +2821,9 @@ dependencies = [ [[package]] name = "ethers-middleware" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75594cc450992fc7de701c9145de612325fd8a18be765b8ae78767ba2b74876f" +checksum = "356151d5ded56d4918146366abc9dfc9df367cf0096492a7a5477b21b7693615" dependencies = [ "async-trait", "auto_impl", @@ -2713,24 +2848,24 @@ dependencies = [ [[package]] name = "ethers-providers" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1009041f40476b972b5d79346cc512e97c662b1a0a2f78285eabe9a122909783" +checksum = "00c84664b294e47fc2860d6db0db0246f79c4c724e552549631bb9505b834bee" dependencies = [ "async-trait", "auto_impl", - "base64 0.21.2", + "base64 0.21.3", "bytes", + "const-hex", "enr", "ethers-core", "futures-core", "futures-timer", "futures-util", - "getrandom 0.2.9", "hashers", - "hex", "http", "instant", + "jsonwebtoken", "once_cell", "pin-project", "reqwest", @@ -2750,35 +2885,35 @@ dependencies = [ [[package]] name = "ethers-signers" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3bd11ad6929f01f01be74bb00d02bbd6552f22de030865c898b340a3a592db1" +checksum = "170b299698702ef1f53d2275af7d6d97409cfa4f9398ee9ff518f6bc9102d0ad" dependencies = [ "async-trait", "coins-bip32", "coins-bip39", + "const-hex", "elliptic-curve 0.13.5", "eth-keystore", "ethers-core", - "hex", "rand 0.8.5", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", "tracing", ] [[package]] name = "ethers-solc" -version = "2.0.4" +version = "2.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2284784306de73d8ad1bc792ecc1b87da0268185683698d60fd096d23d168c99" +checksum = "66559c8f774712df303c907d087275a52a2046b256791aaa566d5abc8ea66731" dependencies = [ "cfg-if", + "const-hex", + "dirs", "dunce", "ethers-core", - "getrandom 0.2.9", "glob", - "hex", "home", "md-5", "num_cpus", @@ -2786,7 +2921,7 @@ dependencies = [ "path-slash", "rayon", "regex", - "semver 1.0.17", + "semver 1.0.18", "serde", "serde_json", "solang-parser", @@ -2808,8 +2943,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "evm" version = "0.39.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a49a4e11987c51220aa89dbe1a5cc877f5079fa6864c0a5b4533331db44e9365" +source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ "auto_impl", "environmental", @@ -2818,7 +2952,7 @@ dependencies = [ "evm-gasometer", "evm-runtime", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "rlp", "scale-info", @@ -2829,10 +2963,9 @@ dependencies = [ [[package]] name = "evm-core" version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f1f13264b044cb66f0602180f0bc781c29accb41ff560669a3ec15858d5b606" +source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "scale-info", "serde", @@ -2841,8 +2974,7 @@ dependencies = [ [[package]] name = "evm-gasometer" version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d43eadc395bd1a52990787ca1495c26b0248165444912be075c28909a853b8c" +source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ "environmental", "evm-core", @@ -2853,8 +2985,7 @@ dependencies = [ [[package]] name = "evm-runtime" version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2aa5b32f59ec582a5651978004e5c784920291263b7dcb6de418047438e37f4f" +source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ "auto_impl", "environmental", @@ -2907,6 +3038,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" +[[package]] +name = "faster-hex" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51e2ce894d53b295cf97b05685aa077950ff3e8541af83217fc720a6437169f8" + [[package]] name = "fastrand" version = "1.9.0" @@ -2916,10 +3053,16 @@ dependencies = [ "instant", ] +[[package]] +name = "fastrand" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764" + [[package]] name = "fc-cli" version = "1.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "clap", "ethereum-types 0.14.1", @@ -2929,51 +3072,51 @@ dependencies = [ "sc-cli", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fc-consensus" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "async-trait", - "fc-db", "fp-consensus", "fp-rpc", "sc-consensus", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-consensus", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "fc-db" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ + "async-trait", "fp-storage", "kvdb-rocksdb", "log", "parity-db", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-db", - "smallvec", + "smallvec 1.11.0", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-database", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fc-mapping-sync" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fc-db", "fc-storage", @@ -2985,16 +3128,16 @@ dependencies = [ "parking_lot 0.12.1", "sc-client-api", "sc-utils", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -3012,9 +3155,9 @@ dependencies = [ "jsonrpsee", "libsecp256k1", "log", - "lru", + "lru 0.8.1", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prometheus", "rand 0.8.5", "rlp", @@ -3027,15 +3170,16 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "sc-utils", - "sp-api", + "serde", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-io", - "sp-runtime", - "sp-state-machine", - "sp-storage", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "tokio", ] @@ -3043,7 +3187,7 @@ dependencies = [ [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", "ethereum-types 0.14.1", @@ -3056,19 +3200,19 @@ dependencies = [ [[package]] name = "fc-storage" version = "1.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-rpc", "fp-storage", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-io", - "sp-runtime", - "sp-storage", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -3102,9 +3246,9 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.1.20" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" +checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d" [[package]] name = "file-per-thread-logger" @@ -3118,13 +3262,13 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.21" +version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" +checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", + "redox_syscall 0.3.5", "windows-sys 0.48.0", ] @@ -3139,7 +3283,7 @@ dependencies = [ "futures-timer", "log", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "scale-info", ] @@ -3176,13 +3320,13 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.26" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" +checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" dependencies = [ "crc32fast", "libz-sys", - "miniz_oxide 0.7.1", + "miniz_oxide", ] [[package]] @@ -3228,16 +3372,16 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", ] [[package]] name = "form_urlencoded" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" +checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ "percent-encoding", ] @@ -3245,106 +3389,108 @@ dependencies = [ [[package]] name = "fp-account" version = "1.0.0-dev" -source = "git+https://github.com/GoldenGateGGX/frontier.git?branch=polkadot-v0.9.40#0357703abb3ef7578305e58dce0beb60073aa3ba" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "hex", "impl-serde 0.4.0", "libsecp256k1", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-consensus" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", - "parity-scale-codec 3.5.0", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "parity-scale-codec 3.6.5", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-dynamic-fee" version = "1.0.0" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "async-trait", - "sp-core", - "sp-inherents", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-ethereum" version = "1.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "frame-support", - "num_enum 0.5.11", - "parity-scale-codec 3.5.0", - "sp-std 5.0.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "num_enum 0.6.1", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-evm" version = "3.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "evm", - "frame-support", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", + "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-rpc" version = "3.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-api", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std 5.0.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-self-contained" version = "1.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-support", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "fp-storage" version = "2.0.0" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "serde", ] @@ -3359,46 +3505,71 @@ name = "frame-benchmarking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "frame-support", - "frame-support-procedural", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "linregress", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "paste", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-runtime-interface", - "sp-std 5.0.0", - "sp-storage", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "static_assertions", +] + +[[package]] +name = "frame-benchmarking" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "linregress", + "log", + "parity-scale-codec 3.6.5", + "paste", + "scale-info", + "serde", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "static_assertions", ] [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "Inflector", "array-bytes", "chrono", "clap", "comfy-table", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "gethostname", "handlebars", "itertools", "lazy_static", "linked-hash-map", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rand 0.8.5", "rand_pcg", "sc-block-builder", @@ -3410,18 +3581,18 @@ dependencies = [ "sc-sysinfo", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-database", - "sp-externalities", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-std 5.0.0", - "sp-storage", - "sp-trie", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "thousands", ] @@ -3429,45 +3600,45 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-election-provider-solution-type", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-arithmetic", - "sp-core", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-npos-elections", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", - "sp-tracing", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -3477,7 +3648,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ "cfg-if", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -3490,28 +3661,62 @@ dependencies = [ "bitflags 1.3.2", "environmental", "frame-metadata", - "frame-support-procedural", + "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "impl-trait-for-tuples", "k256 0.11.6", "log", "once_cell", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", + "paste", + "scale-info", + "serde", + "smallvec 1.11.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "tt-call", +] + +[[package]] +name = "frame-support" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "bitflags 1.3.2", + "environmental", + "frame-metadata", + "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "impl-trait-for-tuples", + "k256 0.13.1", + "log", + "once_cell", + "parity-scale-codec 3.6.5", "paste", "scale-info", "serde", - "smallvec", - "sp-api", - "sp-arithmetic", - "sp-core", - "sp-core-hashing-proc-macro", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-state-machine", - "sp-std 5.0.0", - "sp-tracing", - "sp-weights", + "smallvec 1.11.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "tt-call", ] @@ -3521,27 +3726,55 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ "Inflector", - "cfg-expr", + "cfg-expr 0.10.3", "derive-syn-parse", - "frame-support-procedural-tools", + "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "itertools", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "frame-support-procedural" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "Inflector", + "cfg-expr 0.15.4", + "derive-syn-parse", + "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "itertools", + "proc-macro-warning", + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "frame-support-procedural-tools-derive", + "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "frame-support-procedural-tools" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" @@ -3552,46 +3785,75 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "frame-support-procedural-tools-derive" +version = "3.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "frame-system" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "frame-support", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "log", + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "frame-system" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "cfg-if", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", - "sp-version", - "sp-weights", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", - "sp-api", + "parity-scale-codec 3.6.5", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -3616,7 +3878,7 @@ version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47" dependencies = [ - "rustix 0.38.4", + "rustix 0.38.11", "windows-sys 0.48.0", ] @@ -3687,12 +3949,12 @@ version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ - "fastrand", + "fastrand 1.9.0", "futures-core", "futures-io", "memchr", "parking", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "waker-fn", ] @@ -3714,7 +3976,7 @@ checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -3724,8 +3986,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd" dependencies = [ "futures-io", - "rustls 0.20.8", - "webpki 0.22.0", + "rustls 0.20.9", + "webpki 0.22.1", ] [[package]] @@ -3763,7 +4025,7 @@ dependencies = [ "futures-sink", "futures-task", "memchr", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "pin-utils", "slab", ] @@ -3820,9 +4082,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.9" +version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" +checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ "cfg-if", "js-sys", @@ -3850,9 +4112,9 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-benchmarking-cli", - "frame-system", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "futures", "ggxchain-runtime-brooklyn", "ggxchain-runtime-sydney", @@ -3861,12 +4123,12 @@ dependencies = [ "log", "mmr-gadget", "mmr-rpc", - "nix 0.26.2", + "nix 0.26.4", "num-bigint", "pallet-balances", "pallet-transaction-payment", "pallet-transaction-payment-rpc", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "polkadot-rpc", "prometheus", "rand 0.8.5", @@ -3889,17 +4151,17 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", "sp-consensus-aura", "sp-consensus-beefy", - "sp-core", - "sp-inherents", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-keyring", "sp-mmr-primitives", - "sp-runtime", - "sp-timestamp", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-build-script-utils", "substrate-frame-rpc-system", "substrate-rpc-client", @@ -3916,12 +4178,13 @@ dependencies = [ name = "ggxchain-runtime-brooklyn" version = "0.1.2" dependencies = [ + "astar-primitives", "fp-rpc", "fp-self-contained", - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-executive", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "ibc 0.28.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -3939,6 +4202,7 @@ dependencies = [ "pallet-contracts-primitives", "pallet-dynamic-fee", "pallet-ethereum", + "pallet-ethereum-checked", "pallet-evm", "pallet-evm-chain-id", "pallet-grandpa", @@ -3956,30 +4220,31 @@ dependencies = [ "pallet-proxy", "pallet-session", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-vesting", "pallet-xvm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prost", "runtime-common", "scale-info", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-consensus-aura", "sp-consensus-beefy", - "sp-core", - "sp-inherents", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", "sp-offchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-staking", - "sp-std 5.0.0", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-transaction-pool", - "sp-version", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-wasm-builder", ] @@ -3987,14 +4252,15 @@ dependencies = [ name = "ggxchain-runtime-sydney" version = "0.1.2" dependencies = [ + "astar-primitives", "fp-evm", "fp-rpc", "fp-self-contained", - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-election-provider-support", "frame-executive", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "log", @@ -4010,6 +4276,7 @@ dependencies = [ "pallet-dynamic-fee", "pallet-election-provider-multi-phase", "pallet-ethereum", + "pallet-ethereum-checked", "pallet-evm", "pallet-evm-chain-id", "pallet-grandpa", @@ -4029,32 +4296,32 @@ dependencies = [ "pallet-society", "pallet-staking", "pallet-sudo", - "pallet-timestamp", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-vesting", "pallet-whitelist", "pallet-xvm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "paste", "runtime-common", "scale-info", "serde", - "sp-api", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-consensus-aura", - "sp-core", - "sp-inherents", - "sp-io", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-offchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-staking", - "sp-std 5.0.0", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-transaction-pool", - "sp-version", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-account-filter", "substrate-wasm-builder", ] @@ -4076,7 +4343,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40" dependencies = [ "opaque-debug 0.3.0", - "polyval 0.6.0", + "polyval 0.6.1", ] [[package]] @@ -4086,15 +4353,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" dependencies = [ "fallible-iterator", - "indexmap", "stable_deref_trait", ] [[package]] name = "gimli" -version = "0.27.2" +version = "0.27.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e" +dependencies = [ + "fallible-iterator", + "indexmap 1.9.3", + "stable_deref_trait", +] + +[[package]] +name = "gimli" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4" +checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" [[package]] name = "glob" @@ -4104,11 +4381,11 @@ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" [[package]] name = "globset" -version = "0.4.10" +version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" +checksum = "759c97c1e17c55525b57192c06a267cda0ac5210b222d6b82189a2338fa1c13d" dependencies = [ - "aho-corasick 0.7.20", + "aho-corasick", "bstr", "fnv", "log", @@ -4151,9 +4428,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.19" +version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" dependencies = [ "bytes", "fnv", @@ -4161,7 +4438,7 @@ dependencies = [ "futures-sink", "futures-util", "http", - "indexmap", + "indexmap 1.9.3", "slab", "tokio", "tokio-util 0.7.8", @@ -4170,9 +4447,9 @@ dependencies = [ [[package]] name = "handlebars" -version = "4.3.7" +version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83c3372087601b532857d332f5957cbae686da52bb7810bf038c3e3c3cc2fa0d" +checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" dependencies = [ "log", "pest", @@ -4221,6 +4498,12 @@ dependencies = [ "ahash 0.8.3", ] +[[package]] +name = "hashbrown" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" + [[package]] name = "hashers" version = "1.0.1" @@ -4232,12 +4515,11 @@ dependencies = [ [[package]] name = "headers" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584" +checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" dependencies = [ - "base64 0.13.1", - "bitflags 1.3.2", + "base64 0.21.3", "bytes", "headers-core", "http", @@ -4272,18 +4554,9 @@ dependencies = [ [[package]] name = "hermit-abi" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" -dependencies = [ - "libc", -] - -[[package]] -name = "hermit-abi" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" +checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b" [[package]] name = "hex" @@ -4297,6 +4570,12 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" +[[package]] +name = "hex-literal" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fe2267d4ed49bc07b63801559be28c718ea06c4738b7a03c94df7386d2cde46" + [[package]] name = "hkdf" version = "0.12.3" @@ -4385,14 +4664,14 @@ checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", "http", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", ] [[package]] name = "http-range-header" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29" +checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" [[package]] name = "httparse" @@ -4402,9 +4681,9 @@ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" [[package]] name = "httpdate" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "humantime" @@ -4414,9 +4693,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.26" +version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ "bytes", "futures-channel", @@ -4428,8 +4707,8 @@ dependencies = [ "httparse", "httpdate", "itoa", - "pin-project-lite 0.2.9", - "socket2", + "pin-project-lite 0.2.13", + "socket2 0.4.9", "tokio", "tower-service", "tracing", @@ -4445,24 +4724,27 @@ dependencies = [ "http", "hyper", "log", - "rustls 0.20.8", + "rustls 0.20.9", "rustls-native-certs", "tokio", "tokio-rustls 0.23.4", - "webpki-roots", ] [[package]] name = "hyper-rustls" -version = "0.24.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7" +checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" dependencies = [ + "futures-util", "http", "hyper", - "rustls 0.21.1", + "log", + "rustls 0.21.7", + "rustls-native-certs", "tokio", - "tokio-rustls 0.24.0", + "tokio-rustls 0.24.1", + "webpki-roots 0.23.1", ] [[package]] @@ -4480,9 +4762,9 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.56" +version = "0.1.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" +checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -4515,7 +4797,7 @@ dependencies = [ "ibc-proto 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)", "ics23", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "prost", "safe-regex", @@ -4523,7 +4805,7 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "subtle-encoding", "tendermint", "tendermint-light-client-verifier", @@ -4548,7 +4830,7 @@ dependencies = [ "ics23", "log", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "prost", "safe-regex", @@ -4556,7 +4838,7 @@ dependencies = [ "serde", "serde_derive", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "subtle-encoding", "tendermint", "tendermint-light-client-verifier", @@ -4576,7 +4858,7 @@ dependencies = [ "borsh", "bytes", "flex-error", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prost", "scale-info", "serde", @@ -4593,7 +4875,7 @@ dependencies = [ "borsh", "bytes", "flex-error", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prost", "scale-info", "serde", @@ -4612,7 +4894,7 @@ dependencies = [ "hex", "prost", "ripemd", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", ] @@ -4635,9 +4917,9 @@ dependencies = [ [[package]] name = "idna" -version = "0.3.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" dependencies = [ "unicode-bidi", "unicode-normalization", @@ -4687,7 +4969,7 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", ] [[package]] @@ -4745,6 +5027,16 @@ dependencies = [ "serde", ] +[[package]] +name = "indexmap" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +dependencies = [ + "equivalent", + "hashbrown 0.14.0", +] + [[package]] name = "indexmap-nostd" version = "0.4.0" @@ -4803,7 +5095,7 @@ version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" dependencies = [ - "hermit-abi 0.3.1", + "hermit-abi 0.3.2", "libc", "windows-sys 0.48.0", ] @@ -4816,31 +5108,30 @@ checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1" [[package]] name = "ipconfig" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2", + "socket2 0.5.3", "widestring", - "winapi", + "windows-sys 0.48.0", "winreg", ] [[package]] name = "ipnet" -version = "2.7.2" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" [[package]] name = "is-terminal" -version = "0.4.7" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" +checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ - "hermit-abi 0.3.1", - "io-lifetimes", - "rustix 0.37.19", + "hermit-abi 0.3.2", + "rustix 0.38.11", "windows-sys 0.48.0", ] @@ -4855,9 +5146,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.6" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" +checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jobserver" @@ -4870,9 +5161,9 @@ dependencies = [ [[package]] name = "js-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" +checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a" dependencies = [ "wasm-bindgen", ] @@ -4894,9 +5185,9 @@ dependencies = [ [[package]] name = "jsonrpsee" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d291e3a5818a2384645fd9756362e6d89cf0541b0b916fa7702ea4a9833608e" +checksum = "367a292944c07385839818bb71c8d76611138e2dedb0677d035b8da21d29c78b" dependencies = [ "jsonrpsee-client-transport", "jsonrpsee-core", @@ -4910,9 +5201,9 @@ dependencies = [ [[package]] name = "jsonrpsee-client-transport" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "965de52763f2004bc91ac5bcec504192440f0b568a5d621c59d9dbd6f886c3fb" +checksum = "c8b3815d9f5d5de348e5f162b316dc9cdf4548305ebb15b4eb9328e66cf27d7a" dependencies = [ "futures-util", "http", @@ -4923,20 +5214,20 @@ dependencies = [ "soketto", "thiserror", "tokio", - "tokio-rustls 0.23.4", + "tokio-rustls 0.24.1", "tokio-util 0.7.8", "tracing", - "webpki-roots", + "webpki-roots 0.25.2", ] [[package]] name = "jsonrpsee-core" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4e70b4439a751a5de7dd5ed55eacff78ebf4ffe0fc009cb1ebb11417f5b536b" +checksum = "2b5dde66c53d6dcdc8caea1874a45632ec0fcf5b437789f1e45766a1512ce803" dependencies = [ "anyhow", - "arrayvec 0.7.2", + "arrayvec 0.7.4", "async-lock", "async-trait", "beef", @@ -4959,13 +5250,13 @@ dependencies = [ [[package]] name = "jsonrpsee-http-client" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc345b0a43c6bc49b947ebeb936e886a419ee3d894421790c969cc56040542ad" +checksum = "7e5f9fabdd5d79344728521bb65e3106b49ec405a78b66fbff073b72b389fa43" dependencies = [ "async-trait", "hyper", - "hyper-rustls 0.23.2", + "hyper-rustls 0.24.1", "jsonrpsee-core", "jsonrpsee-types", "rustc-hash", @@ -4978,9 +5269,9 @@ dependencies = [ [[package]] name = "jsonrpsee-proc-macros" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baa6da1e4199c10d7b1d0a6e5e8bd8e55f351163b6f4b3cbb044672a69bd4c1c" +checksum = "44e8ab85614a08792b9bff6c8feee23be78c98d0182d4c622c05256ab553892a" dependencies = [ "heck", "proc-macro-crate 1.1.3", @@ -4991,9 +5282,9 @@ dependencies = [ [[package]] name = "jsonrpsee-server" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fb69dad85df79527c019659a992498d03f8495390496da2f07e6c24c2b356fc" +checksum = "cf4d945a6008c9b03db3354fb3c83ee02d2faa9f2e755ec1dfb69c3551b8f4ba" dependencies = [ "futures-channel", "futures-util", @@ -5013,9 +5304,9 @@ dependencies = [ [[package]] name = "jsonrpsee-types" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bd522fe1ce3702fd94812965d7bb7a3364b1c9aba743944c5a00529aae80f8c" +checksum = "245ba8e5aa633dd1c1e4fae72bce06e71f42d34c14a2767c6b4d173b57bee5e5" dependencies = [ "anyhow", "beef", @@ -5027,9 +5318,9 @@ dependencies = [ [[package]] name = "jsonrpsee-ws-client" -version = "0.16.2" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b83daeecfc6517cfe210df24e570fb06213533dfb990318fae781f4c7119dd9" +checksum = "4e1b3975ed5d73f456478681a417128597acd6a2487855fdb7b4a3d4d195bf5e" dependencies = [ "http", "jsonrpsee-client-transport", @@ -5037,6 +5328,20 @@ dependencies = [ "jsonrpsee-types", ] +[[package]] +name = "jsonwebtoken" +version = "8.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378" +dependencies = [ + "base64 0.21.3", + "pem", + "ring", + "serde", + "serde_json", + "simple_asn1", +] + [[package]] name = "k256" version = "0.11.6" @@ -5046,7 +5351,7 @@ dependencies = [ "cfg-if", "ecdsa 0.14.8", "elliptic-curve 0.12.3", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -5056,10 +5361,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc" dependencies = [ "cfg-if", - "ecdsa 0.16.7", + "ecdsa 0.16.8", "elliptic-curve 0.13.5", "once_cell", - "sha2 0.10.6", + "sha2 0.10.7", "signature 2.1.0", ] @@ -5078,7 +5383,7 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7d770dcb02bf6835887c3a979b5107a04ff4bbde97a5f0928d27404a155add9" dependencies = [ - "smallvec", + "smallvec 1.11.0", ] [[package]] @@ -5093,23 +5398,23 @@ dependencies = [ [[package]] name = "kvdb-rocksdb" -version = "0.17.0" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2182b8219fee6bd83aacaab7344e840179ae079d5216aa4e249b4d704646a844" +checksum = "b644c70b92285f66bfc2032922a79000ea30af7bc2ab31902992a5dcb9b434f6" dependencies = [ "kvdb", "num_cpus", "parking_lot 0.12.1", "regex", "rocksdb", - "smallvec", + "smallvec 1.11.0", ] [[package]] name = "lalrpop" -version = "0.19.12" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" +checksum = "da4081d44f4611b66c6dd725e6de3169f9f63905421e8626fcb86b6a898998b8" dependencies = [ "ascii-canvas", "bit-set", @@ -5120,7 +5425,7 @@ dependencies = [ "lalrpop-util", "petgraph", "regex", - "regex-syntax 0.6.29", + "regex-syntax 0.7.5", "string_cache", "term", "tiny-keccak", @@ -5129,12 +5434,9 @@ dependencies = [ [[package]] name = "lalrpop-util" -version = "0.19.12" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" -dependencies = [ - "regex", -] +checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" [[package]] name = "lazy_static" @@ -5167,12 +5469,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "libm" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a" - [[package]] name = "libm" version = "0.2.7" @@ -5181,22 +5477,24 @@ checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" [[package]] name = "libp2p" -version = "0.50.1" +version = "0.51.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c7b0104790be871edcf97db9bd2356604984e623a08d825c3f27852290266b8" +checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097" dependencies = [ "bytes", "futures", "futures-timer", - "getrandom 0.2.9", + "getrandom 0.2.10", "instant", - "libp2p-core 0.38.0", + "libp2p-allow-block-list", + "libp2p-connection-limits", + "libp2p-core", "libp2p-dns", "libp2p-identify", + "libp2p-identity", "libp2p-kad", "libp2p-mdns", "libp2p-metrics", - "libp2p-mplex", "libp2p-noise", "libp2p-ping", "libp2p-quic", @@ -5207,44 +5505,32 @@ dependencies = [ "libp2p-webrtc", "libp2p-websocket", "libp2p-yamux", - "multiaddr 0.16.0", - "parking_lot 0.12.1", + "multiaddr", "pin-project", - "smallvec", ] [[package]] -name = "libp2p-core" -version = "0.38.0" +name = "libp2p-allow-block-list" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6a8fcd392ff67af6cc3f03b1426c41f7f26b6b9aff2dc632c1c56dd649e571f" +checksum = "510daa05efbc25184458db837f6f9a5143888f1caa742426d92e1833ddd38a50" dependencies = [ - "asn1_der", - "bs58", - "ed25519-dalek", - "either", - "fnv", - "futures", - "futures-timer", - "instant", - "log", - "multiaddr 0.16.0", - "multihash 0.16.3", - "multistream-select", - "once_cell", - "parking_lot 0.12.1", - "pin-project", - "prost", - "prost-build", - "rand 0.8.5", - "rw-stream-sink", - "sec1 0.3.0", - "sha2 0.10.6", - "smallvec", - "thiserror", - "unsigned-varint", + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", + "void", +] + +[[package]] +name = "libp2p-connection-limits" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4caa33f1d26ed664c4fe2cca81a08c8e07d4c1c04f2f4ac7655c2dd85467fda0" +dependencies = [ + "libp2p-core", + "libp2p-identity", + "libp2p-swarm", "void", - "zeroize", ] [[package]] @@ -5260,7 +5546,7 @@ dependencies = [ "instant", "libp2p-identity", "log", - "multiaddr 0.17.1", + "multiaddr", "multihash 0.17.0", "multistream-select", "once_cell", @@ -5269,7 +5555,7 @@ dependencies = [ "quick-protobuf", "rand 0.8.5", "rw-stream-sink", - "smallvec", + "smallvec 1.11.0", "thiserror", "unsigned-varint", "void", @@ -5277,64 +5563,65 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.38.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e42a271c1b49f789b92f7fc87749fa79ce5c7bdc88cbdfacb818a4bca47fec5" +checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554" dependencies = [ "futures", - "libp2p-core 0.38.0", + "libp2p-core", "log", "parking_lot 0.12.1", - "smallvec", + "smallvec 1.11.0", "trust-dns-resolver", ] [[package]] name = "libp2p-identify" -version = "0.41.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c052d0026f4817b44869bfb6810f4e1112f43aec8553f2cb38881c524b563abf" +checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c" dependencies = [ "asynchronous-codec", + "either", "futures", "futures-timer", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-swarm", "log", - "lru", - "prost", - "prost-build", - "prost-codec", - "smallvec", + "lru 0.10.1", + "quick-protobuf", + "quick-protobuf-codec", + "smallvec 1.11.0", "thiserror", "void", ] [[package]] name = "libp2p-identity" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e2d584751cecb2aabaa56106be6be91338a60a0f4e420cf2af639204f596fc1" +checksum = "276bb57e7af15d8f100d3c11cbdd32c6752b7eef4ba7a18ecf464972c07abcce" dependencies = [ - "bs58", - "ed25519-dalek", + "bs58 0.4.0", + "ed25519-dalek 2.0.0", "log", - "multiaddr 0.17.1", + "multiaddr", "multihash 0.17.0", "quick-protobuf", "rand 0.8.5", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", "zeroize", ] [[package]] name = "libp2p-kad" -version = "0.42.1" +version = "0.43.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2766dcd2be8c87d5e1f35487deb22d765f49c6ae1251b3633efe3b25698bd3d2" +checksum = "39d5ef876a2b2323d63c258e63c2f8e36f205fe5a11f0b3095d59635650790ff" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "asynchronous-codec", "bytes", "either", @@ -5342,14 +5629,14 @@ dependencies = [ "futures", "futures-timer", "instant", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-swarm", "log", - "prost", - "prost-build", + "quick-protobuf", "rand 0.8.5", - "sha2 0.10.6", - "smallvec", + "sha2 0.10.7", + "smallvec 1.11.0", "thiserror", "uint", "unsigned-varint", @@ -5358,19 +5645,20 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.42.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04f378264aade9872d6ccd315c0accc18be3a35d15fc1b9c36e5b6f983b62b5b" +checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b" dependencies = [ "data-encoding", "futures", "if-watch", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-swarm", "log", "rand 0.8.5", - "smallvec", - "socket2", + "smallvec 1.11.0", + "socket2 0.4.9", "tokio", "trust-dns-proto", "void", @@ -5378,11 +5666,11 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.11.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ad8a64f29da86005c86a4d2728b8a0719e9b192f4092b609fd8790acb9dec55" +checksum = "a42ec91e227d7d0dafa4ce88b333cdf5f277253873ab087555c92798db2ddd46" dependencies = [ - "libp2p-core 0.38.0", + "libp2p-core", "libp2p-identify", "libp2p-kad", "libp2p-ping", @@ -5390,40 +5678,22 @@ dependencies = [ "prometheus-client", ] -[[package]] -name = "libp2p-mplex" -version = "0.38.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03805b44107aa013e7cbbfa5627b31c36cbedfdfb00603c0311998882bc4bace" -dependencies = [ - "asynchronous-codec", - "bytes", - "futures", - "libp2p-core 0.38.0", - "log", - "nohash-hasher", - "parking_lot 0.12.1", - "rand 0.8.5", - "smallvec", - "unsigned-varint", -] - [[package]] name = "libp2p-noise" -version = "0.41.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a978cb57efe82e892ec6f348a536bfbd9fee677adbe5689d7a93ad3a9bffbf2e" +checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e" dependencies = [ "bytes", "curve25519-dalek 3.2.0", "futures", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "log", "once_cell", - "prost", - "prost-build", + "quick-protobuf", "rand 0.8.5", - "sha2 0.10.6", + "sha2 0.10.7", "snow", "static_assertions", "thiserror", @@ -5433,14 +5703,15 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.41.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "929fcace45a112536e22b3dcfd4db538723ef9c3cb79f672b98be2cc8e25f37f" +checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202" dependencies = [ + "either", "futures", "futures-timer", "instant", - "libp2p-core 0.38.0", + "libp2p-core", "libp2p-swarm", "log", "rand 0.8.5", @@ -5449,70 +5720,68 @@ dependencies = [ [[package]] name = "libp2p-quic" -version = "0.7.0-alpha" +version = "0.7.0-alpha.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01e7c867e95c8130667b24409d236d37598270e6da69b3baf54213ba31ffca59" +checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735" dependencies = [ "bytes", "futures", "futures-timer", "if-watch", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-tls", "log", "parking_lot 0.12.1", "quinn-proto", "rand 0.8.5", - "rustls 0.20.8", + "rustls 0.20.9", "thiserror", "tokio", ] [[package]] name = "libp2p-request-response" -version = "0.23.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3236168796727bfcf4927f766393415361e2c644b08bedb6a6b13d957c9a4884" +checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5" dependencies = [ "async-trait", - "bytes", "futures", "instant", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-swarm", - "log", "rand 0.8.5", - "smallvec", - "unsigned-varint", + "smallvec 1.11.0", ] [[package]] name = "libp2p-swarm" -version = "0.41.1" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2a35472fe3276b3855c00f1c032ea8413615e030256429ad5349cdf67c6e1a0" +checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296" dependencies = [ "either", "fnv", "futures", "futures-timer", "instant", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-swarm-derive", "log", - "pin-project", "rand 0.8.5", - "smallvec", - "thiserror", + "smallvec 1.11.0", "tokio", "void", ] [[package]] name = "libp2p-swarm-derive" -version = "0.31.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d527d5827582abd44a6d80c07ff8b50b4ee238a8979e05998474179e79dc400" +checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f" dependencies = [ "heck", "quote", @@ -5521,17 +5790,17 @@ dependencies = [ [[package]] name = "libp2p-tcp" -version = "0.38.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4b257baf6df8f2df39678b86c578961d48cc8b68642a12f0f763f56c8e5858d" +checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf" dependencies = [ "futures", "futures-timer", "if-watch", "libc", - "libp2p-core 0.38.0", + "libp2p-core", "log", - "socket2", + "socket2 0.4.9", "tokio", ] @@ -5543,26 +5812,26 @@ checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" dependencies = [ "futures", "futures-rustls", - "libp2p-core 0.39.2", + "libp2p-core", "libp2p-identity", "rcgen 0.10.0", "ring", - "rustls 0.20.8", + "rustls 0.20.9", "thiserror", - "webpki 0.22.0", + "webpki 0.22.1", "x509-parser 0.14.0", "yasna", ] [[package]] name = "libp2p-wasm-ext" -version = "0.38.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bb1a35299860e0d4b3c02a3e74e3b293ad35ae0cee8a056363b0c862d082069" +checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43" dependencies = [ "futures", "js-sys", - "libp2p-core 0.38.0", + "libp2p-core", "parity-send-wrapper", "wasm-bindgen", "wasm-bindgen-futures", @@ -5570,9 +5839,9 @@ dependencies = [ [[package]] name = "libp2p-webrtc" -version = "0.4.0-alpha" +version = "0.4.0-alpha.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb6cd86dd68cba72308ea05de1cebf3ba0ae6e187c40548167955d4e3970f6a" +checksum = "dba48592edbc2f60b4bc7c10d65445b0c3964c07df26fdf493b6880d33be36f8" dependencies = [ "async-trait", "asynchronous-codec", @@ -5581,13 +5850,13 @@ dependencies = [ "futures-timer", "hex", "if-watch", - "libp2p-core 0.38.0", + "libp2p-core", + "libp2p-identity", "libp2p-noise", "log", - "multihash 0.16.3", - "prost", - "prost-build", - "prost-codec", + "multihash 0.17.0", + "quick-protobuf", + "quick-protobuf-codec", "rand 0.8.5", "rcgen 0.9.3", "serde", @@ -5601,42 +5870,41 @@ dependencies = [ [[package]] name = "libp2p-websocket" -version = "0.40.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d705506030d5c0aaf2882437c70dab437605f21c5f9811978f694e6917a3b54" +checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f" dependencies = [ "either", "futures", "futures-rustls", - "libp2p-core 0.38.0", + "libp2p-core", "log", "parking_lot 0.12.1", "quicksink", "rw-stream-sink", "soketto", "url", - "webpki-roots", + "webpki-roots 0.22.6", ] [[package]] name = "libp2p-yamux" -version = "0.42.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f63594a0aa818642d9d4915c791945053877253f08a3626f13416b5cd928a29" +checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda" dependencies = [ "futures", - "libp2p-core 0.38.0", + "libp2p-core", "log", - "parking_lot 0.12.1", "thiserror", "yamux", ] [[package]] name = "librocksdb-sys" -version = "0.8.3+7.4.4" +version = "0.11.0+8.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "557b255ff04123fcc176162f56ed0c9cd42d8f357cf55b3fabeb60f7413741b3" +checksum = "d3386f101bcb4bd252d8e9d2fb41ec3b0862a15a62b478c355b2982efa469e3e" dependencies = [ "bindgen", "bzip2-sys", @@ -5697,9 +5965,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.9" +version = "1.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" +checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b" dependencies = [ "cc", "pkg-config", @@ -5708,9 +5976,9 @@ dependencies = [ [[package]] name = "link-cplusplus" -version = "1.0.8" +version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5" +checksum = "9d240c6f7e1ba3a28b0249f774e6a9dd0175054b52dfbb61b16eb8505c3785c9" dependencies = [ "cc", ] @@ -5732,9 +6000,9 @@ dependencies = [ [[package]] name = "linregress" -version = "0.5.1" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "475015a7f8f017edb28d2e69813be23500ad4b32cfe3421c4148efc97324ee52" +checksum = "4de04dcecc58d366391f9920245b85ffa684558a5ef6e7736e754347c3aea9c2" dependencies = [ "nalgebra", ] @@ -5753,15 +6021,15 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.3" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0" +checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" [[package]] name = "lock_api" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ "autocfg", "scopeguard", @@ -5769,12 +6037,9 @@ dependencies = [ [[package]] name = "log" -version = "0.4.17" +version = "0.4.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", -] +checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "lru" @@ -5785,6 +6050,15 @@ dependencies = [ "hashbrown 0.12.3", ] +[[package]] +name = "lru" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "718e8fae447df0c7e1ba7f5189829e63fd536945c8988d61444c19039f16b670" +dependencies = [ + "hashbrown 0.13.2", +] + [[package]] name = "lru-cache" version = "0.1.2" @@ -5835,7 +6109,7 @@ version = "0.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f099785f7595cc4b4553a174ce30dd7589ef93391ff414dbb67f62392b9e0ce1" dependencies = [ - "regex-automata", + "regex-automata 0.1.10", ] [[package]] @@ -5854,6 +6128,12 @@ dependencies = [ "rawpointer", ] +[[package]] +name = "maybe-uninit" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" + [[package]] name = "md-5" version = "0.10.5" @@ -5865,9 +6145,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.5.0" +version = "2.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +checksum = "8f232d6ef707e1956a43342693d2a31e72989554d58299d7a88738cc95b0d35c" [[package]] name = "memfd" @@ -5875,7 +6155,7 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffc89ccdc6e10d6907450f753537ebc5c5d3460d2e4e62ea74bd571db62c0f9e" dependencies = [ - "rustix 0.37.19", + "rustix 0.37.23", ] [[package]] @@ -5914,6 +6194,15 @@ dependencies = [ "autocfg", ] +[[package]] +name = "memoffset" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" +dependencies = [ + "autocfg", +] + [[package]] name = "memory-db" version = "0.32.0" @@ -5953,15 +6242,6 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" -[[package]] -name = "miniz_oxide" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa" -dependencies = [ - "adler", -] - [[package]] name = "miniz_oxide" version = "0.7.1" @@ -5973,49 +6253,48 @@ dependencies = [ [[package]] name = "mio" -version = "0.8.6" +version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" +checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" dependencies = [ "libc", - "log", "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-offchain", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "anyhow", "jsonrpsee", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -6045,24 +6324,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "multiaddr" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4aebdb21e90f81d13ed01dc84123320838e53963c2ca94b60b305d3fa64f31e" -dependencies = [ - "arrayref", - "byteorder", - "data-encoding", - "multibase", - "multihash 0.16.3", - "percent-encoding", - "serde", - "static_assertions", - "unsigned-varint", - "url", -] - [[package]] name = "multiaddr" version = "0.17.1" @@ -6105,7 +6366,7 @@ dependencies = [ "core2", "digest 0.10.7", "multihash-derive", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", "unsigned-varint", ] @@ -6117,7 +6378,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" dependencies = [ "core2", + "digest 0.10.7", "multihash-derive", + "sha2 0.10.7", "unsigned-varint", ] @@ -6151,15 +6414,15 @@ dependencies = [ "futures", "log", "pin-project", - "smallvec", + "smallvec 1.11.0", "unsigned-varint", ] [[package]] name = "nalgebra" -version = "0.32.2" +version = "0.32.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d68d47bba83f9e2006d117a9a33af1524e655516b8919caac694427a6fb1e511" +checksum = "307ed9b18cc2423f29e83f84fd23a8e73628727990181f18641a8b5dc2ab1caa" dependencies = [ "approx", "matrixmultiply", @@ -6173,9 +6436,9 @@ dependencies = [ [[package]] name = "nalgebra-macros" -version = "0.2.0" +version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d232c68884c0c99810a5a4d333ef7e47689cfd0edc85efc9e54e1e6bf5212766" +checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998" dependencies = [ "proc-macro2", "quote", @@ -6295,18 +6558,23 @@ dependencies = [ [[package]] name = "nix" -version = "0.26.2" +version = "0.26.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a" +checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ "bitflags 1.3.2", "cfg-if", "libc", "memoffset 0.7.1", "pin-utils", - "static_assertions", ] +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + [[package]] name = "nohash-hasher" version = "0.2.0" @@ -6331,9 +6599,9 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be" [[package]] name = "num" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606" +checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af" dependencies = [ "num-bigint", "num-complex", @@ -6345,9 +6613,9 @@ dependencies = [ [[package]] name = "num-bigint" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" +checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" dependencies = [ "autocfg", "num-integer", @@ -6357,9 +6625,9 @@ dependencies = [ [[package]] name = "num-complex" -version = "0.4.3" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d" +checksum = "1ba157ca0885411de85d6ca030ba7e2a83a28636056c7c699b07c8b6f7383214" dependencies = [ "num-traits", ] @@ -6381,7 +6649,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "itoa", ] @@ -6420,21 +6688,21 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.15" +version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ "autocfg", - "libm 0.2.7", + "libm", ] [[package]] name = "num_cpus" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" +checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" dependencies = [ - "hermit-abi 0.2.6", + "hermit-abi 0.3.2", "libc", ] @@ -6456,6 +6724,15 @@ dependencies = [ "num_enum_derive 0.6.1", ] +[[package]] +name = "num_enum" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" +dependencies = [ + "num_enum_derive 0.7.0", +] + [[package]] name = "num_enum_derive" version = "0.5.11" @@ -6477,7 +6754,19 @@ dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" +dependencies = [ + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 2.0.31", ] [[package]] @@ -6488,15 +6777,27 @@ checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" dependencies = [ "crc32fast", "hashbrown 0.12.3", - "indexmap", + "indexmap 1.9.3", "memchr", ] [[package]] name = "object" -version = "0.30.3" +version = "0.30.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439" +checksum = "03b4680b86d9cfafba8fc491dc9b6df26b68cf40e9e6cd73909194759a63c385" +dependencies = [ + "crc32fast", + "hashbrown 0.13.2", + "indexmap 1.9.3", + "memchr", +] + +[[package]] +name = "object" +version = "0.32.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" dependencies = [ "memchr", ] @@ -6521,9 +6822,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.17.1" +version = "1.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" +checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" [[package]] name = "opaque-debug" @@ -6543,7 +6844,7 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "auto_impl", "bytes", "ethereum-types 0.14.1", @@ -6564,11 +6865,11 @@ dependencies = [ [[package]] name = "openssl" -version = "0.10.52" +version = "0.10.57" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" +checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.0", "cfg-if", "foreign-types", "libc", @@ -6585,7 +6886,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -6596,9 +6897,9 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] name = "openssl-sys" -version = "0.9.87" +version = "0.9.93" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" +checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d" dependencies = [ "cc", "libc", @@ -6606,6 +6907,45 @@ dependencies = [ "vcpkg", ] +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "orml-traits" +version = "0.4.1-dev" +source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.43#28a2e6f0df9540d91db4018c7ecebb8bfc217a2a" +dependencies = [ + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "impl-trait-for-tuples", + "num-traits", + "orml-utilities", + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "xcm", +] + +[[package]] +name = "orml-utilities" +version = "0.4.1-dev" +source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.43#28a2e6f0df9540d91db4018c7ecebb8bfc217a2a" +dependencies = [ + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", +] + [[package]] name = "p256" version = "0.11.1" @@ -6614,7 +6954,7 @@ checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" dependencies = [ "ecdsa 0.14.8", "elliptic-curve 0.12.3", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -6625,301 +6965,290 @@ checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" dependencies = [ "ecdsa 0.14.8", "elliptic-curve 0.12.3", - "sha2 0.10.6", -] - -[[package]] -name = "packed_simd_2" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" -dependencies = [ - "cfg-if", - "libm 0.1.4", + "sha2 0.10.7", ] [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "pallet-timestamp", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-application-crypto", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus-aura", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "impl-trait-for-tuples", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-base-fee" version = "1.0.0" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-staking", - "sp-std 5.0.0", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-beefy", "pallet-mmr", "pallet-session", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus-beefy", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-treasury", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-chain-extension-xvm" -version = "0.1.0" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +version = "0.1.1" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ - "frame-support", - "frame-system", + "astar-primitives", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "num-traits", "pallet-contracts", "pallet-contracts-primitives", - "pallet-xvm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "xvm-chain-extension-types", ] [[package]] name = "pallet-contracts" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "bitflags 1.3.2", "environmental", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "impl-trait-for-tuples", "log", "pallet-contracts-primitives", "pallet-contracts-proc-macro", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rand 0.8.5", "scale-info", "serde", - "smallvec", - "sp-api", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "smallvec 1.11.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "wasm-instrument 0.4.0", - "wasmi 0.20.0", + "wasmi 0.28.0", "wasmparser-nostd", ] [[package]] name = "pallet-contracts-primitives" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "bitflags 1.3.2", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", - "sp-weights", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-contracts-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "assert_matches", - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-dynamic-fee" version = "4.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-dynamic-fee", "fp-evm", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-inherents", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-election-provider-support-benchmarking", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rand 0.8.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-npos-elections", - "sp-runtime", - "sp-std 5.0.0", - "strum", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "strum 0.24.1", ] [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-election-provider-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "sp-npos-elections", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-ethereum" version = "4.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "environmental", "ethereum", "ethereum-types 0.14.1", "evm", @@ -6928,55 +7257,97 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "pallet-evm", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", +] + +[[package]] +name = "pallet-ethereum-checked" +version = "0.1.0" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" +dependencies = [ + "astar-primitives", + "ethereum-types 0.14.1", + "fp-ethereum", + "fp-evm", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "hex", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm" version = "6.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "environmental", "evm", "fp-account", "fp-evm", - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "hex", + "hex-literal 0.4.1", "impl-trait-for-tuples", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rlp", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm-chain-id" version = "1.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", ] +[[package]] +name = "pallet-evm-precompile-assets-erc20" +version = "0.5.2" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" +dependencies = [ + "fp-evm", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log", + "num_enum 0.5.11", + "pallet-assets", + "pallet-balances", + "pallet-evm", + "parity-scale-codec 3.6.5", + "precompile-utils", + "slices", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", +] + [[package]] name = "pallet-evm-precompile-blake2" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", ] @@ -6984,26 +7355,26 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-bn128" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-bn", ] [[package]] name = "pallet-evm-precompile-ed25519" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "ed25519-dalek", + "ed25519-dalek 1.0.1", "fp-evm", ] [[package]] name = "pallet-evm-precompile-modexp" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", "num", @@ -7015,30 +7386,30 @@ version = "0.1.2" dependencies = [ "derive_more", "fp-evm", - "frame-support", - "frame-system", - "hex-literal", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "hex-literal 0.3.4", "libsecp256k1", "log", "num_enum 0.5.11", "pallet-evm", "pallet-session", - "pallet-timestamp", - "parity-scale-codec 3.5.0", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "precompile-utils", "serde", "sha3 0.8.2", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm-precompile-sha3fips" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", "tiny-keccak", @@ -7047,63 +7418,65 @@ dependencies = [ [[package]] name = "pallet-evm-precompile-simple" version = "2.0.0-dev" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", "ripemd", - "sp-io", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm-precompile-sr25519" version = "1.2.1" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "fp-evm", "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "precompile-utils", - "sp-core", - "sp-io", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm-precompile-substrate-ecdsa" version = "1.2.2" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ + "assert_matches", "fp-evm", "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "precompile-utils", - "sp-core", - "sp-io", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-evm-precompile-xvm" -version = "0.1.0" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +version = "0.1.1" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ + "astar-primitives", "fp-evm", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "hex", "log", "num_enum 0.5.11", "pallet-evm", - "pallet-xvm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "precompile-utils", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -7121,399 +7494,397 @@ dependencies = [ "ark-std", "derive_more", "fp-evm", - "frame-support", - "frame-system", - "hex-literal", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "hex-literal 0.3.4", "libsecp256k1", "log", "num-bigint", "num_enum 0.5.11", "pallet-balances", "pallet-evm", - "pallet-timestamp", - "parity-scale-codec 3.5.0", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "precompile-utils", "serde", "sha3 0.8.2", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-application-crypto", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus-grandpa", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-staking", - "sp-std 5.0.0", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-hotfix-sufficients" version = "1.0.0" -source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.40#e2f5879d243f5d9b8272a1ae640669065c8546f2" +source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-ibc" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=icf-m3#2e06929aced42fe3224bd5e5f71f0fc02ecce3dd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "log", "pallet-ibc-utils", - "pallet-timestamp", - "parity-scale-codec 3.5.0", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "parity-scale-codec 3.6.5", "scale-info", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", - "sp-tracing", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", ] [[package]] name = "pallet-ibc-utils" version = "0.1.0" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=icf-m3#2e06929aced42fe3224bd5e5f71f0fc02ecce3dd" dependencies = [ - "frame-benchmarking", - "frame-support", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", ] [[package]] name = "pallet-ics20-transfer" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=icf-m3#2e06929aced42fe3224bd5e5f71f0fc02ecce3dd" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "hex", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "log", "pallet-ibc-utils", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "scale-info", - "sha2 0.10.6", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sha2 0.10.7", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "subtle-encoding", ] [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "enumflags2", - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-authorship", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-application-crypto", - "sp-core", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-keyring", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "safe-mix", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-balances", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-arithmetic", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", - "sp-weights", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "impl-trait-for-tuples", "log", - "pallet-timestamp", - "parity-scale-codec 3.5.0", + "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-io", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-staking", - "sp-std 5.0.0", - "sp-trie", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "rand_chacha 0.2.2", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "frame-election-provider-support", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-application-crypto", - "sp-io", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -7521,134 +7892,173 @@ name = "pallet-timestamp" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "log", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "pallet-timestamp" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-inherents", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", - "sp-timestamp", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", - "parity-scale-codec 3.5.0", - "sp-api", + "parity-scale-codec 3.6.5", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-rpc", - "sp-runtime", - "sp-weights", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "pallet-transaction-payment", - "parity-scale-codec 3.5.0", - "sp-api", - "sp-runtime", - "sp-weights", + "parity-scale-codec 3.6.5", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "impl-trait-for-tuples", "pallet-balances", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", +] + +[[package]] +name = "pallet-xc-asset-config" +version = "1.3.0" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ - "frame-benchmarking", - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log", + "parity-scale-codec 3.6.5", "scale-info", - "sp-api", - "sp-runtime", - "sp-std 5.0.0", + "serde", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "xcm", ] [[package]] name = "pallet-xvm" -version = "0.2.1" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +version = "0.2.2" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ - "frame-support", - "frame-system", - "impl-trait-for-tuples", + "astar-primitives", + "environmental", + "fp-evm", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-contracts", + "pallet-contracts-primitives", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "parity-db" -version = "0.4.8" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4890dcb9556136a4ec2b0c51fa4a08c8b733b829506af8fff2e853f3a065985b" +checksum = "78f19d20a0d2cc52327a88d131fa1c4ea81ea4a04714aedcfeca2dd410049cf8" dependencies = [ "blake2", "crc32fast", @@ -7670,7 +8080,7 @@ version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "bitvec 0.20.4", "byte-slice-cast", "impl-trait-for-tuples", @@ -7680,16 +8090,16 @@ dependencies = [ [[package]] name = "parity-scale-codec" -version = "3.5.0" +version = "3.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ddb756ca205bd108aee3c62c6d3c994e1df84a59b9d6d4a5ea42ee1fd5a9a28" +checksum = "0dec8a8073036902368c2cdc0387e85ff9a37054d7e7c98e592145e0c92cd4fb" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "bitvec 1.0.1", "byte-slice-cast", "bytes", "impl-trait-for-tuples", - "parity-scale-codec-derive 3.1.4", + "parity-scale-codec-derive 3.6.5", "serde", ] @@ -7707,9 +8117,9 @@ dependencies = [ [[package]] name = "parity-scale-codec-derive" -version = "3.1.4" +version = "3.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b26a931f824dd4eca30b3e43bb4f31cd5f0d3a403c5f5ff27106b805bfde7b" +checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -7753,7 +8163,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.7", + "parking_lot_core 0.9.8", ] [[package]] @@ -7766,23 +8176,29 @@ dependencies = [ "instant", "libc", "redox_syscall 0.2.16", - "smallvec", + "smallvec 1.11.0", "winapi", ] [[package]] name = "parking_lot_core" -version = "0.9.7" +version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.2.16", - "smallvec", - "windows-sys 0.45.0", + "redox_syscall 0.3.5", + "smallvec 1.11.0", + "windows-targets 0.48.5", ] +[[package]] +name = "partial_sort" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7924d1d0ad836f665c9065e26d016c673ece3993f30d340068b16f282afc1156" + [[package]] name = "password-hash" version = "0.4.2" @@ -7796,9 +8212,9 @@ dependencies = [ [[package]] name = "paste" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" +checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" [[package]] name = "path-slash" @@ -7824,14 +8240,14 @@ dependencies = [ "digest 0.10.7", "hmac 0.12.1", "password-hash", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] name = "pbkdf2" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0ca0b5a68607598bf3bad68f32227a8164f6254833f84eafaac409cd6746c31" +checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" dependencies = [ "digest 0.10.7", "hmac 0.12.1", @@ -7863,25 +8279,26 @@ dependencies = [ [[package]] name = "percent-encoding" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" +checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" [[package]] name = "pest" -version = "2.6.0" +version = "2.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e68e84bfb01f0507134eac1e9b410a12ba379d064eab48c50ba4ce329a527b70" +checksum = "d7a4d085fd991ac8d5b05a147b437791b4260b76326baf0fc60cf7c9c27ecd33" dependencies = [ + "memchr", "thiserror", "ucd-trie", ] [[package]] name = "pest_derive" -version = "2.6.0" +version = "2.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b79d4c71c865a25a4322296122e3924d30bc8ee0834c8bfc8b95f7f054afbfb" +checksum = "a2bee7be22ce7918f641a33f08e3f43388c7656772244e2bbb2477f44cc9021a" dependencies = [ "pest", "pest_generator", @@ -7889,36 +8306,36 @@ dependencies = [ [[package]] name = "pest_generator" -version = "2.6.0" +version = "2.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c435bf1076437b851ebc8edc3a18442796b30f1728ffea6262d59bbe28b077e" +checksum = "d1511785c5e98d79a05e8a6bc34b4ac2168a0e3e92161862030ad84daa223141" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "pest_meta" -version = "2.6.0" +version = "2.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "745a452f8eb71e39ffd8ee32b3c5f51d03845f99786fa9b68db6ff509c505411" +checksum = "b42f0394d3123e33353ca5e1e89092e533d2cc490389f2bd6131c43c634ebc5f" dependencies = [ "once_cell", "pest", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] name = "petgraph" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4" +checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap", + "indexmap 2.0.0", ] [[package]] @@ -7933,35 +8350,35 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c" +checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" dependencies = [ "phf_macros", - "phf_shared 0.11.1", + "phf_shared 0.11.2", ] [[package]] name = "phf_generator" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf" +checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" dependencies = [ - "phf_shared 0.11.1", + "phf_shared 0.11.2", "rand 0.8.5", ] [[package]] name = "phf_macros" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66" +checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" dependencies = [ "phf_generator", - "phf_shared 0.11.1", + "phf_shared 0.11.2", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] @@ -7975,31 +8392,31 @@ dependencies = [ [[package]] name = "phf_shared" -version = "0.11.1" +version = "0.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676" +checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" dependencies = [ "siphasher", ] [[package]] name = "pin-project" -version = "1.1.0" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" +checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" dependencies = [ "pin-project-internal", ] [[package]] name = "pin-project-internal" -version = "1.1.0" +version = "1.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" +checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -8010,9 +8427,9 @@ checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" [[package]] name = "pin-project-lite" -version = "0.2.9" +version = "0.2.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" +checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" [[package]] name = "pin-utils" @@ -8036,7 +8453,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.6", + "der 0.7.8", "spki 0.7.2", ] @@ -8054,69 +8471,69 @@ checksum = "e8d0eef3571242013a0d5dc84861c3ae4a652e56e12adf8bdc26ff5f8cb34c94" [[package]] name = "platforms" -version = "3.0.2" +version = "3.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" +checksum = "4503fa043bf02cee09a9582e9554b4c6403b2ef55e4612e96561d294419429f8" [[package]] name = "polkadot-core-primitives" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "polkadot-parachain" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "bounded-collections", "derive_more", - "frame-support", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "polkadot-core-primitives", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "polkadot-primitives" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "bitvec 1.0.1", - "hex-literal", - "parity-scale-codec 3.5.0", + "hex-literal 0.4.1", + "parity-scale-codec 3.6.5", "polkadot-core-primitives", "polkadot-parachain", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-authority-discovery", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-io", - "sp-keystore", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "polkadot-rpc" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -8134,13 +8551,13 @@ dependencies = [ "sc-rpc", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore", - "sp-runtime", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -8157,7 +8574,7 @@ dependencies = [ "concurrent-queue", "libc", "log", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "windows-sys 0.48.0", ] @@ -8186,9 +8603,9 @@ dependencies = [ [[package]] name = "polyval" -version = "0.6.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef234e08c11dfcb2e56f79fd70f6f2eb7f025c0ce2333e82f4f0518ecad30c6" +checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" dependencies = [ "cfg-if", "cpufeatures", @@ -8204,32 +8621,33 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "precompile-utils" -version = "0.4.3" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +version = "0.5.0" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "assert_matches", + "environmental", "evm", "fp-evm", - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "impl-trait-for-tuples", "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "precompile-utils-macro", "sha3 0.10.8", - "sp-core", - "sp-io", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "xcm", ] [[package]] name = "precompile-utils-macro" version = "0.1.0" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "num_enum 0.5.11", "proc-macro2", @@ -8298,12 +8716,12 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.6" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b69d39aab54d069e7f2fe8cb970493e7834601ca2d8c65fd7bbd183578080d1" +checksum = "8832c0f9be7e3cae60727e6256cfd2cd3c3e2b6cd5dad4190ecb2fd658c9030b" dependencies = [ "proc-macro2", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -8376,11 +8794,22 @@ dependencies = [ "version_check", ] +[[package]] +name = "proc-macro-warning" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e99670bafb56b9a106419397343bdbc8b8742c3cc449fec6345f86173f47cd4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "proc-macro2" -version = "1.0.59" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6aeca18b86b413c660b781aa319e4e2648a3e6f9eadc9b47e9038e6fe9f3451b" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -8401,25 +8830,25 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.18.1" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83cd1b99916654a69008fd66b4f9397fbe08e6e51dfe23d4417acf5d3b8cb87c" +checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" dependencies = [ "dtoa", "itoa", "parking_lot 0.12.1", - "prometheus-client-derive-text-encode", + "prometheus-client-derive-encode", ] [[package]] -name = "prometheus-client-derive-text-encode" -version = "0.3.0" +name = "prometheus-client-derive-encode" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a455fbcb954c1a7decf3c586e860fd7889cddf4b8e164be736dbac95a953cd" +checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] @@ -8474,19 +8903,6 @@ dependencies = [ "which", ] -[[package]] -name = "prost-codec" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dc34979ff898b6e141106178981ce2596c387ea6e62533facfc61a37fc879c0" -dependencies = [ - "asynchronous-codec", - "bytes", - "prost", - "thiserror", - "unsigned-varint", -] - [[package]] name = "prost-derive" version = "0.11.9" @@ -8533,6 +8949,19 @@ dependencies = [ "byteorder", ] +[[package]] +name = "quick-protobuf-codec" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b" +dependencies = [ + "asynchronous-codec", + "bytes", + "quick-protobuf", + "thiserror", + "unsigned-varint", +] + [[package]] name = "quicksink" version = "0.1.2" @@ -8546,37 +8975,31 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67c10f662eee9c94ddd7135043e544f3c82fa839a1e7b865911331961b53186c" +checksum = "f31999cfc7927c4e212e60fd50934ab40e8e8bfd2d493d6095d2d306bc0764d9" dependencies = [ "bytes", "rand 0.8.5", "ring", "rustc-hash", - "rustls 0.20.8", + "rustls 0.20.9", "slab", "thiserror", "tinyvec", "tracing", - "webpki 0.22.0", + "webpki 0.22.1", ] [[package]] name = "quote" -version = "1.0.28" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b9ab9c7eadfd8df19006f1cf1a4aed13540ed5cbc047010ece5826e10825488" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] -[[package]] -name = "radium" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac" - [[package]] name = "radium" version = "0.6.2" @@ -8648,7 +9071,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.9", + "getrandom 0.2.10", ] [[package]] @@ -8755,52 +9178,53 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ - "getrandom 0.2.9", + "getrandom 0.2.10", "redox_syscall 0.2.16", "thiserror", ] [[package]] name = "ref-cast" -version = "1.0.16" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43faa91b1c8b36841ee70e97188a869d37ae21759da6846d4be66de5bf7b12c" +checksum = "acde58d073e9c79da00f2b5b84eed919c8326832648a5b109b3fce1bb1175280" dependencies = [ "ref-cast-impl", ] [[package]] name = "ref-cast-impl" -version = "1.0.16" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d2275aab483050ab2a7364c1a46604865ee7d6906684e08db0f090acf74f9e7" +checksum = "7f7473c2cfcf90008193dd0e3e16599455cb601a9fce322b5bb55de799664925" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "regalloc2" -version = "0.5.1" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "300d4fbfb40c1c66a78ba3ddd41c1110247cf52f97b87d0f2fc9209bd49b030c" +checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" dependencies = [ "fxhash", "log", "slice-group-by", - "smallvec", + "smallvec 1.11.0", ] [[package]] name = "regex" -version = "1.8.3" +version = "1.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81ca098a9821bd52d6b24fd8b10bd081f47d39c22778cafaa75a2857a62c6390" +checksum = "697061221ea1b4a94a624f67d0ae2bfe4e22b8a17b6a192afb11046542cc8c47" dependencies = [ - "aho-corasick 1.0.1", + "aho-corasick", "memchr", - "regex-syntax 0.7.2", + "regex-automata 0.3.8", + "regex-syntax 0.7.5", ] [[package]] @@ -8813,36 +9237,35 @@ dependencies = [ ] [[package]] -name = "regex-syntax" -version = "0.6.29" +name = "regex-automata" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" +checksum = "c2f401f4955220693b56f8ec66ee9c78abffd8d1c4f23dc41a23839eb88f0795" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.7.5", +] [[package]] name = "regex-syntax" -version = "0.7.2" +version = "0.6.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" [[package]] -name = "region" -version = "3.0.0" +name = "regex-syntax" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e" -dependencies = [ - "bitflags 1.3.2", - "libc", - "mach", - "winapi", -] +checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" [[package]] name = "reqwest" -version = "0.11.18" +version = "0.11.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ - "base64 0.21.2", + "base64 0.21.3", "bytes", "encoding_rs", "futures-core", @@ -8851,7 +9274,7 @@ dependencies = [ "http", "http-body", "hyper", - "hyper-rustls 0.24.0", + "hyper-rustls 0.24.1", "hyper-tls", "ipnet", "js-sys", @@ -8860,21 +9283,21 @@ dependencies = [ "native-tls", "once_cell", "percent-encoding", - "pin-project-lite 0.2.9", - "rustls 0.21.1", + "pin-project-lite 0.2.13", + "rustls 0.21.7", "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", "tokio", "tokio-native-tls", - "tokio-rustls 0.24.0", + "tokio-rustls 0.24.1", "tower-service", "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots", + "webpki-roots 0.25.2", "winreg", ] @@ -8957,9 +9380,9 @@ dependencies = [ [[package]] name = "rocksdb" -version = "0.19.0" +version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9562ea1d70c0cc63a34a22d977753b50cca91cc6b6527750463bd5dd8697bc" +checksum = "bb6f170a4041d50a0ce04b0d2e14916d6ca863ea2e422689a5b694395d299ffe" dependencies = [ "libc", "librocksdb-sys", @@ -9030,8 +9453,8 @@ dependencies = [ name = "runtime-common" version = "0.1.2" dependencies = [ - "frame-support", - "frame-system", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "log", "pallet-contracts", "pallet-evm", @@ -9048,13 +9471,13 @@ dependencies = [ "pallet-evm-precompile-zk-groth16-verify", "pallet-session", "pallet-xvm", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "proptest", "scale-info", "serde", - "sp-core", - "sp-staking", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "test-strategy", ] @@ -9091,7 +9514,7 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ - "semver 1.0.17", + "semver 1.0.18", ] [[package]] @@ -9105,9 +9528,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.14" +version = "0.36.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14e4d67015953998ad0eb82887a0eb0129e18a7e2f3b7b0f6c422fddcd503d62" +checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941" dependencies = [ "bitflags 1.3.2", "errno", @@ -9119,9 +9542,9 @@ dependencies = [ [[package]] name = "rustix" -version = "0.37.19" +version = "0.37.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" +checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06" dependencies = [ "bitflags 1.3.2", "errno", @@ -9133,14 +9556,14 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.4" +version = "0.38.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5" +checksum = "c0c3dde1fc030af041adc40e79c0e7fbcf431dd24870053d187d7c66e4b87453" dependencies = [ - "bitflags 2.3.3", + "bitflags 2.4.0", "errno", "libc", - "linux-raw-sys 0.4.3", + "linux-raw-sys 0.4.5", "windows-sys 0.48.0", ] @@ -9159,33 +9582,33 @@ dependencies = [ [[package]] name = "rustls" -version = "0.20.8" +version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" +checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" dependencies = [ "log", "ring", "sct 0.7.0", - "webpki 0.22.0", + "webpki 0.22.1", ] [[package]] name = "rustls" -version = "0.21.1" +version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e" +checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" dependencies = [ "log", "ring", - "rustls-webpki", + "rustls-webpki 0.101.4", "sct 0.7.0", ] [[package]] name = "rustls-native-certs" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50" +checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00" dependencies = [ "openssl-probe", "rustls-pemfile", @@ -9195,18 +9618,28 @@ dependencies = [ [[package]] name = "rustls-pemfile" -version = "1.0.2" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d194b56d58803a43635bdc398cd17e383d6f71f9182b9a192c127ca42494a59b" +checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" dependencies = [ - "base64 0.21.2", + "base64 0.21.3", ] [[package]] name = "rustls-webpki" -version = "0.100.1" +version = "0.100.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e98ff011474fa39949b7e5c0428f9b4937eda7da7848bbb947786b7be0b27dab" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b" +checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d" dependencies = [ "ring", "untrusted", @@ -9214,9 +9647,9 @@ dependencies = [ [[package]] name = "rustversion" -version = "1.0.12" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" +checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" [[package]] name = "rusty-fork" @@ -9243,9 +9676,9 @@ dependencies = [ [[package]] name = "ryu" -version = "1.0.13" +version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" +checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" [[package]] name = "safe-mix" @@ -9305,9 +9738,9 @@ dependencies = [ [[package]] name = "safe_arch" -version = "0.6.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "794821e4ccb0d9f979512f9c1973480123f9bd62a90d74ab0f9426fcf8f4a529" +checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354" dependencies = [ "bytemuck", ] @@ -9333,56 +9766,56 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "log", - "sp-core", - "sp-wasm-interface", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "futures-timer", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-block-builder", "sc-client-api", "sc-proposer-metrics", "sc-telemetry", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", ] [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", - "sp-core", - "sp-inherents", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -9393,36 +9826,36 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "chrono", "clap", "fdlimit", "futures", - "libp2p", + "libp2p-identity", "log", "names", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "rand 0.8.5", "regex", "rpassword", @@ -9438,12 +9871,12 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-keyring", - "sp-keystore", - "sp-panic-handler", - "sp-runtime", - "sp-version", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "tiny-bip39", "tokio", @@ -9452,33 +9885,34 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fnv", "futures", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-executor", "sc-transaction-pool-api", "sc-utils", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-database", - "sp-externalities", - "sp-keystore", - "sp-runtime", - "sp-state-machine", - "sp-storage", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-statement-store", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", "kvdb", @@ -9487,41 +9921,41 @@ dependencies = [ "linked-hash-map", "log", "parity-db", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-database", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", "futures-timer", - "libp2p", + "libp2p-identity", "log", "mockall", "parking_lot 0.12.1", "sc-client-api", "sc-utils", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", - "sp-state-machine", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -9529,28 +9963,28 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-block-builder", "sc-client-api", "sc-consensus", "sc-consensus-slots", "sc-telemetry", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-aura", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -9558,17 +9992,16 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "fork-tree", "futures", "log", - "merlin", "num-bigint", "num-rational", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -9577,19 +10010,17 @@ dependencies = [ "sc-keystore", "sc-telemetry", "scale-info", - "schnorrkel", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-slots", - "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -9597,7 +10028,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "jsonrpsee", @@ -9605,28 +10036,29 @@ dependencies = [ "sc-consensus-epochs", "sc-rpc-api", "serde", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", + "async-channel", "async-trait", "fnv", "futures", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -9636,16 +10068,16 @@ dependencies = [ "sc-network-gossip", "sc-network-sync", "sc-utils", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core", - "sp-keystore", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", "wasm-timer", @@ -9654,39 +10086,39 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-consensus-beefy", "sc-rpc", "serde", "sp-consensus-beefy", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fork-tree", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ahash 0.8.3", "array-bytes", @@ -9697,7 +10129,7 @@ dependencies = [ "futures", "futures-timer", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", @@ -9710,15 +10142,15 @@ dependencies = [ "sc-telemetry", "sc-utils", "serde_json", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core", - "sp-keystore", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -9726,34 +10158,35 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", "futures", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus-grandpa", "sc-rpc", "serde", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-consensus-manual-seal" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "assert_matches", "async-trait", "futures", + "futures-timer", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sc-consensus-aura", @@ -9762,17 +10195,17 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-aura", "sp-consensus-babe", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-timestamp", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -9780,98 +10213,82 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", "futures-timer", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-slots", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "lru", - "parity-scale-codec 3.5.0", + "lru 0.8.1", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-executor-common", - "sc-executor-wasmi", "sc-executor-wasmtime", - "sp-api", - "sp-core", - "sp-externalities", - "sp-io", - "sp-panic-handler", - "sp-runtime-interface", - "sp-trie", - "sp-version", - "sp-wasm-interface", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "tracing", - "wasmi 0.13.2", ] [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "wasm-instrument 0.3.0", - "wasmi 0.13.2", -] - -[[package]] -name = "sc-executor-wasmi" -version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" -dependencies = [ - "log", - "sc-allocator", - "sc-executor-common", - "sp-runtime-interface", - "sp-wasm-interface", - "wasmi 0.13.2", ] [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "anyhow", "cfg-if", "libc", "log", "once_cell", - "rustix 0.36.14", + "rustix 0.36.15", "sc-allocator", "sc-executor-common", - "sp-runtime-interface", - "sp-wasm-interface", - "wasmtime", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "wasmtime 8.0.1", ] [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ansi_term", "futures", @@ -9881,28 +10298,27 @@ dependencies = [ "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "async-trait", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto", - "sp-core", - "sp-keystore", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "async-channel", @@ -9917,9 +10333,9 @@ dependencies = [ "libp2p", "linked_hash_set", "log", - "lru", + "lru 0.8.1", "mockall", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -9931,12 +10347,13 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "smallvec", - "sp-arithmetic", + "smallvec 1.11.0", + "snow", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", @@ -9946,11 +10363,12 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ + "async-channel", "cid", "futures", - "libp2p", + "libp2p-identity", "log", "prost", "prost-build", @@ -9958,7 +10376,7 @@ dependencies = [ "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "unsigned-varint", ] @@ -9966,7 +10384,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "async-trait", @@ -9974,18 +10392,18 @@ dependencies = [ "bytes", "futures", "futures-timer", - "libp2p", - "parity-scale-codec 3.5.0", + "libp2p-identity", + "parity-scale-codec 3.6.5", "prost-build", "sc-consensus", "sc-peerset", "sc-utils", "serde", - "smallvec", + "smallvec 1.11.0", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", "zeroize", @@ -9994,18 +10412,18 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ahash 0.8.3", "futures", "futures-timer", "libp2p", "log", - "lru", + "lru 0.8.1", "sc-network", "sc-network-common", "sc-peerset", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "tracing", ] @@ -10013,13 +10431,14 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", + "async-channel", "futures", - "libp2p", + "libp2p-identity", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prost", "prost-build", "sc-client-api", @@ -10027,26 +10446,27 @@ dependencies = [ "sc-network-common", "sc-peerset", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", + "async-channel", "async-trait", "fork-tree", "futures", "futures-timer", "libp2p", "log", - "lru", + "lru 0.8.1", "mockall", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "prost", "prost-build", "sc-client-api", @@ -10055,13 +10475,13 @@ dependencies = [ "sc-network-common", "sc-peerset", "sc-utils", - "smallvec", - "sp-arithmetic", + "smallvec 1.11.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", "thiserror", ] @@ -10069,27 +10489,27 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "futures", "libp2p", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "pin-project", "sc-network", "sc-network-common", "sc-peerset", "sc-utils", "sp-consensus", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "substrate-prometheus-endpoint", ] [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "bytes", @@ -10101,7 +10521,7 @@ dependencies = [ "libp2p", "num_cpus", "once_cell", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", "sc-client-api", @@ -10109,10 +10529,10 @@ dependencies = [ "sc-network-common", "sc-peerset", "sc-utils", - "sp-api", - "sp-core", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-offchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "threadpool", "tracing", ] @@ -10120,20 +10540,23 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", - "libp2p", + "libp2p-identity", "log", + "parking_lot 0.12.1", + "partial_sort", "sc-utils", "serde_json", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "wasm-timer", ] [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -10142,12 +10565,12 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-block-builder", "sc-chain-spec", @@ -10157,41 +10580,42 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", - "sp-keystore", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-offchain", "sp-rpc", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-version", + "sp-statement-store", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "tokio", ] [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-chain-spec", "sc-transaction-pool-api", "scale-info", "serde", "serde_json", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-rpc", - "sp-runtime", - "sp-version", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "http", "jsonrpsee", @@ -10206,7 +10630,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", "futures", @@ -10214,17 +10638,17 @@ dependencies = [ "hex", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-chain-spec", "sc-client-api", "sc-transaction-pool-api", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-version", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "tokio-stream", ] @@ -10232,7 +10656,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "directories", @@ -10241,7 +10665,7 @@ dependencies = [ "futures-timer", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -10272,20 +10696,20 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", "sp-consensus", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-session", - "sp-state-machine", - "sp-storage", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie", - "sp-version", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "static_init", "substrate-prometheus-endpoint", "tempfile", @@ -10298,18 +10722,18 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "clap", "fs4", @@ -10317,7 +10741,7 @@ dependencies = [ "log", "sc-client-db", "sc-utils", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "tokio", ] @@ -10325,10 +10749,10 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -10337,14 +10761,14 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "libc", @@ -10355,15 +10779,15 @@ dependencies = [ "sc-telemetry", "serde", "serde_json", - "sp-core", - "sp-io", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "chrono", "futures", @@ -10382,7 +10806,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ansi_term", "atty", @@ -10398,12 +10822,12 @@ dependencies = [ "sc-rpc-server", "sc-tracing-proc-macro", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-rpc", - "sp-runtime", - "sp-tracing", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "tracing", "tracing-log", @@ -10413,18 +10837,18 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", @@ -10432,17 +10856,17 @@ dependencies = [ "linked-hash-map", "log", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-blockchain", - "sp-core", - "sp-runtime", - "sp-tracing", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-transaction-pool", "substrate-prometheus-endpoint", "thiserror", @@ -10451,21 +10875,21 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", "log", "serde", "sp-blockchain", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-channel", "futures", @@ -10474,7 +10898,7 @@ dependencies = [ "log", "parking_lot 0.12.1", "prometheus", - "sp-arithmetic", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -10483,7 +10907,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd7aca73785181cc41f0bbe017263e682b585ca660540ba569133901d013ecf" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -10494,12 +10918,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0459d00b0dbd2e765009924a78ef36b2ff7ba116292d732f00eb0ed8e465d15" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "scale-bits", "scale-decode-derive", "scale-info", - "smallvec", + "smallvec 1.11.0", "thiserror", ] @@ -10522,12 +10946,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0401b7cdae8b8aa33725f3611a051358d5b32887ecaa0fda5953a775b2d4d76" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "scale-bits", "scale-encode-derive", "scale-info", - "smallvec", + "smallvec 1.11.0", "thiserror", ] @@ -10546,23 +10970,23 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.7.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b569c32c806ec3abdf3b5869fb8bf1e0d275a7c1c9b0b05603d9464632649edf" +checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" dependencies = [ "bitvec 1.0.1", "cfg-if", "derive_more", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info-derive", "serde", ] [[package]] name = "scale-info-derive" -version = "2.6.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53012eae69e5aa5c14671942a5dd47de59d4cdcff8532a6dd0e081faf1119482" +checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", @@ -10580,7 +11004,7 @@ dependencies = [ "blake2", "either", "frame-metadata", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-bits", "scale-decode", "scale-encode", @@ -10592,11 +11016,11 @@ dependencies = [ [[package]] name = "schannel" -version = "0.1.21" +version = "0.1.22" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" +checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" dependencies = [ - "windows-sys 0.42.0", + "windows-sys 0.48.0", ] [[package]] @@ -10630,15 +11054,15 @@ dependencies = [ [[package]] name = "scopeguard" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" -version = "1.0.5" +version = "1.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1792db035ce95be60c3f8853017b3999209281c24e2ba5bc8e59bf97a0c590c1" +checksum = "a3cf7c11c38cb994f3d40e8a8cde3bbd1f72a435e4c49e85d6553d8312306152" [[package]] name = "scrypt" @@ -10649,7 +11073,7 @@ dependencies = [ "hmac 0.12.1", "pbkdf2 0.11.0", "salsa20", - "sha2 0.10.6", + "sha2 0.10.7", ] [[package]] @@ -10700,12 +11124,12 @@ dependencies = [ [[package]] name = "sec1" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0aec48e813d6b90b15f0b8948af3c63483992dee44c03e9930b3eebdabe046e" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ "base16ct 0.2.0", - "der 0.7.6", + "der 0.7.8", "generic-array 0.14.7", "pkcs8 0.10.2", "subtle", @@ -10759,9 +11183,9 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.9.1" +version = "2.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" +checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" dependencies = [ "bitflags 1.3.2", "core-foundation", @@ -10772,9 +11196,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.9.0" +version = "2.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" +checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" dependencies = [ "core-foundation-sys", "libc", @@ -10800,9 +11224,9 @@ dependencies = [ [[package]] name = "semver" -version = "1.0.17" +version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" +checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" dependencies = [ "serde", ] @@ -10827,38 +11251,49 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.163" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" +checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" dependencies = [ "serde_derive", ] +[[package]] +name = "serde-hex" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca37e3e4d1b39afd7ff11ee4e947efae85adfddf4841787bfa47c470e96dc26d" +dependencies = [ + "array-init", + "serde", + "smallvec 0.6.14", +] + [[package]] name = "serde_bytes" -version = "0.11.9" +version = "0.11.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" +checksum = "ab33ec92f677585af6d88c65593ae2375adde54efdbf16d597f2cbc7a6d368ff" dependencies = [ "serde", ] [[package]] name = "serde_derive" -version = "1.0.163" +version = "1.0.188" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" +checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "serde_json" -version = "1.0.96" +version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" +checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" dependencies = [ "itoa", "ryu", @@ -10867,20 +11302,20 @@ dependencies = [ [[package]] name = "serde_repr" -version = "0.1.12" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcec881020c684085e55a25f7fd888954d56609ef363479dc5a1305eb0d40cab" +checksum = "8725e1dfadb3a50f7e5ce0b1a540466f6ed3fe7a0fca2ac2b8b831d31316bd00" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] name = "serde_spanned" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93107647184f6027e3b7dcb2e11034cf95ffa1e3a682c67951963ac69c1c007d" +checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" dependencies = [ "serde", ] @@ -10948,9 +11383,9 @@ dependencies = [ [[package]] name = "sha2" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" +checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" dependencies = [ "cfg-if", "cpufeatures", @@ -11003,9 +11438,9 @@ dependencies = [ [[package]] name = "shlex" -version = "1.1.0" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" +checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" [[package]] name = "signal-hook-registry" @@ -11049,17 +11484,29 @@ dependencies = [ "wide", ] +[[package]] +name = "simple_asn1" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" +dependencies = [ + "num-bigint", + "num-traits", + "thiserror", + "time 0.3.17", +] + [[package]] name = "siphasher" -version = "0.3.10" +version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "slab" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ "autocfg", ] @@ -11070,11 +11517,32 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" +[[package]] +name = "slices" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2086e458a369cdca838e9f6ed04b4cc2e3ce636d99abb80c9e2eada107749cf" +dependencies = [ + "faster-hex", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "smallvec" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" +dependencies = [ + "maybe-uninit", +] + [[package]] name = "smallvec" -version = "1.10.0" +version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" +checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" [[package]] name = "snap" @@ -11084,18 +11552,18 @@ checksum = "5e9f0ab6ef7eb7353d9119c170a436d1bf248eea575ac42d19d12f4e34130831" [[package]] name = "snow" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ccba027ba85743e09d15c03296797cad56395089b832b48b5a5217880f57733" +checksum = "0c9d1425eb528a21de2755c75af4c9b5d57f50a0d4c3b7f1828a4cd03f8ba155" dependencies = [ "aes-gcm 0.9.4", "blake2", "chacha20poly1305", - "curve25519-dalek 4.0.0-rc.1", + "curve25519-dalek 4.1.0", "rand_core 0.6.4", "ring", "rustc_version 0.4.0", - "sha2 0.10.6", + "sha2 0.10.7", "subtle", ] @@ -11109,6 +11577,16 @@ dependencies = [ "winapi", ] +[[package]] +name = "socket2" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877" +dependencies = [ + "libc", + "windows-sys 0.48.0", +] + [[package]] name = "soketto" version = "0.7.1" @@ -11128,9 +11606,9 @@ dependencies = [ [[package]] name = "solang-parser" -version = "0.2.4" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c5ead679f39243782be98c2689e592fc0fc9489ca2e47c9e027bd30f948df31" +checksum = "9c792fe9fae2a2f716846f214ca10d5a1e21133e0bf36cef34bcc4a852467b21" dependencies = [ "itertools", "lalrpop", @@ -11147,14 +11625,34 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "hash-db 0.16.0", "log", - "parity-scale-codec 3.5.0", - "sp-api-proc-macro", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-std 5.0.0", - "sp-trie", - "sp-version", + "parity-scale-codec 3.6.5", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", +] + +[[package]] +name = "sp-api" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "hash-db 0.16.0", + "log", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-metadata-ir", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] @@ -11172,17 +11670,44 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "sp-api-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "Inflector", + "blake2", + "expander", + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "sp-application-crypto" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-io", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-application-crypto" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11192,184 +11717,226 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "integer-sqrt", "num-traits", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-std 5.0.0", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "static_assertions", +] + +[[package]] +name = "sp-arithmetic" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "integer-sqrt", + "num-traits", + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "static_assertions", ] [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-api", - "sp-application-crypto", - "sp-runtime", - "sp-std 5.0.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", - "sp-api", - "sp-inherents", - "sp-runtime", - "sp-std 5.0.0", + "parity-scale-codec 3.6.5", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "log", - "lru", - "parity-scale-codec 3.5.0", + "lru 0.8.1", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus", "sp-database", - "sp-runtime", - "sp-state-machine", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "futures", "log", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-state-machine", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus", "sp-consensus-slots", - "sp-inherents", - "sp-runtime", - "sp-std 5.0.0", - "sp-timestamp", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "merlin", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-api", - "sp-application-crypto", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-consensus", "sp-consensus-slots", - "sp-consensus-vrf", - "sp-core", - "sp-inherents", - "sp-keystore", - "sp-runtime", - "sp-std 5.0.0", - "sp-timestamp", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lazy_static", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-io", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-mmr-primitives", - "sp-runtime", - "sp-std 5.0.0", - "strum", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "strum 0.24.1", ] [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-api", - "sp-application-crypto", - "sp-core", - "sp-keystore", - "sp-runtime", - "sp-std 5.0.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-std 5.0.0", - "sp-timestamp", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] -name = "sp-consensus-vrf" -version = "0.10.0-dev" +name = "sp-core" +version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", + "array-bytes", + "base58", + "bitflags 1.3.2", + "blake2", + "bounded-collections", + "dyn-clonable", + "ed25519-zebra", + "futures", + "hash-db 0.16.0", + "hash256-std-hasher", + "impl-serde 0.4.0", + "lazy_static", + "libsecp256k1", + "log", + "merlin", + "parity-scale-codec 3.6.5", + "parking_lot 0.12.1", + "primitive-types 0.12.1", + "rand 0.8.5", + "regex", "scale-info", "schnorrkel", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "secp256k1 0.24.3", + "secrecy", + "serde", + "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "ss58-registry", + "substrate-bip39", + "thiserror", + "tiny-bip39", + "zeroize", ] [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "base58", "bitflags 1.3.2", "blake2", "bounded-collections", + "bs58 0.4.0", "dyn-clonable", "ed25519-zebra", "futures", @@ -11380,8 +11947,9 @@ dependencies = [ "libsecp256k1", "log", "merlin", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", + "paste", "primitive-types 0.12.1", "rand 0.8.5", "regex", @@ -11390,12 +11958,12 @@ dependencies = [ "secp256k1 0.24.3", "secrecy", "serde", - "sp-core-hashing 5.0.0", - "sp-debug-derive", - "sp-externalities", - "sp-runtime-interface", - "sp-std 5.0.0", - "sp-storage", + "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "ss58-registry", "substrate-bip39", "thiserror", @@ -11411,9 +11979,23 @@ dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", - "sp-std 5.0.0", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "twox-hash", +] + +[[package]] +name = "sp-core-hashing" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "blake2b_simd", + "byteorder", + "digest 0.10.7", + "sha2 0.10.7", + "sha3 0.10.8", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "twox-hash", ] @@ -11426,7 +12008,7 @@ dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", - "sha2 0.10.6", + "sha2 0.10.7", "sha3 0.10.8", "sp-std 8.0.0", "twox-hash", @@ -11439,14 +12021,25 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "proc-macro2", "quote", - "sp-core-hashing 5.0.0", + "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "syn 1.0.109", ] +[[package]] +name = "sp-core-hashing-proc-macro" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "proc-macro2", + "quote", + "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "syn 2.0.31", +] + [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -11462,15 +12055,36 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "sp-debug-derive" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "sp-externalities" version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ "environmental", - "parity-scale-codec 3.5.0", - "sp-std 5.0.0", - "sp-storage", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-externalities" +version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "environmental", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11480,11 +12094,26 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "async-trait", "impl-trait-for-tuples", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", +] + +[[package]] +name = "sp-inherents" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "async-trait", + "impl-trait-for-tuples", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] @@ -11494,21 +12123,47 @@ version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ "bytes", - "ed25519", - "ed25519-dalek", + "ed25519 1.5.3", + "ed25519-dalek 1.0.1", "futures", "libsecp256k1", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "secp256k1 0.24.3", - "sp-core", - "sp-externalities", - "sp-keystore", - "sp-runtime-interface", - "sp-state-machine", - "sp-std 5.0.0", - "sp-tracing", - "sp-trie", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "tracing", + "tracing-core", +] + +[[package]] +name = "sp-io" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "bytes", + "ed25519 1.5.3", + "ed25519-dalek 1.0.1", + "futures", + "libsecp256k1", + "log", + "parity-scale-codec 3.6.5", + "rustversion", + "secp256k1 0.24.3", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "tracing", "tracing-core", ] @@ -11516,12 +12171,12 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lazy_static", - "sp-core", - "sp-runtime", - "strum", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "strum 0.24.1", ] [[package]] @@ -11532,64 +12187,88 @@ dependencies = [ "async-trait", "futures", "merlin", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "schnorrkel", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", +] + +[[package]] +name = "sp-keystore" +version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "futures", + "parity-scale-codec 3.6.5", + "parking_lot 0.12.1", "serde", - "sp-core", - "sp-externalities", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "thiserror", - "zstd", + "zstd 0.12.4", +] + +[[package]] +name = "sp-metadata-ir" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "frame-metadata", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ckb-merkle-mountain-range", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-api", - "sp-core", - "sp-debug-derive", - "sp-runtime", - "sp-std 5.0.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-arithmetic", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "sp-api", - "sp-core", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11602,14 +12281,24 @@ dependencies = [ "regex", ] +[[package]] +name = "sp-panic-handler" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "backtrace", + "lazy_static", + "regex", +] + [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "rustc-hash", "serde", - "sp-core", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11621,17 +12310,39 @@ dependencies = [ "hash256-std-hasher", "impl-trait-for-tuples", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", + "paste", + "rand 0.8.5", + "scale-info", + "serde", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-runtime" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "either", + "hash256-std-hasher", + "impl-trait-for-tuples", + "log", + "parity-scale-codec 3.6.5", "paste", "rand 0.8.5", "scale-info", "serde", - "sp-application-crypto", - "sp-arithmetic", - "sp-core", - "sp-io", - "sp-std 5.0.0", - "sp-weights", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11641,14 +12352,32 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "bytes", "impl-trait-for-tuples", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", - "sp-externalities", - "sp-runtime-interface-proc-macro", - "sp-std 5.0.0", - "sp-storage", - "sp-tracing", - "sp-wasm-interface", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "static_assertions", +] + +[[package]] +name = "sp-runtime-interface" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "bytes", + "impl-trait-for-tuples", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "static_assertions", ] @@ -11664,18 +12393,30 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "sp-runtime-interface-proc-macro" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "Inflector", + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-api", - "sp-core", - "sp-runtime", - "sp-staking", - "sp-std 5.0.0", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11683,11 +12424,24 @@ name = "sp-staking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-staking" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11697,24 +12451,67 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98 dependencies = [ "hash-db 0.16.0", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", - "smallvec", - "sp-core", - "sp-externalities", - "sp-panic-handler", - "sp-std 5.0.0", - "sp-trie", + "smallvec 1.11.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", "thiserror", "tracing", ] +[[package]] +name = "sp-state-machine" +version = "0.13.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "hash-db 0.16.0", + "log", + "parity-scale-codec 3.6.5", + "parking_lot 0.12.1", + "rand 0.8.5", + "smallvec 1.11.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "thiserror", + "tracing", +] + +[[package]] +name = "sp-statement-store" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "log", + "parity-scale-codec 3.6.5", + "scale-info", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "thiserror", +] + [[package]] name = "sp-std" version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +[[package]] +name = "sp-std" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" + [[package]] name = "sp-std" version = "8.0.0" @@ -11727,11 +12524,24 @@ version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ "impl-serde 0.4.0", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "ref-cast", "serde", - "sp-debug-derive", - "sp-std 5.0.0", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-storage" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "impl-serde 0.4.0", + "parity-scale-codec 3.6.5", + "ref-cast", + "serde", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11742,10 +12552,25 @@ dependencies = [ "async-trait", "futures-timer", "log", - "parity-scale-codec 3.5.0", - "sp-inherents", - "sp-runtime", - "sp-std 5.0.0", + "parity-scale-codec 3.6.5", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", +] + +[[package]] +name = "sp-timestamp" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "async-trait", + "futures-timer", + "log", + "parity-scale-codec 3.6.5", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] @@ -11754,8 +12579,20 @@ name = "sp-tracing" version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", - "sp-std 5.0.0", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "tracing", + "tracing-core", + "tracing-subscriber", +] + +[[package]] +name = "sp-tracing" +version = "6.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "tracing", "tracing-core", "tracing-subscriber", @@ -11764,26 +12601,26 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "sp-api", - "sp-runtime", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", - "sp-core", - "sp-inherents", - "sp-runtime", - "sp-std 5.0.0", - "sp-trie", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11797,12 +12634,35 @@ dependencies = [ "lazy_static", "memory-db", "nohash-hasher", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "scale-info", "schnellru", - "sp-core", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", + "tracing", + "trie-db", + "trie-root", +] + +[[package]] +name = "sp-trie" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "ahash 0.8.3", + "hash-db 0.16.0", + "hashbrown 0.13.2", + "lazy_static", + "memory-db", + "nohash-hasher", + "parity-scale-codec 3.6.5", + "parking_lot 0.12.1", + "scale-info", + "schnellru", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", "tracing", "trie-db", @@ -11815,14 +12675,31 @@ version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ "impl-serde 0.4.0", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "parity-wasm", "scale-info", "serde", - "sp-core-hashing-proc-macro", - "sp-runtime", - "sp-std 5.0.0", - "sp-version-proc-macro", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "thiserror", +] + +[[package]] +name = "sp-version" +version = "5.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "impl-serde 0.4.0", + "parity-scale-codec 3.6.5", + "parity-wasm", + "scale-info", + "serde", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "thiserror", ] @@ -11831,12 +12708,23 @@ name = "sp-version-proc-macro" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "sp-version-proc-macro" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "parity-scale-codec 3.6.5", + "proc-macro2", + "quote", + "syn 2.0.31", +] + [[package]] name = "sp-wasm-interface" version = "7.0.0" @@ -11845,10 +12733,24 @@ dependencies = [ "anyhow", "impl-trait-for-tuples", "log", - "parity-scale-codec 3.5.0", - "sp-std 5.0.0", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "wasmi 0.13.2", + "wasmtime 6.0.2", +] + +[[package]] +name = "sp-wasm-interface" +version = "7.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "anyhow", + "impl-trait-for-tuples", + "log", + "parity-scale-codec 3.6.5", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "wasmi 0.13.2", - "wasmtime", + "wasmtime 8.0.1", ] [[package]] @@ -11856,14 +12758,29 @@ name = "sp-weights" version = "4.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" dependencies = [ - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "smallvec", - "sp-arithmetic", - "sp-core", - "sp-debug-derive", - "sp-std 5.0.0", + "smallvec 1.11.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", +] + +[[package]] +name = "sp-weights" +version = "4.0.0" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" +dependencies = [ + "parity-scale-codec 3.6.5", + "scale-info", + "serde", + "smallvec 1.11.0", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -11895,14 +12812,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" dependencies = [ "base64ct", - "der 0.7.6", + "der 0.7.8", ] [[package]] name = "ss58-registry" -version = "1.40.0" +version = "1.43.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb47a8ad42e5fc72d5b1eb104a5546937eaf39843499948bb666d6e93c62423b" +checksum = "5e6915280e2d0db8911e5032a5c275571af6bdded2916abd691a659be25d3439" dependencies = [ "Inflector", "num-format", @@ -11974,25 +12891,25 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" [[package]] name = "structmeta" -version = "0.1.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "104842d6278bf64aa9d2f182ba4bde31e8aec7a131d29b7f444bb9b344a09e2a" +checksum = "78ad9e09554f0456d67a69c1584c9798ba733a5b50349a6c0d0948710523922d" dependencies = [ "proc-macro2", "quote", "structmeta-derive", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "structmeta-derive" -version = "0.1.6" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24420be405b590e2d746d83b01f09af673270cf80e9b003a5fa7b651c58c7d93" +checksum = "a60bcaff7397072dca0017d1db428e30d5002e00b6847703e2e42005c95fbe00" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] @@ -12001,7 +12918,16 @@ version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f" dependencies = [ - "strum_macros", + "strum_macros 0.24.3", +] + +[[package]] +name = "strum" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" +dependencies = [ + "strum_macros 0.25.2", ] [[package]] @@ -12017,6 +12943,19 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "strum_macros" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.31", +] + [[package]] name = "stun" version = "0.4.4" @@ -12039,16 +12978,16 @@ dependencies = [ [[package]] name = "substrate-account-filter" version = "4.0.0" -source = "git+https://github.com/ggxchain/ggx-frames.git?branch=polkadot-v0.9.40#29cb0829e498e467d1525bb6b7c738d30012d280" +source = "git+https://github.com/ggxchain/ggx-frames.git?branch=polkadot-v0.9.43#4ec9201642e0772b54be19b3ca65204e307ff4e7" dependencies = [ - "frame-support", - "frame-system", - "parity-scale-codec 3.5.0", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-std 5.0.0", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -12080,7 +13019,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "platforms 2.0.0", ] @@ -12088,26 +13027,26 @@ dependencies = [ [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-system-rpc-runtime-api", "futures", "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-rpc-api", "sc-transaction-pool-api", - "sp-api", + "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "sp-block-builder", "sp-blockchain", - "sp-core", - "sp-runtime", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hyper", "log", @@ -12119,39 +13058,39 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", "jsonrpsee", "log", "sc-rpc-api", "serde", - "sp-runtime", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-rpc-api", "scale-info", "serde", - "sp-core", - "sp-runtime", - "sp-state-machine", - "sp-trie", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "trie-db", ] [[package]] name = "substrate-test-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "futures", "substrate-test-utils-derive", @@ -12161,27 +13100,27 @@ dependencies = [ [[package]] name = "substrate-test-utils-derive" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "proc-macro-crate 1.1.3", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ansi_term", "build-helper", - "cargo_metadata", + "cargo_metadata 0.15.4", "filetime", "sp-maybe-compressed-blob", - "strum", + "strum 0.24.1", "tempfile", - "toml 0.5.11", + "toml 0.7.6", "walkdir", "wasm-opt", ] @@ -12221,11 +13160,11 @@ dependencies = [ "either", "frame-metadata", "futures", - "getrandom 0.2.9", + "getrandom 0.2.10", "hex", "impl-serde 0.4.0", "jsonrpsee", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "primitive-types 0.12.1", "scale-bits", "scale-decode", @@ -12250,12 +13189,12 @@ dependencies = [ "heck", "hex", "jsonrpsee", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "proc-macro2", "quote", "scale-info", "subxt-metadata", - "syn 2.0.17", + "syn 2.0.31", "thiserror", "tokio", ] @@ -12268,7 +13207,7 @@ dependencies = [ "darling 0.20.3", "proc-macro-error", "subxt-codegen", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -12277,7 +13216,7 @@ version = "0.29.0" source = "git+https://github.com/paritytech/subxt?tag=v0.29.0#e40a8629e279e80a7fbb56ff553a430a36612956" dependencies = [ "frame-metadata", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "sp-core-hashing 9.0.0", "thiserror", @@ -12285,19 +13224,19 @@ dependencies = [ [[package]] name = "svm-rs" -version = "0.2.23" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a04fc4f5cd35c700153b233f5575ccb3237e0f941fa5049d9e98254d10bf2fe" +checksum = "597e3a746727984cb7ea2487b6a40726cad0dbe86628e7d429aa6b8c4c153db4" dependencies = [ + "dirs", "fs2", "hex", - "home", "once_cell", "reqwest", - "semver 1.0.17", + "semver 1.0.18", "serde", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", "url", "zip", @@ -12316,9 +13255,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.17" +version = "2.0.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45b6ddbb36c5b969c182aec3c4a0bce7df3fbad4b77114706a49aacc80567388" +checksum = "718fa2415bcb8d8bd775917a1bf12a7931b6dfa890753378538118181e0cb398" dependencies = [ "proc-macro2", "quote", @@ -12366,21 +13305,21 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.12.7" +version = "0.12.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" +checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" [[package]] name = "tempfile" -version = "3.5.0" +version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" +checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ "cfg-if", - "fastrand", + "fastrand 2.0.0", "redox_syscall 0.3.5", - "rustix 0.37.19", - "windows-sys 0.45.0", + "rustix 0.38.11", + "windows-sys 0.48.0", ] [[package]] @@ -12390,8 +13329,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c518c082146825f10d6f9a32159ae46edcfd7dae8ac630c8067594bb2a784d72" dependencies = [ "bytes", - "ed25519", - "ed25519-dalek", + "ed25519 1.5.3", + "ed25519-dalek 1.0.1", "flex-error", "futures", "num-traits", @@ -12470,34 +13409,34 @@ checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" [[package]] name = "test-strategy" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61348cf95c0dfa12f0b6155f5b564d2806f518620a28263280ae357b41c96b4a" +checksum = "b8361c808554228ad09bfed70f5c823caf8a3450b6881cc3a38eb57e8c08c1d9" dependencies = [ "proc-macro2", "quote", "structmeta", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "thiserror" -version = "1.0.40" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" +checksum = "9d6d7a740b8a666a7e828dd00da9c0dc290dff53154ea77ac109281de90589b7" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.40" +version = "1.0.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" +checksum = "49922ecae66cc8a249b77e68d1d0623c1b2c514f0060c27cdc68bd62a1219d35" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -12527,9 +13466,9 @@ dependencies = [ [[package]] name = "tikv-jemalloc-sys" -version = "0.5.3+5.3.0-patched" +version = "0.5.4+5.3.0-patched" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a678df20055b43e57ef8cddde41cdfda9a3c1a060b67f4c5836dfb1d78543ba8" +checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1" dependencies = [ "cc", "libc", @@ -12585,7 +13524,7 @@ dependencies = [ "pbkdf2 0.11.0", "rand 0.8.5", "rustc-hash", - "sha2 0.10.6", + "sha2 0.10.7", "thiserror", "unicode-normalization", "wasm-bindgen", @@ -12628,19 +13567,19 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.28.1" +version = "1.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" +checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ - "autocfg", + "backtrace", "bytes", "libc", "mio", "num_cpus", "parking_lot 0.12.1", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "signal-hook-registry", - "socket2", + "socket2 0.5.3", "tokio-macros", "windows-sys 0.48.0", ] @@ -12653,7 +13592,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -12672,18 +13611,18 @@ version = "0.23.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ - "rustls 0.20.8", + "rustls 0.20.9", "tokio", - "webpki 0.22.0", + "webpki 0.22.1", ] [[package]] name = "tokio-rustls" -version = "0.24.0" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls 0.21.1", + "rustls 0.21.7", "tokio", ] @@ -12694,25 +13633,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "tokio", "tokio-util 0.7.8", ] [[package]] name = "tokio-tungstenite" -version = "0.18.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "54319c93411147bced34cb5609a80e0a8e44c5999c93903a81cd866630ec0bfd" +checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2" dependencies = [ "futures-util", "log", - "rustls 0.20.8", + "rustls 0.21.7", "tokio", - "tokio-rustls 0.23.4", + "tokio-rustls 0.24.1", "tungstenite", - "webpki 0.22.0", - "webpki-roots", + "webpki-roots 0.23.1", ] [[package]] @@ -12726,7 +13664,7 @@ dependencies = [ "futures-io", "futures-sink", "log", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "tokio", ] @@ -12740,7 +13678,7 @@ dependencies = [ "futures-core", "futures-io", "futures-sink", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "tokio", "tracing", ] @@ -12756,9 +13694,9 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.4" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6135d499e69981f9ff0ef2167955a5333c35e36f6937d382974566b3d5b94ec" +checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542" dependencies = [ "serde", "serde_spanned", @@ -12768,20 +13706,20 @@ dependencies = [ [[package]] name = "toml_datetime" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" dependencies = [ "serde", ] [[package]] name = "toml_edit" -version = "0.19.10" +version = "0.19.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" +checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a" dependencies = [ - "indexmap", + "indexmap 2.0.0", "serde", "serde_spanned", "toml_datetime", @@ -12801,18 +13739,18 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.3.5" +version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" +checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.0", "bytes", "futures-core", "futures-util", "http", "http-body", "http-range-header", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "tower-layer", "tower-service", ] @@ -12837,20 +13775,20 @@ checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ "cfg-if", "log", - "pin-project-lite 0.2.9", + "pin-project-lite 0.2.13", "tracing-attributes", "tracing-core", ] [[package]] name = "tracing-attributes" -version = "0.1.24" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" +checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -12909,7 +13847,7 @@ dependencies = [ "serde", "serde_json", "sharded-slab", - "smallvec", + "smallvec 1.11.0", "thread_local", "tracing", "tracing-core", @@ -12927,7 +13865,7 @@ dependencies = [ "hashbrown 0.13.2", "log", "rustc-hex", - "smallvec", + "smallvec 1.11.0", ] [[package]] @@ -12966,8 +13904,8 @@ dependencies = [ "ipnet", "lazy_static", "rand 0.8.5", - "smallvec", - "socket2", + "smallvec 1.11.0", + "socket2 0.4.9", "thiserror", "tinyvec", "tokio", @@ -12988,7 +13926,7 @@ dependencies = [ "lru-cache", "parking_lot 0.12.1", "resolv-conf", - "smallvec", + "smallvec 1.11.0", "thiserror", "tokio", "tracing", @@ -13009,23 +13947,22 @@ checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" [[package]] name = "tungstenite" -version = "0.18.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30ee6ab729cd4cf0fd55218530c4522ed30b7b6081752839b68fcec8d0960788" +checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" dependencies = [ - "base64 0.13.1", "byteorder", "bytes", + "data-encoding", "http", "httparse", "log", "rand 0.8.5", - "rustls 0.20.8", + "rustls 0.21.7", "sha1", "thiserror", "url", "utf-8", - "webpki 0.22.0", ] [[package]] @@ -13067,9 +14004,9 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" [[package]] name = "ucd-trie" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81" +checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" [[package]] name = "uint" @@ -13097,9 +14034,9 @@ checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" -version = "1.0.9" +version = "1.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" +checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c" [[package]] name = "unicode-normalization" @@ -13144,9 +14081,9 @@ dependencies = [ [[package]] name = "unsigned-varint" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d86a8dc7f45e4c1b0d30e43038c38f274e77af056aa5f74b93c2cf9eb3c1c836" +checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" dependencies = [ "asynchronous-codec", "bytes", @@ -13162,12 +14099,12 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" [[package]] name = "url" -version = "2.3.1" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" +checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", - "idna 0.3.0", + "idna 0.4.0", "percent-encoding", ] @@ -13189,17 +14126,17 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" dependencies = [ - "getrandom 0.2.9", + "getrandom 0.2.10", "serde", ] [[package]] name = "uuid" -version = "1.3.3" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ - "getrandom 0.2.9", + "getrandom 0.2.10", ] [[package]] @@ -13252,9 +14189,9 @@ checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" [[package]] name = "walkdir" -version = "2.3.3" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" +checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" dependencies = [ "same-file", "winapi-util", @@ -13262,11 +14199,10 @@ dependencies = [ [[package]] name = "want" -version = "0.3.0" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" dependencies = [ - "log", "try-lock", ] @@ -13290,9 +14226,9 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "wasm-bindgen" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" +checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ "cfg-if", "wasm-bindgen-macro", @@ -13300,24 +14236,24 @@ dependencies = [ [[package]] name = "wasm-bindgen-backend" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" +checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", "log", "once_cell", "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-futures" -version = "0.4.36" +version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" +checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ "cfg-if", "js-sys", @@ -13327,9 +14263,9 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" +checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d" dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -13337,22 +14273,22 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" +checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", "wasm-bindgen-backend", "wasm-bindgen-shared", ] [[package]] name = "wasm-bindgen-shared" -version = "0.2.86" +version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" +checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" [[package]] name = "wasm-instrument" @@ -13374,14 +14310,14 @@ dependencies = [ [[package]] name = "wasm-opt" -version = "0.111.0" +version = "0.112.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84a303793cbc01fb96551badfc7367db6007396bba6bac97936b3c8b6f7fdb41" +checksum = "87fef6d0d508f08334e0ab0e6877feb4c0ecb3956bcf2cb950699b22fedf3e9c" dependencies = [ "anyhow", "libc", - "strum", - "strum_macros", + "strum 0.24.1", + "strum_macros 0.24.3", "tempfile", "thiserror", "wasm-opt-cxx-sys", @@ -13390,9 +14326,9 @@ dependencies = [ [[package]] name = "wasm-opt-cxx-sys" -version = "0.111.0" +version = "0.112.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c9deb56f8a9f2ec177b3bd642a8205621835944ed5da55f2388ef216aca5a4" +checksum = "bc816bbc1596c8f2e8127e137a760c798023ef3d378f2ae51f0f1840e2dfa445" dependencies = [ "anyhow", "cxx", @@ -13402,15 +14338,14 @@ dependencies = [ [[package]] name = "wasm-opt-sys" -version = "0.111.0" +version = "0.112.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4432e28b542738a9776cedf92e8a99d8991c7b4667ee2c7ccddfb479dd2856a7" +checksum = "40199e4f68ef1071b3c6d0bd8026a12b481865d4b9e49c156932ea9a6234dd14" dependencies = [ "anyhow", "cc", "cxx", "cxx-build", - "regex", ] [[package]] @@ -13441,13 +14376,13 @@ dependencies = [ [[package]] name = "wasmi" -version = "0.20.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01bf50edb2ea9d922aa75a7bf3c15e26a6c9e2d18c56e862b49737a582901729" +checksum = "8e61a7006b0fdf24f6bbe8dcfdad5ca1b350de80061fb2827f31c82fbbb9565a" dependencies = [ "spin 0.9.8", "wasmi_arena", - "wasmi_core 0.5.0", + "wasmi_core 0.12.0", "wasmparser-nostd", ] @@ -13462,9 +14397,9 @@ dependencies = [ [[package]] name = "wasmi_arena" -version = "0.1.0" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1ea379cbb0b41f3a9f0bf7b47036d036aae7f43383d8cc487d4deccf40dee0a" +checksum = "401c1f35e413fac1846d4843745589d9ec678977ab35a384db8ae7830525d468" [[package]] name = "wasmi_core" @@ -13473,22 +14408,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57d20cb3c59b788653d99541c646c561c9dd26506f25c0cebfe810659c54c6d7" dependencies = [ "downcast-rs", - "libm 0.2.7", + "libm", "memory_units", "num-rational", "num-traits", - "region", ] [[package]] name = "wasmi_core" -version = "0.5.0" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5bf998ab792be85e20e771fe14182b4295571ad1d4f89d3da521c1bef5f597a" +checksum = "624e6333e861ef49095d2d678b76ebf30b06bf37effca845be7e5b87c90071b7" dependencies = [ "downcast-rs", - "libm 0.2.7", + "libm", "num-traits", + "paste", ] [[package]] @@ -13497,15 +14432,25 @@ version = "0.100.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64b20236ab624147dfbb62cf12a19aaf66af0e41b8398838b66e997d07d269d4" dependencies = [ - "indexmap", + "indexmap 1.9.3", + "url", +] + +[[package]] +name = "wasmparser" +version = "0.102.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" +dependencies = [ + "indexmap 1.9.3", "url", ] [[package]] name = "wasmparser-nostd" -version = "0.91.0" +version = "0.100.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c37f310b5a62bfd5ae7c0f1d8e6f98af16a5d6d84ba764e9c36439ec14e318b" +checksum = "9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724" dependencies = [ "indexmap-nostd", ] @@ -13519,23 +14464,48 @@ dependencies = [ "anyhow", "bincode", "cfg-if", - "indexmap", + "indexmap 1.9.3", "libc", "log", "object 0.29.0", "once_cell", "paste", "psm", + "serde", + "target-lexicon", + "wasmparser 0.100.0", + "wasmtime-environ 6.0.2", + "wasmtime-jit 6.0.2", + "wasmtime-runtime 6.0.2", + "windows-sys 0.42.0", +] + +[[package]] +name = "wasmtime" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" +dependencies = [ + "anyhow", + "bincode", + "cfg-if", + "indexmap 1.9.3", + "libc", + "log", + "object 0.30.4", + "once_cell", + "paste", + "psm", "rayon", "serde", "target-lexicon", - "wasmparser", + "wasmparser 0.102.0", "wasmtime-cache", "wasmtime-cranelift", - "wasmtime-environ", - "wasmtime-jit", - "wasmtime-runtime", - "windows-sys 0.42.0", + "wasmtime-environ 8.0.1", + "wasmtime-jit 8.0.1", + "wasmtime-runtime 8.0.1", + "windows-sys 0.45.0", ] [[package]] @@ -13547,45 +14517,70 @@ dependencies = [ "cfg-if", ] +[[package]] +name = "wasmtime-asm-macros" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" +dependencies = [ + "cfg-if", +] + [[package]] name = "wasmtime-cache" -version = "6.0.2" +version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ceb3adf61d654be0be67fffdce42447b0880481348785be5fe40b5dd7663a4c" +checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" dependencies = [ "anyhow", - "base64 0.13.1", + "base64 0.21.3", "bincode", "directories-next", "file-per-thread-logger", "log", - "rustix 0.36.14", + "rustix 0.36.15", "serde", - "sha2 0.10.6", + "sha2 0.10.7", "toml 0.5.11", - "windows-sys 0.42.0", - "zstd", + "windows-sys 0.45.0", + "zstd 0.11.2+zstd.1.5.2", ] [[package]] name = "wasmtime-cranelift" -version = "6.0.2" +version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c366bb8647e01fd08cb5589976284b00abfded5529b33d7e7f3f086c68304a4" +checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" dependencies = [ "anyhow", "cranelift-codegen", - "cranelift-entity", + "cranelift-entity 0.95.1", "cranelift-frontend", "cranelift-native", "cranelift-wasm", - "gimli 0.26.2", + "gimli 0.27.3", "log", - "object 0.29.0", + "object 0.30.4", "target-lexicon", "thiserror", - "wasmparser", - "wasmtime-environ", + "wasmparser 0.102.0", + "wasmtime-cranelift-shared", + "wasmtime-environ 8.0.1", +] + +[[package]] +name = "wasmtime-cranelift-shared" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd041e382ef5aea1b9fc78442394f1a4f6d676ce457e7076ca4cb3f397882f8b" +dependencies = [ + "anyhow", + "cranelift-codegen", + "cranelift-native", + "gimli 0.27.3", + "object 0.30.4", + "target-lexicon", + "wasmtime-environ 8.0.1", ] [[package]] @@ -13595,16 +14590,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "47b8b50962eae38ee319f7b24900b7cf371f03eebdc17400c1dc8575fc10c9a7" dependencies = [ "anyhow", - "cranelift-entity", + "cranelift-entity 0.93.2", "gimli 0.26.2", - "indexmap", + "indexmap 1.9.3", "log", "object 0.29.0", "serde", "target-lexicon", "thiserror", - "wasmparser", - "wasmtime-types", + "wasmparser 0.100.0", + "wasmtime-types 6.0.2", +] + +[[package]] +name = "wasmtime-environ" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" +dependencies = [ + "anyhow", + "cranelift-entity 0.95.1", + "gimli 0.27.3", + "indexmap 1.9.3", + "log", + "object 0.30.4", + "serde", + "target-lexicon", + "thiserror", + "wasmparser 0.102.0", + "wasmtime-types 8.0.1", ] [[package]] @@ -13624,22 +14638,54 @@ dependencies = [ "rustc-demangle", "serde", "target-lexicon", - "wasmtime-environ", - "wasmtime-jit-debug", - "wasmtime-jit-icache-coherence", - "wasmtime-runtime", + "wasmtime-environ 6.0.2", + "wasmtime-jit-icache-coherence 6.0.2", + "wasmtime-runtime 6.0.2", "windows-sys 0.42.0", ] +[[package]] +name = "wasmtime-jit" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de48df552cfca1c9b750002d3e07b45772dd033b0b206d5c0968496abf31244" +dependencies = [ + "addr2line 0.19.0", + "anyhow", + "bincode", + "cfg-if", + "cpp_demangle", + "gimli 0.27.3", + "log", + "object 0.30.4", + "rustc-demangle", + "serde", + "target-lexicon", + "wasmtime-environ 8.0.1", + "wasmtime-jit-debug 8.0.1", + "wasmtime-jit-icache-coherence 8.0.1", + "wasmtime-runtime 8.0.1", + "windows-sys 0.45.0", +] + [[package]] name = "wasmtime-jit-debug" version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2" dependencies = [ - "object 0.29.0", "once_cell", - "rustix 0.36.14", +] + +[[package]] +name = "wasmtime-jit-debug" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e0554b84c15a27d76281d06838aed94e13a77d7bf604bbbaf548aa20eb93846" +dependencies = [ + "object 0.30.4", + "once_cell", + "rustix 0.36.15", ] [[package]] @@ -13653,6 +14699,17 @@ dependencies = [ "windows-sys 0.42.0", ] +[[package]] +name = "wasmtime-jit-icache-coherence" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" +dependencies = [ + "cfg-if", + "libc", + "windows-sys 0.45.0", +] + [[package]] name = "wasmtime-runtime" version = "6.0.2" @@ -13662,7 +14719,7 @@ dependencies = [ "anyhow", "cc", "cfg-if", - "indexmap", + "indexmap 1.9.3", "libc", "log", "mach", @@ -13670,30 +14727,66 @@ dependencies = [ "memoffset 0.6.5", "paste", "rand 0.8.5", - "rustix 0.36.14", - "wasmtime-asm-macros", - "wasmtime-environ", - "wasmtime-jit-debug", + "rustix 0.36.15", + "wasmtime-asm-macros 6.0.2", + "wasmtime-environ 6.0.2", + "wasmtime-jit-debug 6.0.2", "windows-sys 0.42.0", ] +[[package]] +name = "wasmtime-runtime" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" +dependencies = [ + "anyhow", + "cc", + "cfg-if", + "indexmap 1.9.3", + "libc", + "log", + "mach", + "memfd", + "memoffset 0.8.0", + "paste", + "rand 0.8.5", + "rustix 0.36.15", + "wasmtime-asm-macros 8.0.1", + "wasmtime-environ 8.0.1", + "wasmtime-jit-debug 8.0.1", + "windows-sys 0.45.0", +] + [[package]] name = "wasmtime-types" version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83e5572c5727c1ee7e8f28717aaa8400e4d22dcbd714ea5457d85b5005206568" dependencies = [ - "cranelift-entity", + "cranelift-entity 0.93.2", + "serde", + "thiserror", + "wasmparser 0.100.0", +] + +[[package]] +name = "wasmtime-types" +version = "8.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" +dependencies = [ + "cranelift-entity 0.95.1", "serde", "thiserror", - "wasmparser", + "wasmparser 0.102.0", ] [[package]] name = "web-sys" -version = "0.3.63" +version = "0.3.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" +checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b" dependencies = [ "js-sys", "wasm-bindgen", @@ -13705,7 +14798,7 @@ version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44f258e254752d210b84fe117b31f1e3cc9cbf04c0d747eb7f8cf7cf5e370f6d" dependencies = [ - "arrayvec 0.7.2", + "arrayvec 0.7.4", "base64 0.13.1", "bytes", "derive_more", @@ -13759,9 +14852,9 @@ dependencies = [ [[package]] name = "webpki" -version = "0.22.0" +version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd" +checksum = "f0e74f82d49d545ad128049b7e88f6576df2da6b02e9ce565c6f533be576957e" dependencies = [ "ring", "untrusted", @@ -13773,9 +14866,24 @@ version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" dependencies = [ - "webpki 0.22.0", + "webpki 0.22.1", +] + +[[package]] +name = "webpki-roots" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b03058f88386e5ff5310d9111d53f48b17d732b401aeb83a8d5190f2ac459338" +dependencies = [ + "rustls-webpki 0.100.2", ] +[[package]] +name = "webpki-roots" +version = "0.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" + [[package]] name = "webrtc" version = "0.6.0" @@ -13799,7 +14907,7 @@ dependencies = [ "sdp", "serde", "serde_json", - "sha2 0.10.6", + "sha2 0.10.7", "stun", "thiserror", "time 0.3.17", @@ -13834,9 +14942,9 @@ dependencies = [ [[package]] name = "webrtc-dtls" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "942be5bd85f072c3128396f6e5a9bfb93ca8c1939ded735d177b7bcba9a13d05" +checksum = "c4a00f4242f2db33307347bd5be53263c52a0331c96c14292118c9a6bb48d267" dependencies = [ "aes 0.6.0", "aes-gcm 0.10.2", @@ -13851,25 +14959,24 @@ dependencies = [ "hkdf", "hmac 0.12.1", "log", - "oid-registry 0.6.1", "p256", "p384", "rand 0.8.5", "rand_core 0.6.4", - "rcgen 0.9.3", + "rcgen 0.10.0", "ring", "rustls 0.19.1", "sec1 0.3.0", "serde", "sha1", - "sha2 0.10.6", + "sha2 0.10.7", "signature 1.6.4", "subtle", "thiserror", "tokio", "webpki 0.21.4", "webrtc-util", - "x25519-dalek 2.0.0-pre.1", + "x25519-dalek 2.0.0", "x509-parser 0.13.2", ] @@ -13891,7 +14998,7 @@ dependencies = [ "tokio", "turn", "url", - "uuid 1.3.3", + "uuid 1.4.1", "waitgroup", "webrtc-mdns", "webrtc-util", @@ -13904,7 +15011,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" dependencies = [ "log", - "socket2", + "socket2 0.4.9", "thiserror", "tokio", "webrtc-util", @@ -13987,20 +15094,21 @@ dependencies = [ [[package]] name = "which" -version = "4.4.0" +version = "4.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269" +checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7" dependencies = [ "either", - "libc", + "home", "once_cell", + "rustix 0.38.11", ] [[package]] name = "wide" -version = "0.7.9" +version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5cd0496a71f3cc6bc4bf0ed91346426a5099e93d89807e663162dc5a1069ff65" +checksum = "aa469ffa65ef7e0ba0f164183697b89b854253fd31aeb92358b7b6155177d62f" dependencies = [ "bytemuck", "safe_arch", @@ -14008,9 +15116,9 @@ dependencies = [ [[package]] name = "widestring" -version = "0.5.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983" +checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" [[package]] name = "winapi" @@ -14062,7 +15170,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" dependencies = [ - "windows-targets 0.48.0", + "windows-targets 0.48.5", ] [[package]] @@ -14095,7 +15203,7 @@ version = "0.48.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" dependencies = [ - "windows-targets 0.48.0", + "windows-targets 0.48.5", ] [[package]] @@ -14115,17 +15223,17 @@ dependencies = [ [[package]] name = "windows-targets" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" dependencies = [ - "windows_aarch64_gnullvm 0.48.0", - "windows_aarch64_msvc 0.48.0", - "windows_i686_gnu 0.48.0", - "windows_i686_msvc 0.48.0", - "windows_x86_64_gnu 0.48.0", - "windows_x86_64_gnullvm 0.48.0", - "windows_x86_64_msvc 0.48.0", + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", ] [[package]] @@ -14136,9 +15244,9 @@ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" [[package]] name = "windows_aarch64_gnullvm" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" [[package]] name = "windows_aarch64_msvc" @@ -14154,9 +15262,9 @@ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" [[package]] name = "windows_aarch64_msvc" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" [[package]] name = "windows_i686_gnu" @@ -14172,9 +15280,9 @@ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" [[package]] name = "windows_i686_gnu" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" [[package]] name = "windows_i686_msvc" @@ -14190,9 +15298,9 @@ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" [[package]] name = "windows_i686_msvc" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" [[package]] name = "windows_x86_64_gnu" @@ -14208,9 +15316,9 @@ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" [[package]] name = "windows_x86_64_gnu" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" [[package]] name = "windows_x86_64_gnullvm" @@ -14220,9 +15328,9 @@ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" [[package]] name = "windows_x86_64_gnullvm" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" [[package]] name = "windows_x86_64_msvc" @@ -14238,26 +15346,27 @@ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" [[package]] name = "windows_x86_64_msvc" -version = "0.48.0" +version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" [[package]] name = "winnow" -version = "0.4.6" +version = "0.5.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" +checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" dependencies = [ "memchr", ] [[package]] name = "winreg" -version = "0.10.1" +version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "winapi", + "cfg-if", + "windows-sys 0.48.0", ] [[package]] @@ -14307,12 +15416,13 @@ dependencies = [ [[package]] name = "x25519-dalek" -version = "2.0.0-pre.1" +version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5da623d8af10a62342bcbbb230e33e58a63255a58012f8653c578e54bab48df" +checksum = "fb66477291e7e8d2b0ff1bcb900bf29489a9692816d79874bea351e7a8b6de96" dependencies = [ - "curve25519-dalek 3.2.0", + "curve25519-dalek 4.1.0", "rand_core 0.6.4", + "serde", "zeroize", ] @@ -14355,40 +15465,82 @@ dependencies = [ [[package]] name = "xcm" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "bounded-collections", "derivative", "impl-trait-for-tuples", "log", - "parity-scale-codec 3.5.0", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-weights", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", "xcm-procedural", ] +[[package]] +name = "xcm-builder" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" +dependencies = [ + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "impl-trait-for-tuples", + "log", + "pallet-transaction-payment", + "parity-scale-codec 3.6.5", + "polkadot-parachain", + "scale-info", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "xcm", + "xcm-executor", +] + +[[package]] +name = "xcm-executor" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" +dependencies = [ + "environmental", + "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "impl-trait-for-tuples", + "log", + "parity-scale-codec 3.6.5", + "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "xcm", +] + [[package]] name = "xcm-procedural" -version = "0.9.40" -source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.40#95fe4c8862810bffd68343231a517e62689c05c0" +version = "0.9.43" +source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.31", ] [[package]] name = "xvm-chain-extension-types" version = "0.1.0" -source = "git+https://github.com/AstarNetwork/astar-frame.git?branch=temp/polkadot-v0.9.40#29951da0091591a2e8fc0785adc4931c2f4d3785" +source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ - "parity-scale-codec 3.5.0", + "astar-primitives", + "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime", - "sp-std 5.0.0", + "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", ] [[package]] @@ -14443,7 +15595,7 @@ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 2.0.17", + "syn 2.0.31", ] [[package]] @@ -14452,7 +15604,7 @@ version = "0.6.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" dependencies = [ - "aes 0.8.2", + "aes 0.8.3", "byteorder", "bzip2", "constant_time_eq 0.1.5", @@ -14463,7 +15615,7 @@ dependencies = [ "pbkdf2 0.11.0", "sha1", "time 0.3.17", - "zstd", + "zstd 0.11.2+zstd.1.5.2", ] [[package]] @@ -14472,7 +15624,16 @@ version = "0.11.2+zstd.1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" dependencies = [ - "zstd-safe", + "zstd-safe 5.0.2+zstd.1.5.2", +] + +[[package]] +name = "zstd" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a27595e173641171fc74a1232b7b1c7a7cb6e18222c11e9dfb9888fa424c53c" +dependencies = [ + "zstd-safe 6.0.6", ] [[package]] @@ -14485,6 +15646,16 @@ dependencies = [ "zstd-sys", ] +[[package]] +name = "zstd-safe" +version = "6.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee98ffd0b48ee95e6c5168188e44a54550b1564d9d530ee21d5f0eaed1069581" +dependencies = [ + "libc", + "zstd-sys", +] + [[package]] name = "zstd-sys" version = "2.0.8+zstd.1.5.5" diff --git a/Cargo.toml b/Cargo.toml index 5c894274..9a22a65d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ proc-macro2 = "1.0" proptest = "1.1" quote = "1.0" rand = "0.8.4" -scale-codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] } +scale-codec = { package = "parity-scale-codec", version = "3.5.0", default-features = false, features = ["derive"] } scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } serde = { version = "1.0", default-features = false } serde_json = "1.0.68" @@ -56,135 +56,135 @@ web3 = "0.18.0" # Substrate Client -mmr-gadget = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -mmr-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -polkadot-rpc = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.40" } -sc-basic-authorship = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-cli = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-client-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus-aura = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus-beefy-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus-grandpa = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-consensus-manual-seal = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-executor = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-keystore = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-network = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-rpc-api = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-service = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-telemetry = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -sc-transaction-pool = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -substrate-rpc-client = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } +mmr-gadget = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +mmr-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +polkadot-rpc = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.43" } +sc-basic-authorship = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-cli = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-client-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus-aura = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus-beefy-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus-grandpa = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-consensus-manual-seal = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-executor = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-keystore = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-network = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-network-sync = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-rpc-api = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-service = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-telemetry = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +sc-transaction-pool = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +substrate-rpc-client = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } subxt = { version = "0.29.0", git = "https://github.com/paritytech/subxt", tag = "v0.29.0", default-features = false } # Substrate Primitive -pallet-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-beefy-mmr = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } +pallet-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-beefy-mmr = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } prometheus = { version = "0.13.0", default-features = false } -sp-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-arithmetic = { version = "6.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-block-builder = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-blockchain = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-consensus = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-consensus-aura = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-inherents = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-io = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-keyring = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-mmr-primitives = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-offchain = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-runtime = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-session = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-staking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-std = { version = "5.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-transaction-pool = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -sp-version = { version = "5.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } +sp-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-arithmetic = { version = "6.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-block-builder = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-blockchain = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-consensus = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-consensus-aura = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-inherents = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-io = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-keyring = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-mmr-primitives = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-offchain = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-runtime = { version = "7.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-session = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-staking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-std = { version = "5.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-transaction-pool = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +sp-version = { version = "5.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } # Substrate FRAME -frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-election-provider-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-executive = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-system-benchmarking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -frame-system-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-assets = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-aura = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-authorship = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-bags-list = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-bounties = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-conviction-voting = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-election-provider-multi-phase = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-grandpa = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-identity = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-im-online = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-indices = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-mmr = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-multisig = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-offences = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-preimage = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-proxy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-ranked-collective = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-referenda = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-scheduler = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-session = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-society = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-staking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-sudo = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-tips = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-transaction-payment = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-transaction-payment-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-treasury = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-vesting = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-whitelist = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } +frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-election-provider-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-executive = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-support = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-system-benchmarking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-assets = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-aura = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-authorship = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-bags-list = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-balances = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-bounties = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-conviction-voting = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-election-provider-multi-phase = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-grandpa = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-identity = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-im-online = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-indices = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-mmr = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-multisig = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-offences = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-preimage = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-proxy = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-ranked-collective = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-referenda = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-scheduler = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-session = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-society = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-staking = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-sudo = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-timestamp = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-tips = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-transaction-payment = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-transaction-payment-rpc = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-treasury = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-vesting = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-whitelist = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } # Substrate Utility -frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -substrate-build-script-utils = { version = "3.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -substrate-frame-rpc-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -substrate-test-utils = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } -substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" } +frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +substrate-build-script-utils = { version = "3.0.0", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +substrate-frame-rpc-system = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +substrate-test-utils = { version = "4.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } +substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" } # Frontier Client -fc-cli = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } -fc-consensus = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } -fc-db = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } -fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } -fc-rpc = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } -fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40" } +fc-cli = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } +fc-consensus = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } +fc-db = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } +fc-mapping-sync = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } +fc-rpc = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } +fc-rpc-core = { version = "1.1.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43" } # Frontier Primitive -fc-storage = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -fp-dynamic-fee = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -fp-evm = { version = "3.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -fp-rpc = { version = "3.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -fp-storage = { version = "2.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } +fc-storage = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +fp-dynamic-fee = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +fp-evm = { version = "3.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +fp-rpc = { version = "3.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +fp-self-contained = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +fp-storage = { version = "2.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } # Frontier FRAME -pallet-base-fee = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-dynamic-fee = { version = "4.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm = { version = "6.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-blake2 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-bn128 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-ed25519 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } -pallet-hotfix-sufficients = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.40", default-features = false } +pallet-base-fee = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-dynamic-fee = { version = "4.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-ethereum = { version = "4.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm = { version = "6.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-chain-id = { version = "1.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-blake2 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-bn128 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-ed25519 = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-modexp = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-sha3fips = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-evm-precompile-simple = { version = "2.0.0-dev", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } +pallet-hotfix-sufficients = { version = "1.0.0", git = "https://github.com/AstarNetwork/frontier.git", branch = "polkadot-v0.9.43", default-features = false } # GGX -account-filter = { package = "substrate-account-filter", git = "https://github.com/ggxchain/ggx-frames.git", branch = "polkadot-v0.9.40", default-features = false } +account-filter = { package = "substrate-account-filter", git = "https://github.com/ggxchain/ggx-frames.git", branch = "polkadot-v0.9.43", default-features = false } ggxchain-runtime-brooklyn = { path = "runtime/brooklyn", default-features = false } ggxchain-runtime-sydney = { path = "runtime/sydney", default-features = false } pallet-evm-precompile-session = { path = "precompiles/session", default-features = false } @@ -192,17 +192,19 @@ pallet-evm-precompile-zk-groth16-verify = { path = "precompiles/zk-groth16-verif runtime-common = { path = "runtime/runtime-common", default-features = false } # Astar -pallet-chain-extension-xvm = { version = "0.1.0", git = "https://github.com/AstarNetwork/astar-frame.git", branch = "temp/polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-sr25519 = { git = "https://github.com/AstarNetwork/astar-frame.git", branch = "temp/polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-substrate-ecdsa = { git = "https://github.com/AstarNetwork/astar-frame.git", branch = "temp/polkadot-v0.9.40", default-features = false } -pallet-evm-precompile-xvm = { version = "0.1.0", git = "https://github.com/AstarNetwork/astar-frame.git", branch = "temp/polkadot-v0.9.40", default-features = false } -pallet-xvm = { version = "0.2.1", git = "https://github.com/AstarNetwork/astar-frame.git", branch = "temp/polkadot-v0.9.40", default-features = false } -precompile-utils = { version = "0.4.3", git = "https://github.com/AstarNetwork/astar-frame", branch = "temp/polkadot-v0.9.40", default-features = false } +astar-primitives = { git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-chain-extension-xvm = { version = "0.1.0", git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-ethereum-checked = { git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-evm-precompile-sr25519 = { git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-evm-precompile-substrate-ecdsa = { git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-evm-precompile-xvm = { version = "0.1.0", git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +pallet-xvm = { version = "0.2.2", git = "https://github.com/AstarNetwork/Astar.git", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } +precompile-utils = { version = "0.5", git = "https://github.com/AstarNetwork/Astar", rev = "df73ca435bbfa30548bb2446b5dbb58492c928bb", default-features = false } # Wasm contracts -pallet-contracts = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } -pallet-randomness-collective-flip = { package = "pallet-insecure-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false } +pallet-contracts = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } +pallet-randomness-collective-flip = { package = "pallet-insecure-randomness-collective-flip", git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43", default-features = false } # IBC ibc = { version = "0.28.0", default-features = false, features = ["parity-scale-codec", "serde"] } @@ -227,6 +229,7 @@ ark-relations = { version = "0.4.0", default-features = false } ark-serialize = { version = "0.4.1", default-features = false } ark-std = { version = "0.4.0", default-features = false } -# Temporary, leaks the std feature in the non-std env. Until https://github.com/AstarNetwork/frontier/pull/84 is merged. -[patch."https://github.com/AstarNetwork/frontier.git"] -fp-account = { git = "https://github.com/GoldenGateGGX/frontier.git", branch = "polkadot-v0.9.40" } +[patch."https://github.com/ibc-test/substrate-ibc.git"] +pallet-ibc = { path = "../substrate-ibc/core" } +pallet-ibc-utils = { path = "../substrate-ibc/utils" } +pallet-ics20-transfer = { path = "../substrate-ibc/applications/transfer" } diff --git a/flake.lock b/flake.lock index e76b72db..d4c6220d 100644 --- a/flake.lock +++ b/flake.lock @@ -42,11 +42,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1688772518, - "narHash": "sha256-ol7gZxwvgLnxNSZwFTDJJ49xVY5teaSvF7lzlo3YQfM=", + "lastModified": 1693787605, + "narHash": "sha256-rwq5U8dy+a9JFny/73L0SJu1GfWwATMPMTp7D+mjHy8=", "owner": "ipetkov", "repo": "crane", - "rev": "8b08e96c9af8c6e3a2b69af5a7fa168750fcf88e", + "rev": "8b4f7a4dab2120cf41e7957a28a853f45016bd9d", "type": "github" }, "original": { @@ -113,11 +113,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1687709756, - "narHash": "sha256-Y5wKlQSkgEK2weWdOu4J3riRd+kV/VCgHsqLNTTWQ/0=", + "lastModified": 1692799911, + "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", "owner": "numtide", "repo": "flake-utils", - "rev": "dbabf0ca0c0c4bce6ea5eaf65af5cb694d2082c7", + "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", "type": "github" }, "original": { @@ -149,11 +149,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1689068808, - "narHash": "sha256-6ixXo3wt24N/melDWjq70UuHQLxGV8jZvooRanIHXw0=", + "lastModified": 1692799911, + "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", "owner": "numtide", "repo": "flake-utils", - "rev": "919d646de7be200f3bf08cb76ae1f09402b6f9b4", + "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", "type": "github" }, "original": { @@ -256,11 +256,11 @@ }, "nixlib": { "locked": { - "lastModified": 1689469483, - "narHash": "sha256-2SBhY7rZQ/iNCxe04Eqxlz9YK9KgbaTMBssq3/BgdWY=", + "lastModified": 1693701915, + "narHash": "sha256-waHPLdDYUOHSEtMKKabcKIMhlUOHPOOPQ9UyFeEoovs=", "owner": "nix-community", "repo": "nixpkgs.lib", - "rev": "02fea408f27186f139153e1ae88f8ab2abd9c22c", + "rev": "f5af57d3ef9947a70ac86e42695231ac1ad00c25", "type": "github" }, "original": { @@ -277,11 +277,11 @@ ] }, "locked": { - "lastModified": 1690133435, - "narHash": "sha256-YNZiefETggroaTLsLJG2M+wpF0pJPwiauKG4q48ddNU=", + "lastModified": 1693791338, + "narHash": "sha256-wHmtB5H8AJTUaeGHw+0hsQ6nU4VyvVrP2P4NeCocRzY=", "owner": "nix-community", "repo": "nixos-generators", - "rev": "b1171de4d362c022130c92d7c8adc4bf2b83d586", + "rev": "8ee78470029e641cddbd8721496da1316b47d3b4", "type": "github" }, "original": { @@ -345,11 +345,11 @@ ] }, "locked": { - "lastModified": 1690246230, - "narHash": "sha256-o7PNUxN+UI3lVx0jkPwmmanUzdRovh3y3DvzMfmA4OY=", + "lastModified": 1693960602, + "narHash": "sha256-3d/KoK3Ox5Vy0I3N3Mktw3xjhYxEjTzklvRk/cB4F0c=", "owner": "nix-community", "repo": "nixpkgs-terraform-providers-bin", - "rev": "8e4eab4632c9dce387e864eb04322a33d5cb82da", + "rev": "44e4b99529a4ebf616b22045ea013f5e844390b5", "type": "github" }, "original": { @@ -427,11 +427,11 @@ ] }, "locked": { - "lastModified": 1688351637, - "narHash": "sha256-CLTufJ29VxNOIZ8UTg0lepsn3X03AmopmaLTTeHDCL4=", + "lastModified": 1693707092, + "narHash": "sha256-HR1EnynBSPqbt+04/yxxqsG1E3n6uXrOl7SPco/UnYo=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "f9b92316727af9e6c7fee4a761242f7f46880329", + "rev": "98ccb73e6eefc481da6039ee57ad8818d1ca8d56", "type": "github" }, "original": { @@ -450,11 +450,11 @@ ] }, "locked": { - "lastModified": 1690252178, - "narHash": "sha256-9oEz822bvbHobfCUjJLDor2BqW3I5tycIauzDlzOALY=", + "lastModified": 1693966243, + "narHash": "sha256-a2CA1aMIPE67JWSVIGoGtD3EGlFdK9+OlJQs0FOWCKY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "8d64353ca827002fb8459e44d49116c78d868eba", + "rev": "a8b4bb4cbb744baaabc3e69099f352f99164e2c1", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index d1b2a88d..3786d876 100644 --- a/flake.nix +++ b/flake.nix @@ -87,7 +87,9 @@ LD_LIBRARY_PATH = pkgs.lib.strings.makeLibraryPath [ pkgs.stdenv.cc.cc.lib pkgs.llvmPackages.libclang.lib + (pkgs.lib.makeLibraryPath [pkgs.openssl]) ]; + OPENSSL_DIR = "${pkgs.openssl.dev}"; LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; PROTOC = "${pkgs.protobuf}/bin/protoc"; ROCKSDB_LIB_DIR = "${pkgs.rocksdb}/lib"; diff --git a/node/src/rpc.rs b/node/src/rpc.rs index 72eea4c6..eaf84fc0 100644 --- a/node/src/rpc.rs +++ b/node/src/rpc.rs @@ -14,9 +14,9 @@ pub struct FullDeps { pub deny_unsafe: DenyUnsafe, #[cfg(not(feature = "brooklyn"))] - pub mainnet: crate::service::mainnet::MainNetParams, + pub mainnet: crate::service::sydney::MainNetParams, #[cfg(feature = "brooklyn")] - pub testnet: crate::service::testnet::TestNetParams, + pub testnet: crate::service::brooklyn::TestNetParams, /// Manual seal command sink #[cfg(feature = "manual-seal")] pub command_sink: diff --git a/node/src/service/testnet.rs b/node/src/service/brooklyn.rs similarity index 100% rename from node/src/service/testnet.rs rename to node/src/service/brooklyn.rs diff --git a/node/src/service/mod.rs b/node/src/service/mod.rs index 4be2209c..57969f6a 100644 --- a/node/src/service/mod.rs +++ b/node/src/service/mod.rs @@ -1,12 +1,12 @@ #[cfg(feature = "brooklyn")] -pub mod testnet; +pub mod brooklyn; #[cfg(feature = "brooklyn")] -use testnet as service; +use brooklyn as service; #[cfg(not(feature = "brooklyn"))] -pub mod mainnet; +pub mod sydney; #[cfg(not(feature = "brooklyn"))] -use mainnet as service; +use sydney as service; pub use service::{create_full_rpc, new_full, new_partial}; diff --git a/node/src/service/mainnet.rs b/node/src/service/sydney.rs similarity index 91% rename from node/src/service/mainnet.rs rename to node/src/service/sydney.rs index 2cb38047..4f83c600 100644 --- a/node/src/service/mainnet.rs +++ b/node/src/service/sydney.rs @@ -7,24 +7,18 @@ use jsonrpsee::RpcModule; use sp_api::{CallApiAt, ProvideRuntimeApi}; use std::{ collections::BTreeMap, - path::PathBuf, sync::{Arc, Mutex}, time::Duration, }; // Substrate -use sc_cli::SubstrateCli; use sc_client_api::{ backend::{Backend, StateBackend}, AuxStore, BlockchainEvents, StorageProvider, }; -use sc_executor::NativeElseWasmExecutor; -use sc_keystore::LocalKeystore; use sc_network::NetworkService; use sc_network_sync::SyncingService; use sc_rpc::SubscriptionTaskExecutor; -use sc_service::{ - error::Error as ServiceError, BasePath, Configuration, TaskManager, TransactionPool, -}; +use sc_service::{error::Error as ServiceError, Configuration, TaskManager, TransactionPool}; use sc_telemetry::{Telemetry, TelemetryWorker}; use sc_transaction_pool::{ChainApi, Pool}; use sp_block_builder::BlockBuilder; @@ -33,9 +27,8 @@ use sp_core::{crypto::Ss58AddressFormat, U256}; use sp_runtime::traits::BlakeTwo256; // Frontier use fc_consensus::FrontierBlockImport; -use fc_db::Backend as FrontierBackend; -use fc_mapping_sync::{MappingSyncWorker, SyncStrategy}; -use fc_rpc::{EthBlockDataCacheTask, EthTask, OverrideHandle}; +use fc_mapping_sync::SyncStrategy; +use fc_rpc::{EthBlockDataCacheTask, EthTask, OverrideHandle, TxPool}; use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; // Runtime #[cfg(feature = "manual-seal")] @@ -62,17 +55,6 @@ pub type ConsensusResult = ( Sealing, ); -pub(crate) fn db_config_dir(config: &Configuration) -> PathBuf { - config - .base_path - .as_ref() - .map(|base_path| base_path.config_dir(config.chain_spec.id())) - .unwrap_or_else(|| { - BasePath::from_project("", "", &Cli::executable_name()) - .config_dir(config.chain_spec.id()) - }) -} - pub fn new_partial( config: &Configuration, cli: &Cli, @@ -86,19 +68,13 @@ pub fn new_partial( ( Option, ConsensusResult, - Arc>, + Arc>, Option, (FeeHistoryCache, FeeHistoryCacheLimit), ), >, ServiceError, > { - if config.keystore_remote.is_some() { - return Err(ServiceError::Other( - "Remote Keystores are not supported.".to_string(), - )); - } - sp_core::crypto::set_default_ss58_version(Ss58AddressFormat::custom( crate::runtime::SS58Prefix::get(), )); @@ -114,12 +90,7 @@ pub fn new_partial( }) .transpose()?; - let executor = NativeElseWasmExecutor::::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - config.runtime_cache_size, - ); + let executor = sc_service::new_native_or_wasm_executor(config); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( @@ -146,10 +117,16 @@ pub fn new_partial( client.clone(), ); - let frontier_backend = Arc::new(FrontierBackend::open( - Arc::clone(&client), - &config.database, - &db_config_dir(config), + let config_dir = config.base_path.config_dir(config.chain_spec.id()); + let path = config_dir.join("frontier").join("db"); + let frontier_backend = Arc::new(fc_db::kv::Backend::::new( + client.clone(), + &fc_db::kv::DatabaseSettings { + source: fc_db::DatabaseSource::RocksDb { + path, + cache_size: 0, + }, + }, )?); let filter_pool: Option = Some(Arc::new(Mutex::new(BTreeMap::new()))); let fee_history_cache: FeeHistoryCache = Arc::new(Mutex::new(BTreeMap::new())); @@ -166,11 +143,8 @@ pub fn new_partial( telemetry.as_ref().map(|x| x.handle()), )?; - let frontier_block_import = FrontierBlockImport::new( - grandpa_block_import.clone(), - client.clone(), - frontier_backend.clone(), - ); + let frontier_block_import = + FrontierBlockImport::new(grandpa_block_import.clone(), client.clone()); let slot_duration = sc_consensus_aura::slot_duration(&*client)?; let target_gas_price = cli.run.target_gas_price; @@ -248,13 +222,6 @@ pub fn new_partial( } } -fn remote_keystore(_url: &str) -> Result, &'static str> { - // FIXME: here would the concrete keystore be built, - // must return a concrete type (NOT `LocalKeystore`) that - // implements `CryptoStore` and `SyncCryptoStore` - Err("Remote Keystore not supported.") -} - /// Builds a new service for a full client. #[cfg(not(feature = "manual-seal"))] pub fn new_full(mut config: Configuration, cli: &Cli) -> Result { @@ -270,7 +237,7 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Result keystore_container.set_remote_keystore(k), - Err(e) => { - return Err(ServiceError::Other(format!( - "Error hooking up remote keystore for {url}: {e}" - ))) - } - }; - } - let grandpa_protocol_name = sc_consensus_grandpa::protocol_standard_name( &client .block_hash(0) @@ -302,12 +258,6 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Result Result Result::None, - keystore: keystore_container.sync_keystore(), + keystore: keystore_container.keystore(), block_proposal_slot_portion: sc_consensus_aura::SlotProportion::new(2f32 / 3f32), max_block_proposal_slot_portion: None, telemetry: telemetry.as_ref().map(|x| x.handle()), @@ -483,7 +436,7 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result, backend: Arc, - frontier_backend: Arc>, + frontier_backend: Arc>, filter_pool: Option, overrides: Arc>, fee_history_cache: FeeHistoryCache, @@ -777,7 +730,7 @@ fn spawn_frontier_tasks( task_manager.spawn_essential_handle().spawn( "ggx-mapping-sync-worker", Some("GGX"), - MappingSyncWorker::new( + fc_mapping_sync::kv::MappingSyncWorker::new( client.import_notification_stream(), Duration::new(6, 0), client.clone(), @@ -885,7 +838,7 @@ where Eth::new( client.clone(), pool.clone(), - graph, + graph.clone(), Some(crate::runtime::ethereum::TransactionConverter), sync.clone(), signers, @@ -897,17 +850,21 @@ where fee_history_cache, fee_history_cache_limit, 10, + None, ) .into_rpc(), )?; if let Some(filter_pool) = filter_pool { + let max_stored_filters: usize = 500; + let tx_pool = TxPool::new(client.clone(), graph); io.merge( EthFilter::new( client.clone(), backend, + tx_pool, filter_pool, - 500_usize, // max stored filters + max_stored_filters, max_past_logs, block_data_cache, ) @@ -965,7 +922,7 @@ pub struct MainNetParams { /// EthFilterApi pool. pub filter_pool: Option, /// Backend. - pub backend: Arc>, + pub backend: Arc>, /// Maximum number of logs in a query. pub max_past_logs: u32, /// Fee history cache. diff --git a/runtime/brooklyn/Cargo.toml b/runtime/brooklyn/Cargo.toml index 239f77d9..6afeb8d0 100644 --- a/runtime/brooklyn/Cargo.toml +++ b/runtime/brooklyn/Cargo.toml @@ -16,14 +16,15 @@ scale-codec = { package = "parity-scale-codec", workspace = true } scale-info.workspace = true # Substrate -pallet-beefy.workspace = true pallet-beefy-mmr.workspace = true +pallet-beefy.workspace = true sp-api.workspace = true sp-block-builder.workspace = true sp-consensus-aura.workspace = true sp-consensus-beefy.workspace = true sp-core.workspace = true sp-inherents.workspace = true +sp-io.workspace = true sp-mmr-primitives.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true @@ -76,8 +77,10 @@ pallet-hotfix-sufficients.workspace = true runtime-common = { workspace = true, features = ["precompiles"] } # Astar +astar-primitives.workspace = true pallet-chain-extension-xvm.workspace = true -pallet-xvm = { workspace = true, default-features = false, features = ["evm", "wasm"] } +pallet-ethereum-checked.workspace = true +pallet-xvm = { workspace = true, default-features = false } # Wasm contracts pallet-contracts-primitives.workspace = true @@ -85,11 +88,11 @@ pallet-contracts.workspace = true pallet-randomness-collective-flip.workspace = true # Ibc +ibc-proto.workspace = true +ibc.workspace = true +pallet-ibc-utils.workspace = true pallet-ibc.workspace = true pallet-ics20-transfer.workspace = true -pallet-ibc-utils.workspace = true -ibc.workspace = true -ibc-proto.workspace = true prost.workspace = true [build-dependencies] @@ -112,6 +115,7 @@ std = [ "sp-consensus-beefy/std", "sp-core/std", "sp-inherents/std", + "sp-io/std", "sp-mmr-primitives/std", "sp-offchain/std", "sp-runtime/std", @@ -121,12 +125,12 @@ std = [ "sp-transaction-pool/std", "sp-version/std", # Substrate FRAME - "frame-benchmarking/std", + "frame-benchmarking?/std", "frame-executive/std", "frame-support/std", "frame-system/std", "frame-system-rpc-runtime-api/std", - "frame-system-benchmarking/std", + "frame-system-benchmarking?/std", "pallet-assets/std", "pallet-aura/std", "pallet-authorship/std", @@ -162,7 +166,9 @@ std = [ # GGX "runtime-common/std", # Astar + "astar-primitives/std", "pallet-chain-extension-xvm/std", + "pallet-ethereum-checked/std", "pallet-xvm/std", # Wasm contracts "pallet-contracts/std", diff --git a/runtime/brooklyn/src/chain_extensions.rs b/runtime/brooklyn/src/chain_extensions.rs index 2cb53543..b6f1475e 100644 --- a/runtime/brooklyn/src/chain_extensions.rs +++ b/runtime/brooklyn/src/chain_extensions.rs @@ -1,9 +1,12 @@ use frame_support::{ log::{error, trace}, pallet_prelude::Weight, - traits::fungibles::{ - approvals::{Inspect as AllowanceInspect, Mutate as AllowanceMutate}, - Inspect, Transfer, + traits::{ + fungibles::{ + approvals::{Inspect as AllowanceInspect, Mutate as AllowanceMutate}, + Inspect, + }, + nonfungibles::Transfer, }, }; use frame_system::RawOrigin; diff --git a/runtime/brooklyn/src/ethereum.rs b/runtime/brooklyn/src/ethereum.rs index 463f0283..ed4f8266 100644 --- a/runtime/brooklyn/src/ethereum.rs +++ b/runtime/brooklyn/src/ethereum.rs @@ -1,5 +1,6 @@ use crate::{ - prelude::*, BlockWeights, FindAuthorTruncated, UncheckedExtrinsic, NORMAL_DISPATCH_RATIO, + prelude::*, BlockWeights, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, Xvm, + MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, }; use super::{Balances, Runtime, RuntimeEvent, Timestamp}; @@ -11,8 +12,8 @@ use pallet_ethereum::PostLogContent; use runtime_common::precompiles::GoldenGatePrecompiles; use pallet_evm::{AddressMapping, EnsureAddressTruncated, Error, HashedAddressMapping, Pallet}; -use sp_core::H160; -use sp_runtime::Perbill; +use sp_core::{H160, U256}; +use sp_runtime::{traits::BlakeTwo256, Perbill, Permill}; use frame_support::traits::{ Currency, ExistenceRequirement, Imbalance, OnUnbalanced, SignedImbalance, WithdrawReasons, @@ -142,7 +143,7 @@ parameter_types! { pub BlockGasLimit: U256 = U256::from( NORMAL_DISPATCH_RATIO * BlockWeights::get().max_block.ref_time() / WEIGHT_PER_GAS ); - pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_>::new(); + pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_, _>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); pub ChainId: u64 = 888866; } @@ -159,7 +160,7 @@ impl pallet_evm::Config for Runtime { type AddressMapping = HashedAddressMapping; type Currency = Balances; type RuntimeEvent = RuntimeEvent; - type PrecompilesType = GoldenGatePrecompiles; + type PrecompilesType = GoldenGatePrecompiles; type PrecompilesValue = PrecompilesValue; type ChainId = ChainId; type BlockGasLimit = BlockGasLimit; @@ -216,18 +217,35 @@ impl pallet_dynamic_fee::Config for Runtime { type MinGasPriceBoundDivisor = BoundDivision; } +pub struct HashedAccountMapping; +impl astar_primitives::ethereum_checked::AccountMapping for HashedAccountMapping { + fn into_h160(account_id: AccountId) -> H160 { + let data = (b"evm:", account_id); + return H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]); + } +} + parameter_types! { - pub EvmId: u8 = 0x0F; - pub WasmId: u8 = 0x1F; + /// Equal to normal class dispatch weight limit. + pub XvmTxWeightLimit: Weight = NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT; + pub const ReservedXcmpWeight: Weight = Weight::zero(); +} + +impl pallet_ethereum_checked::Config for Runtime { + type ReservedXcmpWeight = ReservedXcmpWeight; + type XvmTxWeightLimit = XvmTxWeightLimit; + type InvalidEvmTransactionError = pallet_ethereum::InvalidTransactionWrapper; + type ValidatedTransaction = pallet_ethereum::ValidatedTransaction; + type AccountMapping = HashedAccountMapping; + type XcmTransactOrigin = pallet_ethereum_checked::EnsureXcmEthereumTx; + type WeightInfo = pallet_ethereum_checked::weights::SubstrateWeight; } -use pallet_xvm::{evm, wasm}; -use sp_core::U256; -use sp_runtime::{traits::BlakeTwo256, Permill}; impl pallet_xvm::Config for Runtime { - type SyncVM = (evm::EVM, wasm::WASM); - type AsyncVM = (); - type RuntimeEvent = RuntimeEvent; + type GasWeightMapping = pallet_evm::FixedGasWeightMapping; + type AccountMapping = HashedAccountMapping; + type EthereumTransact = EthereumChecked; + type WeightInfo = pallet_xvm::weights::SubstrateWeight; } parameter_types! { diff --git a/runtime/brooklyn/src/ink.rs b/runtime/brooklyn/src/ink.rs index 2b52f113..74750104 100644 --- a/runtime/brooklyn/src/ink.rs +++ b/runtime/brooklyn/src/ink.rs @@ -3,7 +3,7 @@ use crate::{ chain_extensions::{IBCISC20Extension, Psp37Extension}, deposit, prelude::*, - Balance, BlockWeights, + Balance, BlockWeights, Xvm, }; pub use frame_support::dispatch::DispatchClass; @@ -13,7 +13,7 @@ use pallet_contracts::chain_extension::RegisteredChainExtension; pub use pallet_chain_extension_xvm::XvmExtension; use sp_core::{ConstBool, ConstU32}; -impl RegisteredChainExtension for XvmExtension { +impl RegisteredChainExtension for XvmExtension { const ID: u16 = 1; } @@ -60,9 +60,7 @@ impl pallet_contracts::Config for Runtime { type CallStack = [pallet_contracts::Frame; 5]; type WeightPrice = pallet_transaction_payment::Pallet; type WeightInfo = pallet_contracts::weights::SubstrateWeight; - type ChainExtension = (XvmExtension, IBCISC20Extension, Psp37Extension); - type DeletionQueueDepth = ConstU32<128>; - type DeletionWeightLimit = DeletionWeightLimit; + type ChainExtension = (XvmExtension, IBCISC20Extension, Psp37Extension); type Schedule = Schedule; type AddressGenerator = pallet_contracts::DefaultAddressGenerator; type MaxCodeLen = ConstU32<{ 123 * 1024 }>; diff --git a/runtime/brooklyn/src/lib.rs b/runtime/brooklyn/src/lib.rs index 679d838d..3bac7227 100644 --- a/runtime/brooklyn/src/lib.rs +++ b/runtime/brooklyn/src/lib.rs @@ -173,6 +173,11 @@ pub type Executive = frame_executive::Executive< AllPalletsWithSystem, >; +type EventRecord = frame_system::EventRecord< + ::RuntimeEvent, + ::Hash, +>; + /// Constant values used within the runtime. pub const MILLIGGX: Balance = 1_000_000_000_000_000; pub const GGX: Balance = 1000 * MILLIGGX; @@ -504,6 +509,7 @@ construct_runtime!( Ethereum: pallet_ethereum, EVM: pallet_evm, EVMChainId: pallet_evm_chain_id, + EthereumChecked: pallet_ethereum_checked, DynamicFee: pallet_dynamic_fee, BaseFee: pallet_base_fee, HotfixSufficients: pallet_hotfix_sufficients, @@ -1063,11 +1069,7 @@ impl_runtime_apis! { } } - impl pallet_contracts::ContractsApi< - Block, AccountId, Balance, BlockNumber, Hash, - > - for Runtime - { + impl pallet_contracts::ContractsApi for Runtime { fn call( origin: AccountId, dest: AccountId, @@ -1075,7 +1077,7 @@ impl_runtime_apis! { gas_limit: Option, storage_deposit_limit: Option, input_data: Vec, - ) -> pallet_contracts_primitives::ContractExecResult { + ) -> pallet_contracts_primitives::ContractExecResult { let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); Contracts::bare_call( origin, @@ -1084,8 +1086,9 @@ impl_runtime_apis! { gas_limit, storage_deposit_limit, input_data, - true, - pallet_contracts::Determinism::Deterministic, + pallet_contracts::DebugInfo::UnsafeDebug, + pallet_contracts::CollectEvents::UnsafeCollect, + pallet_contracts::Determinism::Enforced, ) } @@ -1097,10 +1100,19 @@ impl_runtime_apis! { code: pallet_contracts_primitives::Code, data: Vec, salt: Vec, - ) -> pallet_contracts_primitives::ContractInstantiateResult - { + ) -> pallet_contracts_primitives::ContractInstantiateResult { let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); - Contracts::bare_instantiate(origin, value, gas_limit, storage_deposit_limit, code, data, salt, true) + Contracts::bare_instantiate( + origin, + value, + gas_limit, + storage_deposit_limit, + code, + data, + salt, + pallet_contracts::DebugInfo::UnsafeDebug, + pallet_contracts::CollectEvents::UnsafeCollect, + ) } fn upload_code( diff --git a/runtime/runtime-common/src/precompiles.rs b/runtime/runtime-common/src/precompiles.rs index e3959f16..6b894439 100644 --- a/runtime/runtime-common/src/precompiles.rs +++ b/runtime/runtime-common/src/precompiles.rs @@ -17,7 +17,7 @@ use pallet_evm_precompile_xvm::XvmPrecompile; use pallet_evm_precompile_zk_groth16_verify::ZKGroth16Verify; #[derive(Default)] -pub struct GoldenGatePrecompiles(PhantomData); +pub struct GoldenGatePrecompiles(PhantomData<(R, XS)>); pub mod consts { use sp_core::H160; @@ -98,7 +98,7 @@ pub mod consts { } } -impl GoldenGatePrecompiles { +impl GoldenGatePrecompiles { pub fn new() -> Self { Self(Default::default()) } @@ -131,9 +131,9 @@ impl GoldenGatePrecompiles { } } -impl PrecompileSet for GoldenGatePrecompiles +impl PrecompileSet for GoldenGatePrecompiles where - XvmPrecompile: Precompile, + XvmPrecompile: Precompile, SessionWrapper: Precompile, R: pallet_evm::Config + pallet_xvm::Config, { @@ -159,7 +159,7 @@ where a if a == consts::SR25519_VERIFY => Some(Sr25519Precompile::::execute(handle)), a if a == consts::ECDSA_VERIFY => Some(SubstrateEcdsaPrecompile::::execute(handle)), // 0x5005 - is cross virtual machine (XVM) - a if a == consts::XVM => Some(XvmPrecompile::::execute(handle)), + a if a == consts::XVM => Some(XvmPrecompile::::execute(handle)), a if a == consts::SESSION_WRAPPER => Some(SessionWrapper::::execute(handle)), // 0x8888 - is zk-groth16 verify diff --git a/runtime/sydney/Cargo.toml b/runtime/sydney/Cargo.toml index 27bd6756..fa0f6e78 100644 --- a/runtime/sydney/Cargo.toml +++ b/runtime/sydney/Cargo.toml @@ -24,6 +24,7 @@ sp-block-builder.workspace = true sp-consensus-aura.workspace = true sp-core.workspace = true sp-inherents.workspace = true +sp-io.workspace = true sp-offchain.workspace = true sp-runtime.workspace = true sp-session.workspace = true @@ -86,8 +87,10 @@ account-filter.workspace = true runtime-common = { workspace = true, features = ["precompiles"] } # Astar +astar-primitives.workspace = true pallet-chain-extension-xvm.workspace = true -pallet-xvm = { workspace = true, default-features = false, features = ["evm", "wasm"] } +pallet-ethereum-checked.workspace = true +pallet-xvm = { workspace = true, default-features = false } # Wasm contracts pallet-contracts-primitives.workspace = true @@ -98,7 +101,6 @@ substrate-wasm-builder.workspace = true [dev-dependencies] paste.workspace = true -sp-io.workspace = true [features] default = ["std", "aura", "with-rocksdb-weights"] @@ -115,6 +117,7 @@ std = [ "sp-consensus-aura/std", "sp-core/std", "sp-inherents/std", + "sp-io/std", "sp-offchain/std", "sp-runtime/std", "sp-session/std", @@ -123,12 +126,12 @@ std = [ "sp-transaction-pool/std", "sp-version/std", # Substrate FRAME - "frame-benchmarking/std", + "frame-benchmarking?/std", "frame-election-provider-support/std", "frame-executive/std", "frame-support/std", "frame-system/std", - "frame-system-benchmarking/std", + "frame-system-benchmarking?/std", "frame-system-rpc-runtime-api/std", "pallet-aura/std", "pallet-authorship/std", @@ -173,7 +176,9 @@ std = [ "account-filter/std", "runtime-common/std", # Astar + "astar-primitives/std", "pallet-chain-extension-xvm/std", + "pallet-ethereum-checked/std", "pallet-xvm/std", # Wasm contracts "pallet-contracts/std", diff --git a/runtime/sydney/src/ethereum.rs b/runtime/sydney/src/ethereum.rs index 56415a73..4185fb9b 100644 --- a/runtime/sydney/src/ethereum.rs +++ b/runtime/sydney/src/ethereum.rs @@ -1,13 +1,17 @@ use crate::{ - prelude::*, BlockWeights, FindAuthorTruncated, UncheckedExtrinsic, NORMAL_DISPATCH_RATIO, + prelude::*, BlockWeights, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, Xvm, + MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, }; use super::{Balances, Runtime, RuntimeEvent, Timestamp}; use super::opaque; +use crate::AccountId; use frame_support::weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight}; use pallet_ethereum::PostLogContent; use runtime_common::precompiles::GoldenGatePrecompiles; +use sp_core::{H160, U256}; +use sp_runtime::{traits::BlakeTwo256, Permill}; use crate::CurrencyManager; use pallet_evm::{EnsureAddressTruncated, HashedAddressMapping}; @@ -26,9 +30,15 @@ parameter_types! { pub BlockGasLimit: U256 = U256::from( NORMAL_DISPATCH_RATIO * BlockWeights::get().max_block.ref_time() / WEIGHT_PER_GAS ); - pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_>::new(); + pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_, _>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); pub ChainId: u64 = 8886; + /// The amount of gas per PoV size. Value is calculated as: + /// + /// max_gas_limit = max_tx_ref_time / WEIGHT_PER_GAS = max_pov_size * gas_limit_pov_size_ratio + /// gas_limit_pov_size_ratio = ceil((max_tx_ref_time / WEIGHT_PER_GAS) / max_pov_size) + pub const GasLimitPovSizeRatio: u64 = 4; // !!!!! TODO: ADJUST IT + } impl pallet_evm_chain_id::Config for Runtime {} @@ -43,7 +53,7 @@ impl pallet_evm::Config for Runtime { type AddressMapping = HashedAddressMapping; type Currency = Balances; type RuntimeEvent = RuntimeEvent; - type PrecompilesType = GoldenGatePrecompiles; + type PrecompilesType = GoldenGatePrecompiles; type PrecompilesValue = PrecompilesValue; type ChainId = ChainId; type BlockGasLimit = BlockGasLimit; @@ -52,7 +62,8 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type Timestamp = Timestamp; type OnCreate = (); - type WeightInfo = (); + type GasLimitPovSizeRatio = GasLimitPovSizeRatio; + type WeightInfo = pallet_evm::weights::SubstrateWeight; } parameter_types! { @@ -100,18 +111,35 @@ impl pallet_dynamic_fee::Config for Runtime { type MinGasPriceBoundDivisor = BoundDivision; } +pub struct HashedAccountMapping; +impl astar_primitives::ethereum_checked::AccountMapping for HashedAccountMapping { + fn into_h160(account_id: AccountId) -> H160 { + let data = (b"evm:", account_id); + return H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]); + } +} + parameter_types! { - pub EvmId: u8 = 0x0F; - pub WasmId: u8 = 0x1F; + /// Equal to normal class dispatch weight limit. + pub XvmTxWeightLimit: Weight = NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT; + pub const ReservedXcmpWeight: Weight = Weight::zero(); +} + +impl pallet_ethereum_checked::Config for Runtime { + type ReservedXcmpWeight = ReservedXcmpWeight; + type XvmTxWeightLimit = XvmTxWeightLimit; + type InvalidEvmTransactionError = pallet_ethereum::InvalidTransactionWrapper; + type ValidatedTransaction = pallet_ethereum::ValidatedTransaction; + type AccountMapping = HashedAccountMapping; + type XcmTransactOrigin = pallet_ethereum_checked::EnsureXcmEthereumTx; + type WeightInfo = pallet_ethereum_checked::weights::SubstrateWeight; } -use pallet_xvm::{evm, wasm}; -use sp_core::U256; -use sp_runtime::{traits::BlakeTwo256, Permill}; impl pallet_xvm::Config for Runtime { - type SyncVM = (evm::EVM, wasm::WASM); - type AsyncVM = (); - type RuntimeEvent = RuntimeEvent; + type GasWeightMapping = pallet_evm::FixedGasWeightMapping; + type AccountMapping = HashedAccountMapping; + type EthereumTransact = EthereumChecked; + type WeightInfo = pallet_xvm::weights::SubstrateWeight; } parameter_types! { diff --git a/runtime/sydney/src/ink.rs b/runtime/sydney/src/ink.rs index a9dc2521..2f6cc8dc 100644 --- a/runtime/sydney/src/ink.rs +++ b/runtime/sydney/src/ink.rs @@ -1,5 +1,5 @@ use super::{Balances, RandomnessCollectiveFlip, Runtime, RuntimeCall, RuntimeEvent, Timestamp}; -use crate::{deposit, prelude::*, Balance, BlockWeights, AVERAGE_ON_INITIALIZE_RATIO}; +use crate::{deposit, prelude::*, Balance, BlockWeights, Xvm, AVERAGE_ON_INITIALIZE_RATIO}; pub use frame_support::dispatch::DispatchClass; use frame_support::weights::Weight; @@ -8,7 +8,7 @@ use pallet_contracts::chain_extension::RegisteredChainExtension; pub use pallet_chain_extension_xvm::XvmExtension; use sp_core::{ConstBool, ConstU32}; -impl RegisteredChainExtension for XvmExtension { +impl RegisteredChainExtension for XvmExtension { const ID: u16 = 1; } @@ -18,7 +18,8 @@ parameter_types! { pub const MaxValueSize: u32 = 16 * 1024; // The lazy deletion runs inside on_initialize. pub DeletionWeightLimit: Weight = AVERAGE_ON_INITIALIZE_RATIO * BlockWeights::get().max_block; - + // Fallback value if storage deposit limit not set by the user + pub const DefaultDepositLimit: Balance = deposit(16, 16 * 1024); pub Schedule: pallet_contracts::Schedule = Default::default(); } @@ -40,12 +41,11 @@ impl pallet_contracts::Config for Runtime { type CallFilter = frame_support::traits::Nothing; type DepositPerItem = DepositPerItem; type DepositPerByte = DepositPerByte; + type DefaultDepositLimit = DefaultDepositLimit; type CallStack = [pallet_contracts::Frame; 5]; type WeightPrice = pallet_transaction_payment::Pallet; type WeightInfo = pallet_contracts::weights::SubstrateWeight; - type ChainExtension = XvmExtension; - type DeletionQueueDepth = ConstU32<128>; - type DeletionWeightLimit = DeletionWeightLimit; + type ChainExtension = XvmExtension; type Schedule = Schedule; type AddressGenerator = pallet_contracts::DefaultAddressGenerator; type MaxCodeLen = ConstU32<{ 123 * 1024 }>; diff --git a/runtime/sydney/src/lib.rs b/runtime/sydney/src/lib.rs index acb33fd1..fe648510 100644 --- a/runtime/sydney/src/lib.rs +++ b/runtime/sydney/src/lib.rs @@ -35,7 +35,7 @@ use sp_api::impl_runtime_apis; pub use sp_consensus_aura::sr25519::AuthorityId as AuraId; use sp_core::{ crypto::{ByteArray, KeyTypeId}, - OpaqueMetadata, H160, H256, U256, + Get, OpaqueMetadata, H160, H256, U256, }; use sp_runtime::{ generic, impl_opaque_keys, @@ -66,7 +66,7 @@ pub use frame_support::{ parameter_types, traits::{ ConstBool, ConstU128, ConstU32, ConstU8, FindAuthor, Imbalance, KeyOwnerProofSystem, - Randomness, + OnFinalize, Randomness, }, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, WEIGHT_REF_TIME_PER_SECOND}, @@ -84,7 +84,7 @@ pub use pallet_staking::StakerStatus; pub use runtime_common::chain_spec::{self, RuntimeConfig}; pub use runtime_common::precompiles::GoldenGatePrecompiles; -pub type Precompiles = GoldenGatePrecompiles; +pub type Precompiles = GoldenGatePrecompiles; /// Type of block number. pub type BlockNumber = u32; @@ -189,13 +189,18 @@ pub type Executive = frame_executive::Executive< AllPalletsWithSystem, >; +type EventRecord = frame_system::EventRecord< + ::RuntimeEvent, + ::Hash, +>; + /// Constant values used within the runtime. pub const MILLIGGX: Balance = 1_000_000_000_000_000; pub const GGX: Balance = 1000 * MILLIGGX; pub const KGGX: Balance = 1000 * GGX; pub const EXISTENTIAL_DEPOSIT: Balance = GGX; -/// Charge fee for stored bytes and items. +/// Charge fee for stored bytes and Sitems. pub const fn deposit(items: u32, bytes: u32) -> Balance { (items as Balance + bytes as Balance) * MILLIGGX / EXISTENTIAL_DEPOSIT } @@ -384,6 +389,10 @@ impl pallet_balances::Config for Runtime { type MaxLocks = MaxLocks; type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl pallet_transaction_payment::Config for Runtime { @@ -425,6 +434,7 @@ impl pallet_im_online::Config for Runtime { impl pallet_sudo::Config for Runtime { type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; + type WeightInfo = pallet_sudo::weights::SubstrateWeight; } parameter_types! { @@ -489,6 +499,7 @@ construct_runtime!( DynamicFee: pallet_dynamic_fee, BaseFee: pallet_base_fee, HotfixSufficients: pallet_hotfix_sufficients, + EthereumChecked: pallet_ethereum_checked, // GGX pallets CurrencyManager: currency, @@ -579,7 +590,7 @@ mod benches { use fp_rpc::TransactionStatus; use pallet_ethereum::{Call::transact, Transaction as EthereumTransaction}; -use pallet_evm::{Account as EVMAccount, FeeCalculator, Runner}; +use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, Runner}; impl_runtime_apis! { impl sp_api::Core for Runtime { @@ -600,6 +611,14 @@ impl_runtime_apis! { fn metadata() -> OpaqueMetadata { OpaqueMetadata::new(Runtime::metadata().into()) } + + fn metadata_at_version(version: u32) -> Option { + Runtime::metadata_at_version(version) + } + + fn metadata_versions() -> sp_std::vec::Vec { + Runtime::metadata_versions() + } } impl sp_block_builder::BlockBuilder for Runtime { @@ -657,7 +676,7 @@ impl_runtime_apis! { impl fp_rpc::EthereumRuntimeRPCApi for Runtime { fn chain_id() -> u64 { - ::ChainId::get() + EVMChainId::get() } fn account_basic(address: H160) -> EVMAccount { @@ -706,6 +725,41 @@ impl_runtime_apis! { let is_transactional = false; let validate = true; + // Reused approach from Moonbeam since Frontier implementation doesn't support this + let mut estimated_transaction_len = data.len() + + // to: 20 + // from: 20 + // value: 32 + // gas_limit: 32 + // nonce: 32 + // 1 byte transaction action variant + // chain id 8 bytes + // 65 bytes signature + 210; + if max_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if max_priority_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if access_list.is_some() { + estimated_transaction_len += access_list.encoded_size(); + } + + let gas_limit = gas_limit.min(u64::MAX.into()).low_u64(); + let without_base_extrinsic_weight = true; + + let (weight_limit, proof_size_base_cost) = + match ::GasWeightMapping::gas_to_weight( + gas_limit, + without_base_extrinsic_weight + ) { + weight_limit if weight_limit.proof_size() > 0 => { + (Some(weight_limit), Some(estimated_transaction_len as u64)) + } + _ => (None, None), + }; + ::Runner::call( from, to, @@ -715,9 +769,11 @@ impl_runtime_apis! { max_fee_per_gas, max_priority_fee_per_gas, nonce, - access_list.unwrap_or_default(), + Vec::new(), is_transactional, validate, + weight_limit, + proof_size_base_cost, config .as_ref() .unwrap_or_else(|| ::config()), @@ -746,6 +802,42 @@ impl_runtime_apis! { let is_transactional = false; let validate = true; + + // Reused approach from Moonbeam since Frontier implementation doesn't support this + let mut estimated_transaction_len = data.len() + + // to: 20 + // from: 20 + // value: 32 + // gas_limit: 32 + // nonce: 32 + // 1 byte transaction action variant + // chain id 8 bytes + // 65 bytes signature + 210; + if max_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if max_priority_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if access_list.is_some() { + estimated_transaction_len += access_list.encoded_size(); + } + + let gas_limit = gas_limit.min(u64::MAX.into()).low_u64(); + let without_base_extrinsic_weight = true; + + let (weight_limit, proof_size_base_cost) = + match ::GasWeightMapping::gas_to_weight( + gas_limit, + without_base_extrinsic_weight + ) { + weight_limit if weight_limit.proof_size() > 0 => { + (Some(weight_limit), Some(estimated_transaction_len as u64)) + } + _ => (None, None), + }; + #[allow(clippy::or_fun_call)] // suggestion not helpful here ::Runner::create( from, @@ -755,9 +847,11 @@ impl_runtime_apis! { max_fee_per_gas, max_priority_fee_per_gas, nonce, - access_list.unwrap_or_default(), + Vec::new(), is_transactional, validate, + weight_limit, + proof_size_base_cost, config .as_ref() .unwrap_or(::config()), @@ -803,6 +897,21 @@ impl_runtime_apis! { } fn gas_limit_multiplier_support() {} + + fn pending_block( + xts: Vec<::Extrinsic>, + ) -> (Option, Option>) { + for ext in xts.into_iter() { + let _ = Executive::apply_extrinsic(ext); + } + + Ethereum::on_finalize(System::block_number() + 1); + + ( + pallet_ethereum::CurrentBlock::::get(), + pallet_ethereum::CurrentTransactionStatuses::::get() + ) + } } impl fp_rpc::ConvertTransactionRuntimeApi for Runtime { @@ -946,64 +1055,70 @@ impl_runtime_apis! { } } - impl pallet_contracts::ContractsApi< - Block, AccountId, Balance, BlockNumber, Hash, -> - for Runtime -{ - fn call( - origin: AccountId, - dest: AccountId, - value: Balance, - gas_limit: Option, - storage_deposit_limit: Option, - input_data: Vec, - ) -> pallet_contracts_primitives::ContractExecResult { - let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); - Contracts::bare_call( - origin, - dest, - value, - gas_limit, - storage_deposit_limit, - input_data, - true, - pallet_contracts::Determinism::Deterministic, - ) - } + impl pallet_contracts::ContractsApi for Runtime { + fn call( + origin: AccountId, + dest: AccountId, + value: Balance, + gas_limit: Option, + storage_deposit_limit: Option, + input_data: Vec, + ) -> pallet_contracts_primitives::ContractExecResult { + let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); + Contracts::bare_call( + origin, + dest, + value, + gas_limit, + storage_deposit_limit, + input_data, + pallet_contracts::DebugInfo::UnsafeDebug, + pallet_contracts::CollectEvents::UnsafeCollect, + pallet_contracts::Determinism::Enforced, + ) + } - fn instantiate( - origin: AccountId, - value: Balance, - gas_limit: Option, - storage_deposit_limit: Option, - code: pallet_contracts_primitives::Code, - data: Vec, - salt: Vec, - ) -> pallet_contracts_primitives::ContractInstantiateResult - { - let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); - Contracts::bare_instantiate(origin, value, gas_limit, storage_deposit_limit, code, data, salt, true) - } + fn instantiate( + origin: AccountId, + value: Balance, + gas_limit: Option, + storage_deposit_limit: Option, + code: pallet_contracts_primitives::Code, + data: Vec, + salt: Vec, + ) -> pallet_contracts_primitives::ContractInstantiateResult { + let gas_limit = gas_limit.unwrap_or(BlockWeights::get().max_block); + Contracts::bare_instantiate( + origin, + value, + gas_limit, + storage_deposit_limit, + code, + data, + salt, + pallet_contracts::DebugInfo::UnsafeDebug, + pallet_contracts::CollectEvents::UnsafeCollect, + ) + } - fn upload_code( - origin: AccountId, - code: Vec, - storage_deposit_limit: Option, - determinism: pallet_contracts::Determinism, - ) -> pallet_contracts_primitives::CodeUploadResult - { - Contracts::bare_upload_code(origin, code, storage_deposit_limit, determinism) - } + fn upload_code( + origin: AccountId, + code: Vec, + storage_deposit_limit: Option, + determinism: pallet_contracts::Determinism, + ) -> pallet_contracts_primitives::CodeUploadResult + { + Contracts::bare_upload_code(origin, code, storage_deposit_limit, determinism) + } - fn get_storage( - address: AccountId, - key: Vec, - ) -> pallet_contracts_primitives::GetStorageResult { - Contracts::get_storage(address, key) + fn get_storage( + address: AccountId, + key: Vec, + ) -> pallet_contracts_primitives::GetStorageResult { + Contracts::get_storage(address, key) + } } } -} #[cfg(test)] mod tests { diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 1df6ebdd..b274f30e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,5 +1,5 @@ [toolchain] -channel = "nightly-2022-12-20" +channel = "nightly-2023-08-19" components = [ "clippy", "llvm-tools-preview", From 0e1b765c396326e6171dfc709c7cf7a0262b06c1 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Thu, 7 Sep 2023 20:42:11 +0800 Subject: [PATCH 02/35] update substrate-ibc.git branch to polkadot-v0.9.43 --- Cargo.lock | 330 ++++++++++++++++++++++++++--------------------------- Cargo.toml | 6 +- 2 files changed, 168 insertions(+), 168 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2d7616ad..59ea4435 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3503,25 +3503,25 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-support-procedural 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "linregress", "log", "parity-scale-codec 3.6.5", "paste", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-api 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-application-crypto 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "static_assertions", ] @@ -3656,12 +3656,12 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "bitflags 1.3.2", "environmental", "frame-metadata", - "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support-procedural 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "impl-trait-for-tuples", "k256 0.11.6", "log", @@ -3671,18 +3671,18 @@ dependencies = [ "scale-info", "serde", "smallvec 1.11.0", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-api 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-staking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "tt-call", ] @@ -3723,12 +3723,12 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "Inflector", "cfg-expr 0.10.3", "derive-syn-parse", - "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "itertools", "proc-macro2", "quote", @@ -3754,9 +3754,9 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ - "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "proc-macro-crate 1.1.3", "proc-macro2", "quote", @@ -3778,7 +3778,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "proc-macro2", "quote", @@ -3798,19 +3798,19 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "log", "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-version 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -7558,46 +7558,46 @@ dependencies = [ name = "pallet-ibc" version = "4.0.0-dev" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "log", "pallet-ibc-utils", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "pallet-timestamp 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "parity-scale-codec 3.6.5", "scale-info", "serde", "serde_json", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] name = "pallet-ibc-utils" version = "0.1.0" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "parity-scale-codec 3.6.5", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] name = "pallet-ics20-transfer" version = "4.0.0-dev" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "hex", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", @@ -7607,9 +7607,9 @@ dependencies = [ "primitive-types 0.12.1", "scale-info", "sha2 0.10.7", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "subtle-encoding", ] @@ -7890,19 +7890,19 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "log", "parity-scale-codec 3.6.5", "scale-info", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-timestamp 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -11621,18 +11621,18 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "hash-db 0.16.0", "log", "parity-scale-codec 3.6.5", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-api-proc-macro 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-version 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", ] @@ -11659,7 +11659,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "Inflector", "blake2", @@ -11687,14 +11687,14 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -11713,14 +11713,14 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "integer-sqrt", "num-traits", "parity-scale-codec 3.6.5", "scale-info", "serde", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "static_assertions", ] @@ -11887,7 +11887,7 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "array-bytes", "base58", @@ -11914,12 +11914,12 @@ dependencies = [ "secp256k1 0.24.3", "secrecy", "serde", - "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core-hashing 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "ss58-registry", "substrate-bip39", "thiserror", @@ -11974,14 +11974,14 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.7", "sha3 0.10.8", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "twox-hash", ] @@ -12017,11 +12017,11 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "proc-macro2", "quote", - "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core-hashing 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "syn 1.0.109", ] @@ -12048,7 +12048,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "proc-macro2", "quote", @@ -12068,12 +12068,12 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "environmental", "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -12090,15 +12090,15 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec 3.6.5", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", ] @@ -12120,7 +12120,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "bytes", "ed25519 1.5.3", @@ -12130,14 +12130,14 @@ dependencies = [ "log", "parity-scale-codec 3.6.5", "secp256k1 0.24.3", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-keystore 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "tracing", "tracing-core", ] @@ -12182,7 +12182,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "async-trait", "futures", @@ -12190,8 +12190,8 @@ dependencies = [ "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "schnorrkel", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", ] @@ -12274,7 +12274,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "backtrace", "lazy_static", @@ -12304,7 +12304,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "either", "hash256-std-hasher", @@ -12315,12 +12315,12 @@ dependencies = [ "rand 0.8.5", "scale-info", "serde", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-application-crypto 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -12348,18 +12348,18 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "bytes", "impl-trait-for-tuples", "parity-scale-codec 3.6.5", "primitive-types 0.12.1", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-wasm-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "static_assertions", ] @@ -12384,7 +12384,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "Inflector", "proc-macro-crate 1.1.3", @@ -12422,13 +12422,13 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "parity-scale-codec 3.6.5", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -12447,7 +12447,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "hash-db 0.16.0", "log", @@ -12455,11 +12455,11 @@ dependencies = [ "parking_lot 0.12.1", "rand 0.8.5", "smallvec 1.11.0", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-panic-handler 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", "tracing", ] @@ -12505,7 +12505,7 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" [[package]] name = "sp-std" @@ -12521,14 +12521,14 @@ checksum = "53458e3c57df53698b3401ec0934bea8e8cfce034816873c0b0abbd83d7bac0d" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec 3.6.5", "ref-cast", "serde", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] @@ -12547,15 +12547,15 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "async-trait", "futures-timer", "log", "parity-scale-codec 3.6.5", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", ] @@ -12577,10 +12577,10 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "tracing", "tracing-core", "tracing-subscriber", @@ -12626,7 +12626,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "ahash 0.8.3", "hash-db 0.16.0", @@ -12638,8 +12638,8 @@ dependencies = [ "parking_lot 0.12.1", "scale-info", "schnellru", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", "tracing", "trie-db", @@ -12672,17 +12672,17 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "impl-serde 0.4.0", "parity-scale-codec 3.6.5", "parity-wasm", "scale-info", "serde", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-version-proc-macro 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "thiserror", ] @@ -12706,7 +12706,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "parity-scale-codec 3.6.5", "proc-macro2", @@ -12728,13 +12728,13 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "anyhow", "impl-trait-for-tuples", "log", "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", "wasmi 0.13.2", "wasmtime 6.0.2", ] @@ -12756,16 +12756,16 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40#98f2e3451c9143278ec53c6718940aeabcd3b68a" +source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "parity-scale-codec 3.6.5", "scale-info", "serde", "smallvec 1.11.0", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.40)", + "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 9a22a65d..16cfeeee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -211,9 +211,9 @@ ibc = { version = "0.28.0", default-features = false, features = ["parity-scale- ibc-proto = { version = "0.25.0", default-features = false, features = [ "parity-scale-codec", ], git = "https://github.com/octopus-network/ibc-proto-rs", branch = "ibc" } -pallet-ibc = { default-features = false, git = "https://github.com/ibc-test/substrate-ibc.git", branch = "icf-m3" } -pallet-ibc-utils = { git = "https://github.com/ibc-test/substrate-ibc.git", default-features = false, branch = "icf-m3" } -pallet-ics20-transfer = { default-features = false, git = "https://github.com/ibc-test/substrate-ibc.git", branch = "icf-m3" } +pallet-ibc = { default-features = false, git = "https://github.com/ibc-test/substrate-ibc.git", branch = "polkadot-v0.9.43" } +pallet-ibc-utils = { git = "https://github.com/ibc-test/substrate-ibc.git", default-features = false, branch = "polkadot-v0.9.43" } +pallet-ics20-transfer = { default-features = false, git = "https://github.com/ibc-test/substrate-ibc.git", branch = "polkadot-v0.9.43" } prost = { version = "0.11", default-features = false } # zk precompile From 976f86a86d89be1fecc68ca8311ebf2af72b5d9a Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 09:48:35 +0800 Subject: [PATCH 03/35] update web3 version --- Cargo.lock | 5499 ++++++++++++++++++++++++++-------------------------- Cargo.toml | 7 +- 2 files changed, 2799 insertions(+), 2707 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 59ea4435..dfc29b82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,15 +12,6 @@ dependencies = [ "regex", ] -[[package]] -name = "addr2line" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" -dependencies = [ - "gimli 0.26.2", -] - [[package]] name = "addr2line" version = "0.19.0" @@ -91,7 +82,7 @@ version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cipher 0.3.0", "cpufeatures", "opaque-debug 0.3.0", @@ -103,7 +94,7 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cipher 0.4.4", "cpufeatures", ] @@ -164,7 +155,7 @@ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ "getrandom 0.2.10", "once_cell", - "version_check", + "version_check 0.9.4", ] [[package]] @@ -173,10 +164,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "getrandom 0.2.10", "once_cell", - "version_check", + "version_check 0.9.4", ] [[package]] @@ -209,7 +200,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -322,7 +313,7 @@ dependencies = [ "ark-std", "derivative", "hashbrown 0.13.2", - "itertools", + "itertools 0.10.5", "num-traits", "zeroize", ] @@ -339,7 +330,7 @@ dependencies = [ "ark-std", "derivative", "digest 0.10.7", - "itertools", + "itertools 0.10.5", "num-bigint", "num-traits", "paste", @@ -475,6 +466,15 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" +[[package]] +name = "arrayvec" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" +dependencies = [ + "nodrop", +] + [[package]] name = "arrayvec" version = "0.5.2" @@ -592,20 +592,20 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", "impl-trait-for-tuples", - "log", + "log 0.4.20", "orml-traits", "pallet-assets", "pallet-evm", "pallet-evm-precompile-assets-erc20", "pallet-xc-asset-config", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "xcm", "xcm-builder", "xcm-executor", @@ -629,15 +629,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" dependencies = [ "async-lock", - "autocfg", - "cfg-if", + "autocfg 1.1.0", + "cfg-if 1.0.0", "concurrent-queue", "futures-lite", - "log", + "log 0.4.20", "parking", "polling", "rustix 0.37.23", - "slab", + "slab 0.4.9", "socket2 0.4.9", "waker-fn", ] @@ -668,7 +668,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" dependencies = [ - "futures", + "futures 0.3.28", "pharos", "rustc_version 0.4.0", ] @@ -679,7 +679,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" dependencies = [ - "bytes", + "bytes 1.5.0", "futures-sink", "futures-util", "memchr", @@ -700,7 +700,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ "hermit-abi 0.1.19", "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -715,6 +715,15 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "autocfg" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" +dependencies = [ + "autocfg 1.1.0", +] + [[package]] name = "autocfg" version = "1.1.0" @@ -729,7 +738,7 @@ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ "addr2line 0.21.0", "cc", - "cfg-if", + "cfg-if 1.0.0", "libc", "miniz_oxide", "object 0.32.1", @@ -760,6 +769,25 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" +[[package]] +name = "base64" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" +dependencies = [ + "byteorder", + "safemem", +] + +[[package]] +name = "base64" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +dependencies = [ + "byteorder", +] + [[package]] name = "base64" version = "0.13.1" @@ -799,7 +827,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log", + "log 0.4.20", ] [[package]] @@ -823,7 +851,7 @@ dependencies = [ "lazy_static", "lazycell", "peeking_take_while", - "prettyplease 0.2.14", + "prettyplease 0.2.15", "proc-macro2", "quote", "regex", @@ -847,6 +875,12 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" +[[package]] +name = "bitflags" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" + [[package]] name = "bitflags" version = "1.3.2" @@ -859,28 +893,16 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" -[[package]] -name = "bitvec" -version = "0.20.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848" -dependencies = [ - "funty 1.1.0", - "radium 0.6.2", - "tap", - "wyz 0.2.0", -] - [[package]] name = "bitvec" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" dependencies = [ - "funty 2.0.0", - "radium 0.7.0", + "funty", + "radium", "tap", - "wyz 0.5.1", + "wyz", ] [[package]] @@ -923,7 +945,7 @@ dependencies = [ "arrayref", "arrayvec 0.7.4", "cc", - "cfg-if", + "cfg-if 1.0.0", "constant_time_eq 0.3.0", ] @@ -945,7 +967,6 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ - "block-padding 0.2.1", "generic-array 0.14.7", ] @@ -1034,8 +1055,8 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb5b05133427c07c4776906f673ccf36c21b102c9829c641a5b56bd151d44fd6" dependencies = [ - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", ] @@ -1108,9 +1129,20 @@ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" [[package]] name = "bytes" -version = "1.4.0" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +dependencies = [ + "byteorder", + "either", + "iovec", +] + +[[package]] +name = "bytes" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" +checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" dependencies = [ "serde", ] @@ -1214,21 +1246,18 @@ dependencies = [ [[package]] name = "cfg-expr" -version = "0.10.3" +version = "0.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0aacacf4d96c24b2ad6eb8ee6df040e4f27b0d0b39a5710c30091baa830485db" +checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" dependencies = [ "smallvec 1.11.0", ] [[package]] -name = "cfg-expr" -version = "0.15.4" +name = "cfg-if" +version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b40ccee03b5175c18cde8f37e7d2a33bcef6f8ec8f7cc0d81090d1bb380949c9" -dependencies = [ - "smallvec 1.11.0", -] +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" [[package]] name = "cfg-if" @@ -1248,7 +1277,7 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cipher 0.3.0", "cpufeatures", "zeroize", @@ -1269,15 +1298,14 @@ dependencies = [ [[package]] name = "chrono" -version = "0.4.29" +version = "0.4.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d87d9d13be47a5b7c3907137f1290b0459a7f80efb26be8c52afb11963bccb02" +checksum = "defd4e7873dbddba6c7c91e199c7fcb946abc4a6a4ac3195400bcfb01b5de877" dependencies = [ "android-tzdata", "iana-time-zone", "js-sys", "num-traits", - "time 0.1.45", "wasm-bindgen", "windows-targets 0.48.5", ] @@ -1329,7 +1357,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56ccb671c5921be8a84686e6212ca184cb1d7c51cadcdbfcbd1cc3f042f5dfb8" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -1383,6 +1411,15 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +dependencies = [ + "bitflags 1.3.2", +] + [[package]] name = "codespan-reporting" version = "0.11.1" @@ -1403,7 +1440,7 @@ dependencies = [ "coins-core", "digest 0.10.7", "hmac 0.12.1", - "k256 0.13.1", + "k256", "serde", "sha2 0.10.7", "thiserror", @@ -1415,7 +1452,7 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528" dependencies = [ - "bitvec 1.0.1", + "bitvec", "coins-bip32", "hmac 0.12.1", "once_cell", @@ -1468,7 +1505,7 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" dependencies = [ - "crossbeam-utils", + "crossbeam-utils 0.8.16", ] [[package]] @@ -1477,7 +1514,7 @@ version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08849ed393c907c90016652a01465a12d86361cd38ad2a7de026c56a520cc259" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "hex", "serde", @@ -1544,7 +1581,7 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -1562,7 +1599,7 @@ version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1277fbfa94bc82c8ec4af2ded3e639d49ca5f7f3c7eeab2c66accd135ece4e70" dependencies = [ - "cranelift-entity 0.95.1", + "cranelift-entity", ] [[package]] @@ -1575,11 +1612,11 @@ dependencies = [ "cranelift-bforest", "cranelift-codegen-meta", "cranelift-codegen-shared", - "cranelift-entity 0.95.1", + "cranelift-entity", "cranelift-isle", "gimli 0.27.3", "hashbrown 0.13.2", - "log", + "log 0.4.20", "regalloc2", "smallvec 1.11.0", "target-lexicon", @@ -1600,15 +1637,6 @@ version = "0.95.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd82b8b376247834b59ed9bdc0ddeb50f517452827d4a11bccf5937b213748b8" -[[package]] -name = "cranelift-entity" -version = "0.93.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f42ea692c7b450ad18b8c9889661505d51c09ec4380cf1c2d278dbb2da22cae1" -dependencies = [ - "serde", -] - [[package]] name = "cranelift-entity" version = "0.95.1" @@ -1625,7 +1653,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" dependencies = [ "cranelift-codegen", - "log", + "log 0.4.20", "smallvec 1.11.0", "target-lexicon", ] @@ -1654,13 +1682,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff3220489a3d928ad91e59dd7aeaa8b3de18afb554a6211213673a71c90737ac" dependencies = [ "cranelift-codegen", - "cranelift-entity 0.95.1", + "cranelift-entity", "cranelift-frontend", - "itertools", - "log", + "itertools 0.10.5", + "log 0.4.20", "smallvec 1.11.0", - "wasmparser 0.102.0", - "wasmtime-types 8.0.1", + "wasmparser", + "wasmtime-types", ] [[package]] @@ -1684,7 +1712,7 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -1693,8 +1721,19 @@ version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" dependencies = [ - "cfg-if", - "crossbeam-utils", + "cfg-if 1.0.0", + "crossbeam-utils 0.8.16", +] + +[[package]] +name = "crossbeam-deque" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" +dependencies = [ + "crossbeam-epoch 0.8.2", + "crossbeam-utils 0.7.2", + "maybe-uninit", ] [[package]] @@ -1703,9 +1742,24 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" dependencies = [ - "cfg-if", - "crossbeam-epoch", - "crossbeam-utils", + "cfg-if 1.0.0", + "crossbeam-epoch 0.9.15", + "crossbeam-utils 0.8.16", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" +dependencies = [ + "autocfg 1.1.0", + "cfg-if 0.1.10", + "crossbeam-utils 0.7.2", + "lazy_static", + "maybe-uninit", + "memoffset 0.5.6", + "scopeguard 1.2.0", ] [[package]] @@ -1714,11 +1768,33 @@ version = "0.9.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" dependencies = [ - "autocfg", - "cfg-if", - "crossbeam-utils", + "autocfg 1.1.0", + "cfg-if 1.0.0", + "crossbeam-utils 0.8.16", "memoffset 0.9.0", - "scopeguard", + "scopeguard 1.2.0", +] + +[[package]] +name = "crossbeam-queue" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" +dependencies = [ + "cfg-if 0.1.10", + "crossbeam-utils 0.7.2", + "maybe-uninit", +] + +[[package]] +name = "crossbeam-utils" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" +dependencies = [ + "autocfg 1.1.0", + "cfg-if 0.1.10", + "lazy_static", ] [[package]] @@ -1727,9 +1803,15 @@ version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" + [[package]] name = "crunchy" version = "0.2.2" @@ -1841,7 +1923,7 @@ version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "622178105f911d937a42cdb140730ba4a3ed2becd8ae6ce39c7d28b5d75d4588" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", @@ -2175,7 +2257,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "dirs-sys-next", ] @@ -2194,7 +2276,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "dirs-sys-next", ] @@ -2206,7 +2288,7 @@ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" dependencies = [ "libc", "redox_users", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2229,7 +2311,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -2439,7 +2521,7 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" dependencies = [ - "log", + "log 0.4.20", ] [[package]] @@ -2448,7 +2530,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -2458,10 +2540,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0be7b2ac146c1f99fe245c02d16af0696450d8e06c135db75e10eeb9e642c20d" dependencies = [ "base64 0.21.3", - "bytes", + "bytes 1.5.0", "hex", - "k256 0.13.1", - "log", + "k256", + "log 0.4.20", "rand 0.8.5", "rlp", "serde", @@ -2510,7 +2592,7 @@ checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" dependencies = [ "humantime", "is-terminal", - "log", + "log 0.4.20", "regex", "termcolor", ] @@ -2557,6 +2639,16 @@ dependencies = [ "libc", ] +[[package]] +name = "error-chain" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" +dependencies = [ + "backtrace", + "version_check 0.9.4", +] + [[package]] name = "eth-keystore" version = "0.5.0" @@ -2581,17 +2673,17 @@ dependencies = [ [[package]] name = "ethabi" -version = "16.0.0" +version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c98847055d934070b90e806e12d3936b787d0a115068981c1d8dfd5dfef5a5" +checksum = "8eb362fde43ed0b50b258bb0c72b72b3dccfd29f8de9506295eaf9251c49ca31" dependencies = [ - "ethereum-types 0.12.1", - "hex", + "error-chain", + "ethereum-types 0.4.2", + "rustc-hex 2.1.0", "serde", + "serde_derive", "serde_json", - "sha3 0.9.1", - "thiserror", - "uint", + "tiny-keccak 1.5.0", ] [[package]] @@ -2608,20 +2700,20 @@ dependencies = [ "serde_json", "sha3 0.10.8", "thiserror", - "uint", + "uint 0.9.5", ] [[package]] name = "ethbloom" -version = "0.11.1" +version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfb684ac8fa8f6c5759f788862bb22ec6fe3cb392f6bfd08e3c64b603661e3f8" +checksum = "a6294da962646baa738414e8e718d1a1f0360a51d92de89ccbf91870418f5360" dependencies = [ - "crunchy", - "fixed-hash 0.7.0", - "impl-rlp", - "impl-serde 0.3.2", - "tiny-keccak", + "crunchy 0.1.6", + "ethereum-types-serialize", + "fixed-hash 0.2.5", + "serde", + "tiny-keccak 1.5.0", ] [[package]] @@ -2630,13 +2722,13 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" dependencies = [ - "crunchy", + "crunchy 0.2.2", "fixed-hash 0.8.0", - "impl-codec 0.6.0", + "impl-codec", "impl-rlp", - "impl-serde 0.4.0", + "impl-serde", "scale-info", - "tiny-keccak", + "tiny-keccak 2.0.2", ] [[package]] @@ -2645,11 +2737,11 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a89fb87a9e103f71b903b80b670200b54cc67a07578f070681f1fffb7396fb7" dependencies = [ - "bytes", + "bytes 1.5.0", "ethereum-types 0.14.1", "hash-db 0.15.2", "hash256-std-hasher", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "rlp", "scale-info", "serde", @@ -2659,16 +2751,16 @@ dependencies = [ [[package]] name = "ethereum-types" -version = "0.12.1" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05136f7057fe789f06e6d41d07b34e6f70d8c86e5693b60f97aaa6553553bdaf" +checksum = "6e742184dc63a01c8ea0637369f8faa27c40f537949908a237f95c05e68d2c96" dependencies = [ - "ethbloom 0.11.1", - "fixed-hash 0.7.0", - "impl-rlp", - "impl-serde 0.3.2", - "primitive-types 0.10.1", - "uint", + "crunchy 0.1.6", + "ethbloom 0.5.3", + "ethereum-types-serialize", + "fixed-hash 0.2.5", + "serde", + "uint 0.4.1", ] [[package]] @@ -2679,19 +2771,28 @@ checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" dependencies = [ "ethbloom 0.13.0", "fixed-hash 0.8.0", - "impl-codec 0.6.0", + "impl-codec", "impl-rlp", - "impl-serde 0.4.0", - "primitive-types 0.12.1", + "impl-serde", + "primitive-types", "scale-info", - "uint", + "uint 0.9.5", +] + +[[package]] +name = "ethereum-types-serialize" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1873d77b32bc1891a79dad925f2acbc318ee942b38b9110f9dbc5fbeffcea350" +dependencies = [ + "serde", ] [[package]] name = "ethers" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ba3fd516c15a9a587135229466dbbfc85796de55c5660afbbb1b1c78517d85c" +checksum = "1ad13497f6e0a24292fc7b408e30d22fe9dc262da1f40d7b542c3a44e7fc0476" dependencies = [ "ethers-addressbook", "ethers-contract", @@ -2705,9 +2806,9 @@ dependencies = [ [[package]] name = "ethers-addressbook" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0245617f11b8178fa50b52e433e2c34ac69f39116b62c8be2437decf2edf1986" +checksum = "c6e9e8acd0ed348403cc73a670c24daba3226c40b98dc1a41903766b3ab6240a" dependencies = [ "ethers-core", "once_cell", @@ -2717,9 +2818,9 @@ dependencies = [ [[package]] name = "ethers-contract" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02bb80fd2c22631a5eb8a02cbf373cc5fd86937fc966bb670b9a884580c8e71c" +checksum = "d79269278125006bb0552349c03593ffa9702112ca88bc7046cc669f148fb47c" dependencies = [ "const-hex", "ethers-contract-abigen", @@ -2736,9 +2837,9 @@ dependencies = [ [[package]] name = "ethers-contract-abigen" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22c54db0d393393e732a5b20273e4f8ab89f0cce501c84e75fab9c126799a6e6" +checksum = "ce95a43c939b2e4e2f3191c5ad4a1f279780b8a39139c9905b43a7433531e2ab" dependencies = [ "Inflector", "const-hex", @@ -2746,7 +2847,7 @@ dependencies = [ "ethers-core", "ethers-etherscan", "eyre", - "prettyplease 0.2.14", + "prettyplease 0.2.15", "proc-macro2", "quote", "regex", @@ -2760,9 +2861,9 @@ dependencies = [ [[package]] name = "ethers-contract-derive" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62ee4f216184a1304b707ed258f4f70aa40bf7e1522ab8963d127a8d516eaa1a" +checksum = "8e9ce44906fc871b3ee8c69a695ca7ec7f70e50cb379c9b9cb5e532269e492f6" dependencies = [ "Inflector", "const-hex", @@ -2776,19 +2877,19 @@ dependencies = [ [[package]] name = "ethers-core" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c29523f73c12753165781c6e5dc11c84d3e44c080a15f7c6cfbd70b514cb6f1" +checksum = "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" dependencies = [ "arrayvec 0.7.4", - "bytes", + "bytes 1.5.0", "cargo_metadata 0.17.0", "chrono", "const-hex", "elliptic-curve 0.13.5", "ethabi 18.0.0", "generic-array 0.14.7", - "k256 0.13.1", + "k256", "num_enum 0.7.0", "once_cell", "open-fastrlp", @@ -2800,15 +2901,15 @@ dependencies = [ "syn 2.0.31", "tempfile", "thiserror", - "tiny-keccak", + "tiny-keccak 2.0.2", "unicode-xid", ] [[package]] name = "ethers-etherscan" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4aab5af432b3fe5b7756b60df5c9ddeb85a13414575ad8a9acd707c24f0a77a5" +checksum = "0e53451ea4a8128fbce33966da71132cf9e1040dcfd2a2084fd7733ada7b2045" dependencies = [ "ethers-core", "reqwest", @@ -2821,9 +2922,9 @@ dependencies = [ [[package]] name = "ethers-middleware" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "356151d5ded56d4918146366abc9dfc9df367cf0096492a7a5477b21b7693615" +checksum = "473f1ccd0c793871bbc248729fa8df7e6d2981d6226e4343e3bbaa9281074d5d" dependencies = [ "async-trait", "auto_impl", @@ -2840,22 +2941,22 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio", + "tokio 1.32.0", "tracing", "tracing-futures", - "url", + "url 2.4.1", ] [[package]] name = "ethers-providers" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00c84664b294e47fc2860d6db0db0246f79c4c724e552549631bb9505b834bee" +checksum = "6838fa110e57d572336178b7c79e94ff88ef976306852d8cb87d9e5b1fc7c0b5" dependencies = [ "async-trait", "auto_impl", "base64 0.21.3", - "bytes", + "bytes 1.5.0", "const-hex", "enr", "ethers-core", @@ -2863,7 +2964,7 @@ dependencies = [ "futures-timer", "futures-util", "hashers", - "http", + "http 0.2.9", "instant", "jsonwebtoken", "once_cell", @@ -2872,11 +2973,11 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio", + "tokio 1.32.0", "tokio-tungstenite", "tracing", "tracing-futures", - "url", + "url 2.4.1", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -2885,9 +2986,9 @@ dependencies = [ [[package]] name = "ethers-signers" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "170b299698702ef1f53d2275af7d6d97409cfa4f9398ee9ff518f6bc9102d0ad" +checksum = "5ea44bec930f12292866166f9ddbea6aa76304850e4d8dcd66dc492b43d00ff1" dependencies = [ "async-trait", "coins-bip32", @@ -2904,11 +3005,11 @@ dependencies = [ [[package]] name = "ethers-solc" -version = "2.0.9" +version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66559c8f774712df303c907d087275a52a2046b256791aaa566d5abc8ea66731" +checksum = "de34e484e7ae3cab99fbfd013d6c5dc7f9013676a4e0e414d8b12e1213e8b3ba" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "const-hex", "dirs", "dunce", @@ -2927,8 +3028,8 @@ dependencies = [ "solang-parser", "svm-rs", "thiserror", - "tiny-keccak", - "tokio", + "tiny-keccak 2.0.2", + "tokio 1.32.0", "tracing", "walkdir", "yansi", @@ -2951,9 +3052,9 @@ dependencies = [ "evm-core", "evm-gasometer", "evm-runtime", - "log", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "log 0.4.20", + "parity-scale-codec", + "primitive-types", "rlp", "scale-info", "serde", @@ -2965,8 +3066,8 @@ name = "evm-core" version = "0.39.0" source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "scale-info", "serde", ] @@ -2979,7 +3080,7 @@ dependencies = [ "environmental", "evm-core", "evm-runtime", - "primitive-types 0.12.1", + "primitive-types", ] [[package]] @@ -2990,7 +3091,7 @@ dependencies = [ "auto_impl", "environmental", "evm-core", - "primitive-types 0.12.1", + "primitive-types", "sha3 0.10.8", ] @@ -3000,7 +3101,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5" dependencies = [ - "futures", + "futures 0.3.28", ] [[package]] @@ -3072,9 +3173,9 @@ dependencies = [ "sc-cli", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -3086,10 +3187,10 @@ dependencies = [ "fp-consensus", "fp-rpc", "sc-consensus", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-consensus", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "thiserror", ] @@ -3101,16 +3202,16 @@ dependencies = [ "async-trait", "fp-storage", "kvdb-rocksdb", - "log", + "log 0.4.20", "parity-db", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "sc-client-db", "smallvec 1.11.0", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-database", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -3122,16 +3223,16 @@ dependencies = [ "fc-storage", "fp-consensus", "fp-rpc", - "futures", + "futures 0.3.28", "futures-timer", - "log", + "log 0.4.20", "parking_lot 0.12.1", "sc-client-api", "sc-utils", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -3150,14 +3251,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "futures", + "futures 0.3.28", "hex", "jsonrpsee", "libsecp256k1", - "log", + "log 0.4.20", "lru 0.8.1", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prometheus", "rand 0.8.5", "rlp", @@ -3171,17 +3272,17 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-state-machine", + "sp-storage", "substrate-prometheus-endpoint", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -3192,7 +3293,7 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "jsonrpsee", - "rustc-hex", + "rustc-hex 2.1.0", "serde", "serde_json", ] @@ -3206,13 +3307,13 @@ dependencies = [ "ethereum-types 0.14.1", "fp-rpc", "fp-storage", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "sc-client-api", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-storage", ] [[package]] @@ -3257,7 +3358,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" dependencies = [ "env_logger", - "log", + "log 0.4.20", ] [[package]] @@ -3266,7 +3367,7 @@ version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "libc", "redox_syscall 0.3.5", "windows-sys 0.48.0", @@ -3279,25 +3380,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3" dependencies = [ "either", - "futures", + "futures 0.3.28", "futures-timer", - "log", + "log 0.4.20", "num-traits", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "scale-info", ] [[package]] name = "fixed-hash" -version = "0.7.0" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" +checksum = "7afe6ce860afb14422711595a7b26ada9ed7de2f43c0b2ab79d09ee196287273" dependencies = [ - "byteorder", - "rand 0.8.5", - "rustc-hex", - "static_assertions", + "heapsize", + "rand 0.4.6", + "rustc-hex 2.1.0", ] [[package]] @@ -3308,7 +3408,7 @@ checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", "rand 0.8.5", - "rustc-hex", + "rustc-hex 2.1.0", "static_assertions", ] @@ -3374,7 +3474,7 @@ name = "fork-tree" version = "3.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", ] [[package]] @@ -3383,7 +3483,7 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ - "percent-encoding", + "percent-encoding 2.3.0", ] [[package]] @@ -3392,17 +3492,17 @@ version = "1.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "hex", - "impl-serde 0.4.0", + "impl-serde", "libsecp256k1", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-runtime-interface", + "sp-std 5.0.0", ] [[package]] @@ -3411,10 +3511,10 @@ version = "2.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", - "parity-scale-codec 3.6.5", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -3423,8 +3523,8 @@ version = "1.0.0" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "async-trait", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", ] [[package]] @@ -3435,10 +3535,10 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", "num_enum 0.6.1", - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-std 5.0.0", ] [[package]] @@ -3447,13 +3547,13 @@ version = "3.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -3464,13 +3564,13 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-std 5.0.0", ] [[package]] @@ -3478,11 +3578,11 @@ name = "fp-self-contained" version = "1.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "parity-scale-codec", "scale-info", "serde", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -3490,7 +3590,7 @@ name = "fp-storage" version = "2.0.0" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "serde", ] @@ -3500,53 +3600,28 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" -[[package]] -name = "frame-benchmarking" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-support-procedural 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "linregress", - "log", - "parity-scale-codec 3.6.5", - "paste", - "scale-info", - "serde", - "sp-api 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-application-crypto 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "static_assertions", -] - [[package]] name = "frame-benchmarking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-support-procedural", + "frame-system", "linregress", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "paste", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", + "sp-runtime-interface", + "sp-std 5.0.0", + "sp-storage", "static_assertions", ] @@ -3560,18 +3635,18 @@ dependencies = [ "chrono", "clap", "comfy-table", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", + "frame-support", + "frame-system", "gethostname", "handlebars", - "itertools", + "itertools 0.10.5", "lazy_static", "linked-hash-map", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "rand 0.8.5", - "rand_pcg", + "rand_pcg 0.3.1", "sc-block-builder", "sc-cli", "sc-client-api", @@ -3581,18 +3656,18 @@ dependencies = [ "sc-sysinfo", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-database", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-state-machine", + "sp-std 5.0.0", + "sp-storage", + "sp-trie", "thiserror", "thousands", ] @@ -3614,15 +3689,15 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-election-provider-solution-type", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-core", "sp-npos-elections", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -3630,15 +3705,15 @@ name = "frame-executive" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-tracing", ] [[package]] @@ -3647,43 +3722,10 @@ version = "15.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ - "cfg-if", - "parity-scale-codec 3.6.5", - "scale-info", - "serde", -] - -[[package]] -name = "frame-support" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "bitflags 1.3.2", - "environmental", - "frame-metadata", - "frame-support-procedural 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "impl-trait-for-tuples", - "k256 0.11.6", - "log", - "once_cell", - "parity-scale-codec 3.6.5", - "paste", + "cfg-if 1.0.0", + "parity-scale-codec", "scale-info", "serde", - "smallvec 1.11.0", - "sp-api 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-staking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "tt-call", ] [[package]] @@ -3694,97 +3736,60 @@ dependencies = [ "bitflags 1.3.2", "environmental", "frame-metadata", - "frame-support-procedural 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support-procedural", "impl-trait-for-tuples", - "k256 0.13.1", - "log", + "k256", + "log 0.4.20", "once_cell", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "paste", "scale-info", "serde", "smallvec 1.11.0", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-arithmetic", + "sp-core", + "sp-core-hashing-proc-macro", + "sp-debug-derive", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-state-machine", + "sp-std 5.0.0", + "sp-tracing", + "sp-weights", "tt-call", ] -[[package]] -name = "frame-support-procedural" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "Inflector", - "cfg-expr 0.10.3", - "derive-syn-parse", - "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "itertools", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "frame-support-procedural" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "Inflector", - "cfg-expr 0.15.4", + "cfg-expr", "derive-syn-parse", - "frame-support-procedural-tools 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "itertools", + "frame-support-procedural-tools", + "itertools 0.10.5", "proc-macro-warning", "proc-macro2", "quote", "syn 2.0.31", ] -[[package]] -name = "frame-support-procedural-tools" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support-procedural-tools-derive 3.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support-procedural-tools-derive", "proc-macro-crate 1.1.3", "proc-macro2", "quote", "syn 2.0.31", ] -[[package]] -name = "frame-support-procedural-tools-derive" -version = "3.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" @@ -3795,41 +3800,23 @@ dependencies = [ "syn 2.0.31", ] -[[package]] -name = "frame-system" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "log", - "parity-scale-codec 3.6.5", - "scale-info", - "serde", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-version 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", -] - [[package]] name = "frame-system" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "cfg-if", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "cfg-if 1.0.0", + "frame-support", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-version", + "sp-weights", ] [[package]] @@ -3837,14 +3824,14 @@ name = "frame-system-benchmarking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -3852,8 +3839,8 @@ name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-api", ] [[package]] @@ -3869,7 +3856,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -3883,10 +3870,26 @@ dependencies = [ ] [[package]] -name = "funty" -version = "1.1.0" +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +dependencies = [ + "bitflags 1.3.2", + "fuchsia-zircon-sys", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" [[package]] name = "funty" @@ -3894,6 +3897,12 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" +[[package]] +name = "futures" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" + [[package]] name = "futures" version = "0.3.28" @@ -3925,6 +3934,16 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +dependencies = [ + "futures 0.1.31", + "num_cpus", +] + [[package]] name = "futures-executor" version = "0.3.28" @@ -4027,7 +4046,7 @@ dependencies = [ "memchr", "pin-project-lite 0.2.13", "pin-utils", - "slab", + "slab 0.4.9", ] [[package]] @@ -4055,7 +4074,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", - "version_check", + "version_check 0.9.4", "zeroize", ] @@ -4066,7 +4085,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4075,7 +4094,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "libc", "wasi 0.9.0+wasi-snapshot-preview1", ] @@ -4086,7 +4105,7 @@ version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", @@ -4112,15 +4131,15 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-benchmarking-cli", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "futures", + "frame-system", + "futures 0.3.28", "ggxchain-runtime-brooklyn", "ggxchain-runtime-sydney", "hex", "jsonrpsee", - "log", + "log 0.4.20", "mmr-gadget", "mmr-rpc", "nix 0.26.4", @@ -4128,7 +4147,7 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "pallet-transaction-payment-rpc", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "polkadot-rpc", "prometheus", "rand 0.8.5", @@ -4151,25 +4170,25 @@ dependencies = [ "sc-telemetry", "sc-transaction-pool", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus-aura", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", "sp-keyring", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-timestamp", "substrate-build-script-utils", "substrate-frame-rpc-system", "substrate-rpc-client", "substrate-test-utils", "subxt", "tempfile", - "tokio", - "tokio-util 0.7.8", + "tokio 1.32.0", + "tokio-util", "wait-timeout", "web3", ] @@ -4181,10 +4200,10 @@ dependencies = [ "astar-primitives", "fp-rpc", "fp-self-contained", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-executive", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", "ibc 0.28.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -4220,31 +4239,31 @@ dependencies = [ "pallet-proxy", "pallet-session", "pallet-sudo", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "pallet-timestamp", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-vesting", "pallet-xvm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prost", "runtime-common", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-consensus-aura", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-io", "sp-mmr-primitives", "sp-offchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking", + "sp-std 5.0.0", "sp-transaction-pool", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version", "substrate-wasm-builder", ] @@ -4256,14 +4275,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-self-contained", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-election-provider-support", "frame-executive", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "log", + "log 0.4.20", "pallet-aura", "pallet-authorship", "pallet-balances", @@ -4296,32 +4315,32 @@ dependencies = [ "pallet-society", "pallet-staking", "pallet-sudo", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "pallet-timestamp", "pallet-transaction-payment", "pallet-transaction-payment-rpc-runtime-api", "pallet-treasury", "pallet-vesting", "pallet-whitelist", "pallet-xvm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "paste", "runtime-common", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-arithmetic", "sp-block-builder", "sp-consensus-aura", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-io", "sp-offchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking", + "sp-std 5.0.0", "sp-transaction-pool", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-version", "substrate-account-filter", "substrate-wasm-builder", ] @@ -4346,16 +4365,6 @@ dependencies = [ "polyval 0.6.1", ] -[[package]] -name = "gimli" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" -dependencies = [ - "fallible-iterator", - "stable_deref_trait", -] - [[package]] name = "gimli" version = "0.27.3" @@ -4388,7 +4397,7 @@ dependencies = [ "aho-corasick", "bstr", "fnv", - "log", + "log 0.4.20", "regex", ] @@ -4428,20 +4437,38 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.21" +version = "0.1.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" dependencies = [ - "bytes", + "byteorder", + "bytes 0.4.12", "fnv", - "futures-core", + "futures 0.1.31", + "http 0.1.21", + "indexmap 1.9.3", + "log 0.4.20", + "slab 0.4.9", + "string", + "tokio-io", +] + +[[package]] +name = "h2" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" +dependencies = [ + "bytes 1.5.0", + "fnv", + "futures-core", "futures-sink", "futures-util", - "http", + "http 0.2.9", "indexmap 1.9.3", - "slab", - "tokio", - "tokio-util 0.7.8", + "slab 0.4.9", + "tokio 1.32.0", + "tokio-util", "tracing", ] @@ -4451,7 +4478,7 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" dependencies = [ - "log", + "log 0.4.20", "pest", "pest_derive", "serde", @@ -4477,7 +4504,7 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" dependencies = [ - "crunchy", + "crunchy 0.2.2", ] [[package]] @@ -4514,27 +4541,12 @@ dependencies = [ ] [[package]] -name = "headers" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" -dependencies = [ - "base64 0.21.3", - "bytes", - "headers-core", - "http", - "httpdate", - "mime", - "sha1", -] - -[[package]] -name = "headers-core" -version = "0.2.0" +name = "heapsize" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" +checksum = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" dependencies = [ - "http", + "winapi 0.3.9", ] [[package]] @@ -4642,7 +4654,18 @@ checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" dependencies = [ "libc", "match_cfg", - "winapi", + "winapi 0.3.9", +] + +[[package]] +name = "http" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" +dependencies = [ + "bytes 0.4.12", + "fnv", + "itoa 0.4.8", ] [[package]] @@ -4651,9 +4674,21 @@ version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ - "bytes", + "bytes 1.5.0", "fnv", - "itoa", + "itoa 1.0.9", +] + +[[package]] +name = "http-body" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "http 0.1.21", + "tokio-buf", ] [[package]] @@ -4662,8 +4697,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ - "bytes", - "http", + "bytes 1.5.0", + "http 0.2.9", "pin-project-lite 0.2.13", ] @@ -4691,28 +4726,77 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +[[package]] +name = "hyper" +version = "0.10.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" +dependencies = [ + "base64 0.9.3", + "httparse", + "language-tags", + "log 0.3.9", + "mime 0.2.6", + "num_cpus", + "time 0.1.45", + "traitobject", + "typeable", + "unicase", + "url 1.7.2", +] + +[[package]] +name = "hyper" +version = "0.12.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "futures-cpupool", + "h2 0.1.26", + "http 0.1.21", + "http-body 0.1.0", + "httparse", + "iovec", + "itoa 0.4.8", + "log 0.4.20", + "net2", + "rustc_version 0.2.3", + "time 0.1.45", + "tokio 0.1.22", + "tokio-buf", + "tokio-executor", + "tokio-io", + "tokio-reactor", + "tokio-tcp", + "tokio-threadpool", + "tokio-timer 0.2.13", + "want 0.2.0", +] + [[package]] name = "hyper" version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ - "bytes", + "bytes 1.5.0", "futures-channel", "futures-core", "futures-util", - "h2", - "http", - "http-body", + "h2 0.3.21", + "http 0.2.9", + "http-body 0.4.5", "httparse", "httpdate", - "itoa", + "itoa 1.0.9", "pin-project-lite 0.2.13", "socket2 0.4.9", - "tokio", + "tokio 1.32.0", "tower-service", "tracing", - "want", + "want 0.3.1", ] [[package]] @@ -4721,12 +4805,12 @@ version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" dependencies = [ - "http", - "hyper", - "log", + "http 0.2.9", + "hyper 0.14.27", + "log 0.4.20", "rustls 0.20.9", "rustls-native-certs", - "tokio", + "tokio 1.32.0", "tokio-rustls 0.23.4", ] @@ -4737,27 +4821,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" dependencies = [ "futures-util", - "http", - "hyper", - "log", + "http 0.2.9", + "hyper 0.14.27", + "log 0.4.20", "rustls 0.21.7", "rustls-native-certs", - "tokio", + "tokio 1.32.0", "tokio-rustls 0.24.1", "webpki-roots 0.23.1", ] [[package]] name = "hyper-tls" -version = "0.5.0" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" +checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" dependencies = [ - "bytes", - "hyper", + "bytes 0.4.12", + "futures 0.1.31", + "hyper 0.12.36", "native-tls", - "tokio", - "tokio-native-tls", + "tokio-io", ] [[package]] @@ -4789,7 +4873,7 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fda4983dc8f766190402d1d9e8d7c4bb10fd9b3f0b07558045b31a3066e4b25" dependencies = [ - "bytes", + "bytes 1.5.0", "derive_more", "displaydoc", "dyn-clone", @@ -4797,8 +4881,8 @@ dependencies = [ "ibc-proto 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)", "ics23", "num-traits", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "prost", "safe-regex", "scale-info", @@ -4812,7 +4896,7 @@ dependencies = [ "tendermint-proto", "time 0.3.17", "tracing", - "uint", + "uint 0.9.5", ] [[package]] @@ -4820,18 +4904,18 @@ name = "ibc" version = "0.28.0" source = "git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3#3f1bd80048b24d12af0cd32d9bb7018e73b01640" dependencies = [ - "bytes", - "cfg-if", + "bytes 1.5.0", + "cfg-if 1.0.0", "derive_more", "displaydoc", "dyn-clone", "erased-serde", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "ics23", - "log", + "log 0.4.20", "num-traits", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "prost", "safe-regex", "scale-info", @@ -4845,7 +4929,7 @@ dependencies = [ "tendermint-proto", "time 0.3.17", "tracing", - "uint", + "uint 0.9.5", ] [[package]] @@ -4856,9 +4940,9 @@ checksum = "0a057472da7f2107be20b1996063db3616cf356167b03f50118fc3f3a8c4c704" dependencies = [ "base64 0.13.1", "borsh", - "bytes", + "bytes 1.5.0", "flex-error", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prost", "scale-info", "serde", @@ -4873,9 +4957,9 @@ source = "git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc#be899e5 dependencies = [ "base64 0.13.1", "borsh", - "bytes", + "bytes 1.5.0", "flex-error", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prost", "scale-info", "serde", @@ -4890,7 +4974,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca44b684ce1859cff746ff46f5765ab72e12e3c06f76a8356db8f9a2ecf43f17" dependencies = [ "anyhow", - "bytes", + "bytes 1.5.0", "hex", "prost", "ripemd", @@ -4904,6 +4988,17 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" +[[package]] +name = "idna" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + [[package]] name = "idna" version = "0.2.3" @@ -4932,7 +5027,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -4944,32 +5039,23 @@ dependencies = [ "async-io", "core-foundation", "fnv", - "futures", + "futures 0.3.28", "if-addrs", "ipnet", - "log", + "log 0.4.20", "rtnetlink", "system-configuration", - "tokio", + "tokio 1.32.0", "windows 0.34.0", ] -[[package]] -name = "impl-codec" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443" -dependencies = [ - "parity-scale-codec 2.3.1", -] - [[package]] name = "impl-codec" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", ] [[package]] @@ -4981,15 +5067,6 @@ dependencies = [ "rlp", ] -[[package]] -name = "impl-serde" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" -dependencies = [ - "serde", -] - [[package]] name = "impl-serde" version = "0.4.0" @@ -5022,7 +5099,7 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg", + "autocfg 1.1.0", "hashbrown 0.12.3", "serde", ] @@ -5058,7 +5135,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -5077,13 +5154,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b" dependencies = [ "async-trait", - "bytes", - "log", + "bytes 1.5.0", + "log 0.4.20", "rand 0.8.5", "rtcp", "rtp", "thiserror", - "tokio", + "tokio 1.32.0", "waitgroup", "webrtc-srtp", "webrtc-util", @@ -5100,6 +5177,15 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "iovec" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +dependencies = [ + "libc", +] + [[package]] name = "ip_network" version = "0.4.1" @@ -5144,6 +5230,21 @@ dependencies = [ "either", ] +[[package]] +name = "itertools" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + [[package]] name = "itoa" version = "1.0.9" @@ -5170,14 +5271,12 @@ dependencies = [ [[package]] name = "jsonrpc-core" -version = "18.0.0" +version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" +checksum = "ddf83704f4e79979a424d1082dd2c1e52683058056c9280efa19ac5f6bc9033c" dependencies = [ - "futures", - "futures-executor", - "futures-util", - "log", + "futures 0.1.31", + "log 0.3.9", "serde", "serde_derive", "serde_json", @@ -5206,16 +5305,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c8b3815d9f5d5de348e5f162b316dc9cdf4548305ebb15b4eb9328e66cf27d7a" dependencies = [ "futures-util", - "http", + "http 0.2.9", "jsonrpsee-core", "jsonrpsee-types", "pin-project", "rustls-native-certs", "soketto", "thiserror", - "tokio", + "tokio 1.32.0", "tokio-rustls 0.24.1", - "tokio-util 0.7.8", + "tokio-util", "tracing", "webpki-roots 0.25.2", ] @@ -5235,7 +5334,7 @@ dependencies = [ "futures-timer", "futures-util", "globset", - "hyper", + "hyper 0.14.27", "jsonrpsee-types", "parking_lot 0.12.1", "rand 0.8.5", @@ -5244,7 +5343,7 @@ dependencies = [ "serde_json", "soketto", "thiserror", - "tokio", + "tokio 1.32.0", "tracing", ] @@ -5255,7 +5354,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e5f9fabdd5d79344728521bb65e3106b49ec405a78b66fbff073b72b389fa43" dependencies = [ "async-trait", - "hyper", + "hyper 0.14.27", "hyper-rustls 0.24.1", "jsonrpsee-core", "jsonrpsee-types", @@ -5263,7 +5362,7 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio", + "tokio 1.32.0", "tracing", ] @@ -5288,16 +5387,16 @@ checksum = "cf4d945a6008c9b03db3354fb3c83ee02d2faa9f2e755ec1dfb69c3551b8f4ba" dependencies = [ "futures-channel", "futures-util", - "http", - "hyper", + "http 0.2.9", + "hyper 0.14.27", "jsonrpsee-core", "jsonrpsee-types", "serde", "serde_json", "soketto", - "tokio", + "tokio 1.32.0", "tokio-stream", - "tokio-util 0.7.8", + "tokio-util", "tower", "tracing", ] @@ -5322,7 +5421,7 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e1b3975ed5d73f456478681a417128597acd6a2487855fdb7b4a3d4d195bf5e" dependencies = [ - "http", + "http 0.2.9", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -5342,25 +5441,13 @@ dependencies = [ "simple_asn1", ] -[[package]] -name = "k256" -version = "0.11.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72c1e0b51e7ec0a97369623508396067a486bd0cbed95a2659a4b863d28cfc8b" -dependencies = [ - "cfg-if", - "ecdsa 0.14.8", - "elliptic-curve 0.12.3", - "sha2 0.10.7", -] - [[package]] name = "k256" version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "ecdsa 0.16.8", "elliptic-curve 0.13.5", "once_cell", @@ -5377,6 +5464,16 @@ dependencies = [ "cpufeatures", ] +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + [[package]] name = "kvdb" version = "0.13.0" @@ -5421,14 +5518,14 @@ dependencies = [ "diff", "ena", "is-terminal", - "itertools", + "itertools 0.10.5", "lalrpop-util", "petgraph", "regex", "regex-syntax 0.7.5", "string_cache", "term", - "tiny-keccak", + "tiny-keccak 2.0.2", "unicode-xid", ] @@ -5438,6 +5535,12 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" +[[package]] +name = "language-tags" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" + [[package]] name = "lazy_static" version = "1.4.0" @@ -5465,8 +5568,8 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ - "cfg-if", - "winapi", + "cfg-if 1.0.0", + "winapi 0.3.9", ] [[package]] @@ -5481,8 +5584,8 @@ version = "0.51.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097" dependencies = [ - "bytes", - "futures", + "bytes 1.5.0", + "futures 0.3.28", "futures-timer", "getrandom 0.2.10", "instant", @@ -5541,11 +5644,11 @@ checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" dependencies = [ "either", "fnv", - "futures", + "futures 0.3.28", "futures-timer", "instant", "libp2p-identity", - "log", + "log 0.4.20", "multiaddr", "multihash 0.17.0", "multistream-select", @@ -5567,9 +5670,9 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554" dependencies = [ - "futures", + "futures 0.3.28", "libp2p-core", - "log", + "log 0.4.20", "parking_lot 0.12.1", "smallvec 1.11.0", "trust-dns-resolver", @@ -5583,12 +5686,12 @@ checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c" dependencies = [ "asynchronous-codec", "either", - "futures", + "futures 0.3.28", "futures-timer", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", + "log 0.4.20", "lru 0.10.1", "quick-protobuf", "quick-protobuf-codec", @@ -5605,7 +5708,7 @@ checksum = "276bb57e7af15d8f100d3c11cbdd32c6752b7eef4ba7a18ecf464972c07abcce" dependencies = [ "bs58 0.4.0", "ed25519-dalek 2.0.0", - "log", + "log 0.4.20", "multiaddr", "multihash 0.17.0", "quick-protobuf", @@ -5623,22 +5726,22 @@ checksum = "39d5ef876a2b2323d63c258e63c2f8e36f205fe5a11f0b3095d59635650790ff" dependencies = [ "arrayvec 0.7.4", "asynchronous-codec", - "bytes", + "bytes 1.5.0", "either", "fnv", - "futures", + "futures 0.3.28", "futures-timer", "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", + "log 0.4.20", "quick-protobuf", "rand 0.8.5", "sha2 0.10.7", "smallvec 1.11.0", "thiserror", - "uint", + "uint 0.9.5", "unsigned-varint", "void", ] @@ -5650,16 +5753,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b" dependencies = [ "data-encoding", - "futures", + "futures 0.3.28", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", + "log 0.4.20", "rand 0.8.5", "smallvec 1.11.0", "socket2 0.4.9", - "tokio", + "tokio 1.32.0", "trust-dns-proto", "void", ] @@ -5684,12 +5787,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e" dependencies = [ - "bytes", + "bytes 1.5.0", "curve25519-dalek 3.2.0", - "futures", + "futures 0.3.28", "libp2p-core", "libp2p-identity", - "log", + "log 0.4.20", "once_cell", "quick-protobuf", "rand 0.8.5", @@ -5708,12 +5811,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202" dependencies = [ "either", - "futures", + "futures 0.3.28", "futures-timer", "instant", "libp2p-core", "libp2p-swarm", - "log", + "log 0.4.20", "rand 0.8.5", "void", ] @@ -5724,20 +5827,20 @@ version = "0.7.0-alpha.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735" dependencies = [ - "bytes", - "futures", + "bytes 1.5.0", + "futures 0.3.28", "futures-timer", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-tls", - "log", + "log 0.4.20", "parking_lot 0.12.1", "quinn-proto", "rand 0.8.5", "rustls 0.20.9", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -5747,7 +5850,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5" dependencies = [ "async-trait", - "futures", + "futures 0.3.28", "instant", "libp2p-core", "libp2p-identity", @@ -5764,16 +5867,16 @@ checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296" dependencies = [ "either", "fnv", - "futures", + "futures 0.3.28", "futures-timer", "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm-derive", - "log", + "log 0.4.20", "rand 0.8.5", "smallvec 1.11.0", - "tokio", + "tokio 1.32.0", "void", ] @@ -5794,14 +5897,14 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf" dependencies = [ - "futures", + "futures 0.3.28", "futures-timer", "if-watch", "libc", "libp2p-core", - "log", + "log 0.4.20", "socket2 0.4.9", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -5810,7 +5913,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" dependencies = [ - "futures", + "futures 0.3.28", "futures-rustls", "libp2p-core", "libp2p-identity", @@ -5829,7 +5932,7 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43" dependencies = [ - "futures", + "futures 0.3.28", "js-sys", "libp2p-core", "parity-send-wrapper", @@ -5845,15 +5948,15 @@ checksum = "dba48592edbc2f60b4bc7c10d65445b0c3964c07df26fdf493b6880d33be36f8" dependencies = [ "async-trait", "asynchronous-codec", - "bytes", - "futures", + "bytes 1.5.0", + "futures 0.3.28", "futures-timer", "hex", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-noise", - "log", + "log 0.4.20", "multihash 0.17.0", "quick-protobuf", "quick-protobuf-codec", @@ -5863,8 +5966,8 @@ dependencies = [ "stun", "thiserror", "tinytemplate", - "tokio", - "tokio-util 0.7.8", + "tokio 1.32.0", + "tokio-util", "webrtc", ] @@ -5875,15 +5978,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f" dependencies = [ "either", - "futures", + "futures 0.3.28", "futures-rustls", "libp2p-core", - "log", + "log 0.4.20", "parking_lot 0.12.1", "quicksink", "rw-stream-sink", "soketto", - "url", + "url 2.4.1", "webpki-roots 0.22.6", ] @@ -5893,9 +5996,9 @@ version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda" dependencies = [ - "futures", + "futures 0.3.28", "libp2p-core", - "log", + "log 0.4.20", "thiserror", "yamux", ] @@ -5940,7 +6043,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ - "crunchy", + "crunchy 0.2.2", "digest 0.9.0", "subtle", ] @@ -6025,14 +6128,42 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503" +[[package]] +name = "lock_api" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" +dependencies = [ + "owning_ref", + "scopeguard 0.3.3", +] + +[[package]] +name = "lock_api" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" +dependencies = [ + "scopeguard 1.2.0", +] + [[package]] name = "lock_api" version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ - "autocfg", - "scopeguard", + "autocfg 1.1.0", + "scopeguard 1.2.0", +] + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +dependencies = [ + "log 0.4.20", ] [[package]] @@ -6124,7 +6255,7 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "090126dc04f95dc0d1c1c91f61bdd474b3930ca064c1edc8a849da2c6cbe1e77" dependencies = [ - "autocfg", + "autocfg 1.1.0", "rawpointer", ] @@ -6167,13 +6298,22 @@ dependencies = [ "libc", ] +[[package]] +name = "memoffset" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" +dependencies = [ + "autocfg 1.1.0", +] + [[package]] name = "memoffset" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -6182,7 +6322,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -6191,7 +6331,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -6200,7 +6340,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -6230,6 +6370,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "mime" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" +dependencies = [ + "log 0.3.9", +] + [[package]] name = "mime" version = "0.3.17" @@ -6251,6 +6400,25 @@ dependencies = [ "adler", ] +[[package]] +name = "mio" +version = "0.6.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" +dependencies = [ + "cfg-if 0.1.10", + "fuchsia-zircon", + "fuchsia-zircon-sys", + "iovec", + "kernel32-sys", + "libc", + "log 0.4.20", + "miow", + "net2", + "slab 0.4.9", + "winapi 0.2.8", +] + [[package]] name = "mio" version = "0.8.8" @@ -6262,23 +6430,46 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "mio-uds" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" +dependencies = [ + "iovec", + "libc", + "mio 0.6.23", +] + +[[package]] +name = "miow" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" +dependencies = [ + "kernel32-sys", + "net2", + "winapi 0.2.8", + "ws2_32-sys", +] + [[package]] name = "mmr-gadget" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", - "log", - "parity-scale-codec 3.6.5", + "futures 0.3.28", + "log 0.4.20", + "parity-scale-codec", "sc-client-api", "sc-offchain", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -6288,13 +6479,13 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "anyhow", "jsonrpsee", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -6303,7 +6494,7 @@ version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "downcast", "fragile", "lazy_static", @@ -6318,7 +6509,7 @@ version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "proc-macro2", "quote", "syn 1.0.109", @@ -6333,14 +6524,14 @@ dependencies = [ "arrayref", "byteorder", "data-encoding", - "log", + "log 0.4.20", "multibase", "multihash 0.17.0", - "percent-encoding", + "percent-encoding 2.3.0", "serde", "static_assertions", "unsigned-varint", - "url", + "url 2.4.1", ] [[package]] @@ -6410,9 +6601,9 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a" dependencies = [ - "bytes", - "futures", - "log", + "bytes 1.5.0", + "futures 0.3.28", + "log 0.4.20", "pin-project", "smallvec 1.11.0", "unsigned-varint", @@ -6462,7 +6653,7 @@ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ "lazy_static", "libc", - "log", + "log 0.4.20", "openssl", "openssl-probe", "openssl-sys", @@ -6472,6 +6663,17 @@ dependencies = [ "tempfile", ] +[[package]] +name = "net2" +version = "0.2.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" +dependencies = [ + "cfg-if 0.1.10", + "libc", + "winapi 0.3.9", +] + [[package]] name = "netlink-packet-core" version = "0.4.2" @@ -6516,13 +6718,13 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" dependencies = [ - "bytes", - "futures", - "log", + "bytes 1.5.0", + "futures 0.3.28", + "log 0.4.20", "netlink-packet-core", "netlink-sys", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -6531,11 +6733,11 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" dependencies = [ - "bytes", - "futures", + "bytes 1.5.0", + "futures 0.3.28", "libc", - "log", - "tokio", + "log 0.4.20", + "tokio 1.32.0", ] [[package]] @@ -6551,7 +6753,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ "bitflags 1.3.2", - "cfg-if", + "cfg-if 1.0.0", "libc", "memoffset 0.6.5", ] @@ -6563,7 +6765,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ "bitflags 1.3.2", - "cfg-if", + "cfg-if 1.0.0", "libc", "memoffset 0.7.1", "pin-utils", @@ -6617,7 +6819,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" dependencies = [ - "autocfg", + "autocfg 1.1.0", "num-integer", "num-traits", "rand 0.8.5", @@ -6650,7 +6852,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ "arrayvec 0.7.4", - "itoa", + "itoa 1.0.9", ] [[package]] @@ -6659,7 +6861,7 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" dependencies = [ - "autocfg", + "autocfg 1.1.0", "num-traits", ] @@ -6669,7 +6871,7 @@ version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" dependencies = [ - "autocfg", + "autocfg 1.1.0", "num-integer", "num-traits", ] @@ -6680,7 +6882,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" dependencies = [ - "autocfg", + "autocfg 1.1.0", "num-bigint", "num-integer", "num-traits", @@ -6692,7 +6894,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ - "autocfg", + "autocfg 1.1.0", "libm", ] @@ -6769,18 +6971,6 @@ dependencies = [ "syn 2.0.31", ] -[[package]] -name = "object" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" -dependencies = [ - "crc32fast", - "hashbrown 0.12.3", - "indexmap 1.9.3", - "memchr", -] - [[package]] name = "object" version = "0.30.4" @@ -6846,7 +7036,7 @@ checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ "arrayvec 0.7.4", "auto_impl", - "bytes", + "bytes 1.5.0", "ethereum-types 0.14.1", "open-fastrlp-derive", ] @@ -6857,7 +7047,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" dependencies = [ - "bytes", + "bytes 1.5.0", "proc-macro2", "quote", "syn 1.0.109", @@ -6870,7 +7060,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" dependencies = [ "bitflags 2.4.0", - "cfg-if", + "cfg-if 1.0.0", "foreign-types", "libc", "once_cell", @@ -6918,17 +7108,17 @@ name = "orml-traits" version = "0.4.1-dev" source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.43#28a2e6f0df9540d91db4018c7ecebb8bfc217a2a" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", "impl-trait-for-tuples", "num-traits", "orml-utilities", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "xcm", ] @@ -6937,13 +7127,22 @@ name = "orml-utilities" version = "0.4.1-dev" source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.43#28a2e6f0df9540d91db4018c7ecebb8bfc217a2a" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "parity-scale-codec", "scale-info", "serde", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", +] + +[[package]] +name = "owning_ref" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" +dependencies = [ + "stable_deref_trait", ] [[package]] @@ -6973,14 +7172,14 @@ name = "pallet-assets" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -6988,15 +7187,15 @@ name = "pallet-aura" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "pallet-timestamp", + "parity-scale-codec", "scale-info", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto", "sp-consensus-aura", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7004,13 +7203,13 @@ name = "pallet-authorship" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "impl-trait-for-tuples", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7018,14 +7217,14 @@ name = "pallet-balances" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7034,12 +7233,12 @@ version = "1.0.0" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", ] [[package]] @@ -7047,18 +7246,18 @@ name = "pallet-beefy" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", "sp-consensus-beefy", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7068,21 +7267,21 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "array-bytes", "binary-merkle-tree", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-beefy", "pallet-mmr", "pallet-session", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7090,17 +7289,17 @@ name = "pallet-bounties" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-treasury", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7109,17 +7308,17 @@ version = "0.1.1" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "astar-primitives", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "num-traits", "pallet-contracts", "pallet-contracts-primitives", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", "xvm-chain-extension-types", ] @@ -7130,23 +7329,23 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "bitflags 1.3.2", "environmental", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", - "log", + "log 0.4.20", "pallet-contracts-primitives", "pallet-contracts-proc-macro", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "rand 0.8.5", "scale-info", "serde", "smallvec 1.11.0", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "wasm-instrument 0.4.0", "wasmi 0.28.0", "wasmparser-nostd", @@ -7158,11 +7357,11 @@ version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "bitflags 1.3.2", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", + "sp-weights", ] [[package]] @@ -7181,15 +7380,15 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "assert_matches", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", "serde", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7199,13 +7398,13 @@ source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9. dependencies = [ "fp-dynamic-fee", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-std 5.0.0", ] [[package]] @@ -7213,21 +7412,21 @@ name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-election-provider-support-benchmarking", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "rand 0.8.5", "scale-info", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-core", + "sp-io", "sp-npos-elections", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", "strum 0.24.1", ] @@ -7236,12 +7435,12 @@ name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-election-provider-support", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-system", + "parity-scale-codec", "sp-npos-elections", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -7257,14 +7456,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7276,14 +7475,14 @@ dependencies = [ "ethereum-types 0.14.1", "fp-ethereum", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "hex", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7295,20 +7494,20 @@ dependencies = [ "evm", "fp-account", "fp-evm", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", + "frame-support", + "frame-system", "hex", "hex-literal 0.4.1", "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "rlp", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7316,9 +7515,9 @@ name = "pallet-evm-chain-id" version = "1.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", ] @@ -7328,20 +7527,20 @@ version = "0.5.2" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "num_enum 0.5.11", "pallet-assets", "pallet-balances", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "precompile-utils", "slices", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7358,7 +7557,7 @@ version = "2.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "substrate-bn", ] @@ -7386,24 +7585,24 @@ version = "0.1.2" dependencies = [ "derive_more", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "hex-literal 0.3.4", "libsecp256k1", - "log", + "log 0.4.20", "num_enum 0.5.11", "pallet-evm", "pallet-session", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "pallet-timestamp", + "parity-scale-codec", "precompile-utils", "serde", "sha3 0.8.2", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7412,7 +7611,7 @@ version = "2.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "tiny-keccak", + "tiny-keccak 2.0.2", ] [[package]] @@ -7422,7 +7621,7 @@ source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9. dependencies = [ "fp-evm", "ripemd", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", ] [[package]] @@ -7431,14 +7630,14 @@ version = "1.2.1" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "fp-evm", - "log", + "log 0.4.20", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "precompile-utils", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-std 5.0.0", ] [[package]] @@ -7448,14 +7647,14 @@ source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb dependencies = [ "assert_matches", "fp-evm", - "log", + "log 0.4.20", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "precompile-utils", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-std 5.0.0", ] [[package]] @@ -7465,18 +7664,18 @@ source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb dependencies = [ "astar-primitives", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "hex", - "log", + "log 0.4.20", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "precompile-utils", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7494,25 +7693,25 @@ dependencies = [ "ark-std", "derive_more", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "hex-literal 0.3.4", "libsecp256k1", - "log", + "log 0.4.20", "num-bigint", "num_enum 0.5.11", "pallet-balances", "pallet-evm", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "pallet-timestamp", + "parity-scale-codec", "precompile-utils", "serde", "sha3 0.8.2", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7520,22 +7719,22 @@ name = "pallet-grandpa" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto", "sp-consensus-grandpa", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7543,73 +7742,76 @@ name = "pallet-hotfix-sufficients" version = "1.0.0" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", + "frame-support", + "frame-system", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] name = "pallet-ibc" version = "4.0.0-dev" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-benchmarking", + "frame-support", + "frame-system", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "log", + "log 0.4.20", "pallet-ibc-utils", - "pallet-timestamp 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "parity-scale-codec 3.6.5", + "pallet-timestamp", + "parity-scale-codec", "scale-info", "serde", "serde_json", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-tracing", ] [[package]] name = "pallet-ibc-utils" version = "0.1.0" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-benchmarking", + "frame-support", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] name = "pallet-ics20-transfer" version = "4.0.0-dev" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "frame-benchmarking", + "frame-support", + "frame-system", "hex", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "log", + "log 0.4.20", "pallet-ibc-utils", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "scale-info", "sha2 0.10.7", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "subtle-encoding", ] @@ -7619,14 +7821,14 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "enumflags2", - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7634,19 +7836,19 @@ name = "pallet-im-online" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-authorship", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto", + "sp-core", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7654,16 +7856,16 @@ name = "pallet-indices" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", "sp-keyring", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7671,13 +7873,13 @@ name = "pallet-insecure-randomness-collective-flip" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "safe-mix", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7685,16 +7887,16 @@ name = "pallet-mmr" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7702,15 +7904,15 @@ name = "pallet-multisig" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7718,16 +7920,16 @@ name = "pallet-offences" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-balances", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7735,16 +7937,16 @@ name = "pallet-preimage" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7752,14 +7954,14 @@ name = "pallet-proxy" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7767,17 +7969,17 @@ name = "pallet-ranked-collective" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7785,17 +7987,17 @@ name = "pallet-referenda" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7803,16 +8005,16 @@ name = "pallet-scheduler" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-weights", ] [[package]] @@ -7820,20 +8022,20 @@ name = "pallet-session" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "impl-trait-for-tuples", - "log", - "pallet-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "pallet-timestamp", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", "sp-session", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-staking", + "sp-std 5.0.0", + "sp-trie", ] [[package]] @@ -7841,13 +8043,13 @@ name = "pallet-society" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "rand_chacha 0.2.2", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7855,21 +8057,21 @@ name = "pallet-staking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", "frame-election-provider-support", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-authorship", "pallet-session", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto", + "sp-io", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -7877,32 +8079,14 @@ name = "pallet-sudo" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", - "scale-info", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "pallet-timestamp" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-support 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "frame-system 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-timestamp 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7910,17 +8094,17 @@ name = "pallet-timestamp" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-timestamp", ] [[package]] @@ -7928,15 +8112,15 @@ name = "pallet-transaction-payment" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7946,13 +8130,13 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", - "parity-scale-codec 3.6.5", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-rpc", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-weights", ] [[package]] @@ -7961,10 +8145,10 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "pallet-transaction-payment", - "parity-scale-codec 3.6.5", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-api", + "sp-runtime", + "sp-weights", ] [[package]] @@ -7972,16 +8156,16 @@ name = "pallet-treasury" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-benchmarking", + "frame-support", + "frame-system", "impl-trait-for-tuples", "pallet-balances", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -7989,14 +8173,14 @@ name = "pallet-vesting" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -8004,14 +8188,14 @@ name = "pallet-whitelist" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -8019,16 +8203,16 @@ name = "pallet-xc-asset-config" version = "1.3.0" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ - "frame-benchmarking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", - "parity-scale-codec 3.6.5", + "frame-benchmarking", + "frame-support", + "frame-system", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "xcm", ] @@ -8040,18 +8224,18 @@ dependencies = [ "astar-primitives", "environmental", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-contracts", "pallet-contracts-primitives", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -8065,7 +8249,7 @@ dependencies = [ "fs2", "hex", "libc", - "log", + "log 0.4.20", "lz4", "memmap2", "parking_lot 0.12.1", @@ -8074,20 +8258,6 @@ dependencies = [ "snap", ] -[[package]] -name = "parity-scale-codec" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" -dependencies = [ - "arrayvec 0.7.4", - "bitvec 0.20.4", - "byte-slice-cast", - "impl-trait-for-tuples", - "parity-scale-codec-derive 2.3.1", - "serde", -] - [[package]] name = "parity-scale-codec" version = "3.6.5" @@ -8095,26 +8265,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dec8a8073036902368c2cdc0387e85ff9a37054d7e7c98e592145e0c92cd4fb" dependencies = [ "arrayvec 0.7.4", - "bitvec 1.0.1", + "bitvec", "byte-slice-cast", - "bytes", + "bytes 1.5.0", "impl-trait-for-tuples", - "parity-scale-codec-derive 3.6.5", + "parity-scale-codec-derive", "serde", ] -[[package]] -name = "parity-scale-codec-derive" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27" -dependencies = [ - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "parity-scale-codec-derive" version = "3.6.5" @@ -8145,6 +8303,27 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" +[[package]] +name = "parking_lot" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" +dependencies = [ + "lock_api 0.1.5", + "parking_lot_core 0.4.0", +] + +[[package]] +name = "parking_lot" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" +dependencies = [ + "lock_api 0.3.4", + "parking_lot_core 0.6.3", + "rustc_version 0.2.3", +] + [[package]] name = "parking_lot" version = "0.11.2" @@ -8152,7 +8331,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" dependencies = [ "instant", - "lock_api", + "lock_api 0.4.10", "parking_lot_core 0.8.6", ] @@ -8162,33 +8341,61 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ - "lock_api", + "lock_api 0.4.10", "parking_lot_core 0.9.8", ] [[package]] name = "parking_lot_core" -version = "0.8.6" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" dependencies = [ - "cfg-if", - "instant", "libc", - "redox_syscall 0.2.16", - "smallvec 1.11.0", - "winapi", + "rand 0.6.5", + "rustc_version 0.2.3", + "smallvec 0.6.14", + "winapi 0.3.9", ] [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a" dependencies = [ - "cfg-if", + "cfg-if 0.1.10", + "cloudabi", "libc", - "redox_syscall 0.3.5", + "redox_syscall 0.1.57", + "rustc_version 0.2.3", + "smallvec 0.6.14", + "winapi 0.3.9", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" +dependencies = [ + "cfg-if 1.0.0", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec 1.11.0", + "winapi 0.3.9", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "redox_syscall 0.3.5", "smallvec 1.11.0", "windows-targets 0.48.5", ] @@ -8277,6 +8484,12 @@ dependencies = [ "base64ct", ] +[[package]] +name = "percent-encoding" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" + [[package]] name = "percent-encoding" version = "2.3.0" @@ -8344,7 +8557,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" dependencies = [ - "futures", + "futures 0.3.28", "rustc_version 0.4.0", ] @@ -8480,11 +8693,11 @@ name = "polkadot-core-primitives" version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -8494,14 +8707,14 @@ source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42 dependencies = [ "bounded-collections", "derive_more", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "parity-scale-codec", "polkadot-core-primitives", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -8509,25 +8722,25 @@ name = "polkadot-primitives" version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "bitvec 1.0.1", + "bitvec", "hex-literal 0.4.1", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "polkadot-core-primitives", "polkadot-parachain", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-authority-discovery", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-io", + "sp-keystore", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -8551,13 +8764,13 @@ dependencies = [ "sc-rpc", "sc-sync-state-rpc", "sc-transaction-pool-api", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore", + "sp-runtime", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", ] @@ -8568,12 +8781,12 @@ version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" dependencies = [ - "autocfg", + "autocfg 1.1.0", "bitflags 1.3.2", - "cfg-if", + "cfg-if 1.0.0", "concurrent-queue", "libc", - "log", + "log 0.4.20", "pin-project-lite 0.2.13", "windows-sys 0.48.0", ] @@ -8595,7 +8808,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "opaque-debug 0.3.0", "universal-hash 0.4.1", @@ -8607,7 +8820,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "opaque-debug 0.3.0", "universal-hash 0.5.1", @@ -8628,19 +8841,19 @@ dependencies = [ "environmental", "evm", "fp-evm", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "impl-trait-for-tuples", - "log", + "log 0.4.20", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "precompile-utils-macro", "sha3 0.10.8", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", "xcm", ] @@ -8670,7 +8883,7 @@ checksum = "59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd" dependencies = [ "difflib", "float-cmp", - "itertools", + "itertools 0.10.5", "normalize-line-endings", "predicates-core", "regex", @@ -8684,7 +8897,7 @@ checksum = "09963355b9f467184c04017ced4a2ba2d75cbcb4e7462690d388233253d4b1a9" dependencies = [ "anstyle", "difflib", - "itertools", + "itertools 0.10.5", "predicates-core", ] @@ -8716,27 +8929,14 @@ dependencies = [ [[package]] name = "prettyplease" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8832c0f9be7e3cae60727e6256cfd2cd3c3e2b6cd5dad4190ecb2fd658c9030b" +checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" dependencies = [ "proc-macro2", "syn 2.0.31", ] -[[package]] -name = "primitive-types" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" -dependencies = [ - "fixed-hash 0.7.0", - "impl-codec 0.5.1", - "impl-rlp", - "impl-serde 0.3.2", - "uint", -] - [[package]] name = "primitive-types" version = "0.12.1" @@ -8744,11 +8944,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" dependencies = [ "fixed-hash 0.8.0", - "impl-codec 0.6.0", + "impl-codec", "impl-rlp", - "impl-serde 0.4.0", + "impl-serde", "scale-info", - "uint", + "uint 0.9.5", ] [[package]] @@ -8780,7 +8980,7 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "version_check", + "version_check 0.9.4", ] [[package]] @@ -8791,7 +8991,7 @@ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ "proc-macro2", "quote", - "version_check", + "version_check 0.9.4", ] [[package]] @@ -8820,7 +9020,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "fnv", "lazy_static", "memchr", @@ -8835,7 +9035,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" dependencies = [ "dtoa", - "itoa", + "itoa 1.0.9", "parking_lot 0.12.1", "prometheus-client-derive-encode", ] @@ -8864,7 +9064,7 @@ dependencies = [ "num-traits", "rand 0.8.5", "rand_chacha 0.3.1", - "rand_xorshift", + "rand_xorshift 0.3.0", "regex-syntax 0.6.29", "rusty-fork", "tempfile", @@ -8877,7 +9077,7 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" dependencies = [ - "bytes", + "bytes 1.5.0", "prost-derive", ] @@ -8887,11 +9087,11 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" dependencies = [ - "bytes", + "bytes 1.5.0", "heck", - "itertools", + "itertools 0.10.5", "lazy_static", - "log", + "log 0.4.20", "multimap", "petgraph", "prettyplease 0.1.25", @@ -8910,7 +9110,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" dependencies = [ "anyhow", - "itertools", + "itertools 0.10.5", "proc-macro2", "quote", "syn 1.0.109", @@ -8956,7 +9156,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b" dependencies = [ "asynchronous-codec", - "bytes", + "bytes 1.5.0", "quick-protobuf", "thiserror", "unsigned-varint", @@ -8979,12 +9179,12 @@ version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f31999cfc7927c4e212e60fd50934ab40e8e8bfd2d493d6095d2d306bc0764d9" dependencies = [ - "bytes", + "bytes 1.5.0", "rand 0.8.5", "ring", "rustc-hash", "rustls 0.20.9", - "slab", + "slab 0.4.9", "thiserror", "tinyvec", "tracing", @@ -9002,15 +9202,54 @@ dependencies = [ [[package]] name = "radium" -version = "0.6.2" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] -name = "radium" -version = "0.7.0" +name = "rand" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" +checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +dependencies = [ + "fuchsia-cprng", + "libc", + "rand_core 0.3.1", + "rdrand", + "winapi 0.3.9", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +dependencies = [ + "cloudabi", + "fuchsia-cprng", + "libc", + "rand_core 0.3.1", + "winapi 0.3.9", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +dependencies = [ + "autocfg 0.1.8", + "libc", + "rand_chacha 0.1.1", + "rand_core 0.4.2", + "rand_hc 0.1.0", + "rand_isaac", + "rand_jitter", + "rand_os", + "rand_pcg 0.1.2", + "rand_xorshift 0.1.1", + "winapi 0.3.9", +] [[package]] name = "rand" @@ -9022,7 +9261,7 @@ dependencies = [ "libc", "rand_chacha 0.2.2", "rand_core 0.5.1", - "rand_hc", + "rand_hc 0.2.0", ] [[package]] @@ -9036,6 +9275,16 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +dependencies = [ + "autocfg 0.1.8", + "rand_core 0.3.1", +] + [[package]] name = "rand_chacha" version = "0.2.2" @@ -9056,6 +9305,21 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +dependencies = [ + "rand_core 0.4.2", +] + +[[package]] +name = "rand_core" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" + [[package]] name = "rand_core" version = "0.5.1" @@ -9074,6 +9338,15 @@ dependencies = [ "getrandom 0.2.10", ] +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +dependencies = [ + "rand_core 0.3.1", +] + [[package]] name = "rand_hc" version = "0.2.0" @@ -9083,6 +9356,50 @@ dependencies = [ "rand_core 0.5.1", ] +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +dependencies = [ + "rand_core 0.3.1", +] + +[[package]] +name = "rand_jitter" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" +dependencies = [ + "libc", + "rand_core 0.4.2", + "winapi 0.3.9", +] + +[[package]] +name = "rand_os" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +dependencies = [ + "cloudabi", + "fuchsia-cprng", + "libc", + "rand_core 0.4.2", + "rdrand", + "winapi 0.3.9", +] + +[[package]] +name = "rand_pcg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +dependencies = [ + "autocfg 0.1.8", + "rand_core 0.4.2", +] + [[package]] name = "rand_pcg" version = "0.3.1" @@ -9092,6 +9409,15 @@ dependencies = [ "rand_core 0.6.4", ] +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +dependencies = [ + "rand_core 0.3.1", +] + [[package]] name = "rand_xorshift" version = "0.3.0" @@ -9124,8 +9450,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" dependencies = [ "crossbeam-channel", - "crossbeam-deque", - "crossbeam-utils", + "crossbeam-deque 0.8.3", + "crossbeam-utils 0.8.16", "num_cpus", ] @@ -9154,6 +9480,21 @@ dependencies = [ "yasna", ] +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +dependencies = [ + "rand_core 0.3.1", +] + +[[package]] +name = "redox_syscall" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" + [[package]] name = "redox_syscall" version = "0.2.16" @@ -9210,7 +9551,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" dependencies = [ "fxhash", - "log", + "log 0.4.20", "slice-group-by", "smallvec 1.11.0", ] @@ -9266,34 +9607,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ "base64 0.21.3", - "bytes", + "bytes 1.5.0", "encoding_rs", "futures-core", "futures-util", - "h2", - "http", - "http-body", - "hyper", + "h2 0.3.21", + "http 0.2.9", + "http-body 0.4.5", + "hyper 0.14.27", "hyper-rustls 0.24.1", - "hyper-tls", "ipnet", "js-sys", - "log", - "mime", - "native-tls", + "log 0.4.20", + "mime 0.3.17", "once_cell", - "percent-encoding", + "percent-encoding 2.3.0", "pin-project-lite 0.2.13", "rustls 0.21.7", "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", - "tokio", - "tokio-native-tls", + "tokio 1.32.0", "tokio-rustls 0.24.1", "tower-service", - "url", + "url 2.4.1", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -9344,7 +9682,7 @@ dependencies = [ "spin 0.5.2", "untrusted", "web-sys", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9362,9 +9700,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" dependencies = [ - "bytes", + "bytes 1.5.0", "rlp-derive", - "rustc-hex", + "rustc-hex 2.1.0", ] [[package]] @@ -9396,7 +9734,7 @@ checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322" dependencies = [ "libc", "rtoolbox", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9405,7 +9743,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691" dependencies = [ - "bytes", + "bytes 1.5.0", "thiserror", "webrtc-util", ] @@ -9416,13 +9754,13 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" dependencies = [ - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "netlink-packet-route", "netlink-proto", "nix 0.24.3", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -9432,7 +9770,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -9442,7 +9780,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80" dependencies = [ "async-trait", - "bytes", + "bytes 1.5.0", "rand 0.8.5", "serde", "thiserror", @@ -9453,9 +9791,9 @@ dependencies = [ name = "runtime-common" version = "0.1.2" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "log", + "frame-support", + "frame-system", + "log 0.4.20", "pallet-contracts", "pallet-evm", "pallet-evm-precompile-blake2", @@ -9471,13 +9809,13 @@ dependencies = [ "pallet-evm-precompile-zk-groth16-verify", "pallet-session", "pallet-xvm", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "proptest", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-staking", + "sp-std 5.0.0", "test-strategy", ] @@ -9493,6 +9831,12 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" +[[package]] +name = "rustc-hex" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceb8ce7a5e520de349e1fa172baeba4a9e8d5ef06c47471863530bc4972ee1e" + [[package]] name = "rustc-hex" version = "2.1.0" @@ -9574,7 +9918,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" dependencies = [ "base64 0.13.1", - "log", + "log 0.4.20", "ring", "sct 0.6.1", "webpki 0.21.4", @@ -9586,7 +9930,7 @@ version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" dependencies = [ - "log", + "log 0.4.20", "ring", "sct 0.7.0", "webpki 0.22.1", @@ -9598,7 +9942,7 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" dependencies = [ - "log", + "log 0.4.20", "ring", "rustls-webpki 0.101.4", "sct 0.7.0", @@ -9669,7 +10013,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04" dependencies = [ - "futures", + "futures 0.3.28", "pin-project", "static_assertions", ] @@ -9745,6 +10089,12 @@ dependencies = [ "bytemuck", ] +[[package]] +name = "safemem" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" + [[package]] name = "salsa20" version = "0.10.2" @@ -9768,9 +10118,9 @@ name = "sc-allocator" version = "4.1.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log 0.4.20", + "sp-core", + "sp-wasm-interface", "thiserror", ] @@ -9779,21 +10129,21 @@ name = "sc-basic-authorship" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "futures-timer", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-block-builder", "sc-client-api", "sc-proposer-metrics", "sc-telemetry", "sc-transaction-pool-api", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-runtime", "substrate-prometheus-endpoint", ] @@ -9802,14 +10152,14 @@ name = "sc-block-builder" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "sc-client-api", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-runtime", ] [[package]] @@ -9826,9 +10176,9 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -9851,11 +10201,11 @@ dependencies = [ "chrono", "clap", "fdlimit", - "futures", + "futures 0.3.28", "libp2p-identity", - "log", + "log 0.4.20", "names", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "rand 0.8.5", "regex", "rpassword", @@ -9871,15 +10221,15 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-keyring", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-keystore", + "sp-panic-handler", + "sp-runtime", + "sp-version", "thiserror", "tiny-bip39", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -9888,24 +10238,24 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fnv", - "futures", - "log", - "parity-scale-codec 3.6.5", + "futures 0.3.28", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "sc-executor", "sc-transaction-pool-api", "sc-utils", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-database", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-externalities", + "sp-keystore", + "sp-runtime", + "sp-state-machine", "sp-statement-store", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-storage", "substrate-prometheus-endpoint", ] @@ -9919,20 +10269,20 @@ dependencies = [ "kvdb-memorydb", "kvdb-rocksdb", "linked-hash-map", - "log", + "log 0.4.20", "parity-db", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "sc-client-api", "sc-state-db", "schnellru", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-database", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-state-machine", + "sp-trie", ] [[package]] @@ -9941,21 +10291,21 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", + "futures 0.3.28", "futures-timer", "libp2p-identity", - "log", + "log 0.4.20", "mockall", "parking_lot 0.12.1", "sc-client-api", "sc-utils", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-state-machine", "substrate-prometheus-endpoint", "thiserror", ] @@ -9966,25 +10316,25 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", - "log", - "parity-scale-codec 3.6.5", + "futures 0.3.28", + "log 0.4.20", + "parity-scale-codec", "sc-block-builder", "sc-client-api", "sc-consensus", "sc-consensus-slots", "sc-telemetry", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-aura", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -9996,12 +10346,12 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "fork-tree", - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "num-bigint", "num-rational", "num-traits", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -10010,17 +10360,17 @@ dependencies = [ "sc-keystore", "sc-telemetry", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", "sp-block-builder", "sp-blockchain", "sp-consensus", "sp-consensus-babe", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -10030,20 +10380,20 @@ name = "sc-consensus-babe-rpc" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", "sc-rpc-api", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", "sp-blockchain", "sp-consensus", "sp-consensus-babe", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-keystore", + "sp-runtime", "thiserror", ] @@ -10056,9 +10406,9 @@ dependencies = [ "async-channel", "async-trait", "fnv", - "futures", - "log", - "parity-scale-codec 3.6.5", + "futures 0.3.28", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -10068,16 +10418,16 @@ dependencies = [ "sc-network-gossip", "sc-network-sync", "sc-utils", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-keystore", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", "wasm-timer", @@ -10088,17 +10438,17 @@ name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "sc-consensus-beefy", "sc-rpc", "serde", "sp-consensus-beefy", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "thiserror", ] @@ -10108,11 +10458,11 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fork-tree", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "sc-client-api", "sc-consensus", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -10126,10 +10476,10 @@ dependencies = [ "dyn-clone", "finality-grandpa", "fork-tree", - "futures", + "futures 0.3.28", "futures-timer", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", @@ -10142,15 +10492,15 @@ dependencies = [ "sc-telemetry", "sc-utils", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-keystore", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -10161,17 +10511,17 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", - "futures", + "futures 0.3.28", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-client-api", "sc-consensus-grandpa", "sc-rpc", "serde", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "thiserror", ] @@ -10182,11 +10532,11 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "assert_matches", "async-trait", - "futures", + "futures 0.3.28", "futures-timer", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-client-api", "sc-consensus", "sc-consensus-aura", @@ -10195,17 +10545,17 @@ dependencies = [ "sc-transaction-pool", "sc-transaction-pool-api", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", "sp-consensus-aura", "sp-consensus-babe", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-timestamp", "substrate-prometheus-endpoint", "thiserror", ] @@ -10216,21 +10566,21 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", + "futures 0.3.28", "futures-timer", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-client-api", "sc-consensus", "sc-telemetry", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", ] [[package]] @@ -10239,19 +10589,19 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lru 0.8.1", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "sc-executor-common", "sc-executor-wasmtime", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-core", + "sp-externalities", + "sp-io", + "sp-panic-handler", + "sp-runtime-interface", + "sp-trie", + "sp-version", + "sp-wasm-interface", "tracing", ] @@ -10262,7 +10612,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-wasm-interface", "thiserror", "wasm-instrument 0.3.0", ] @@ -10273,16 +10623,16 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "anyhow", - "cfg-if", + "cfg-if 1.0.0", "libc", - "log", + "log 0.4.20", "once_cell", "rustix 0.36.15", "sc-allocator", "sc-executor-common", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "wasmtime 8.0.1", + "sp-runtime-interface", + "sp-wasm-interface", + "wasmtime", ] [[package]] @@ -10291,14 +10641,14 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ansi_term", - "futures", + "futures 0.3.28", "futures-timer", - "log", + "log 0.4.20", "sc-client-api", "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -10309,9 +10659,9 @@ dependencies = [ "array-bytes", "parking_lot 0.12.1", "serde_json", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-application-crypto", + "sp-core", + "sp-keystore", "thiserror", ] @@ -10324,18 +10674,18 @@ dependencies = [ "async-channel", "async-trait", "asynchronous-codec", - "bytes", + "bytes 1.5.0", "either", "fnv", - "futures", + "futures 0.3.28", "futures-timer", "ip_network", "libp2p", "linked_hash_set", - "log", + "log 0.4.20", "lru 0.8.1", "mockall", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -10349,11 +10699,11 @@ dependencies = [ "serde_json", "smallvec 1.11.0", "snow", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", @@ -10367,16 +10717,16 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-channel", "cid", - "futures", + "futures 0.3.28", "libp2p-identity", - "log", + "log 0.4.20", "prost", "prost-build", "sc-client-api", "sc-network", "sc-network-common", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "thiserror", "unsigned-varint", ] @@ -10389,11 +10739,11 @@ dependencies = [ "array-bytes", "async-trait", "bitflags 1.3.2", - "bytes", - "futures", + "bytes 1.5.0", + "futures 0.3.28", "futures-timer", "libp2p-identity", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prost-build", "sc-consensus", "sc-peerset", @@ -10403,7 +10753,7 @@ dependencies = [ "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", "zeroize", @@ -10415,15 +10765,15 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ahash 0.8.3", - "futures", + "futures 0.3.28", "futures-timer", "libp2p", - "log", + "log 0.4.20", "lru 0.8.1", "sc-network", "sc-network-common", "sc-peerset", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "substrate-prometheus-endpoint", "tracing", ] @@ -10435,10 +10785,10 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "array-bytes", "async-channel", - "futures", + "futures 0.3.28", "libp2p-identity", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "prost", "prost-build", "sc-client-api", @@ -10446,8 +10796,8 @@ dependencies = [ "sc-network-common", "sc-peerset", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "thiserror", ] @@ -10460,13 +10810,13 @@ dependencies = [ "async-channel", "async-trait", "fork-tree", - "futures", + "futures 0.3.28", "futures-timer", "libp2p", - "log", + "log 0.4.20", "lru 0.8.1", "mockall", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "prost", "prost-build", "sc-client-api", @@ -10476,12 +10826,12 @@ dependencies = [ "sc-peerset", "sc-utils", "smallvec 1.11.0", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "substrate-prometheus-endpoint", "thiserror", ] @@ -10492,17 +10842,17 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "futures", + "futures 0.3.28", "libp2p", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "pin-project", "sc-network", "sc-network-common", "sc-peerset", "sc-utils", "sp-consensus", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "substrate-prometheus-endpoint", ] @@ -10512,16 +10862,16 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "bytes", + "bytes 1.5.0", "fnv", - "futures", + "futures 0.3.28", "futures-timer", - "hyper", + "hyper 0.14.27", "hyper-rustls 0.23.2", "libp2p", "num_cpus", "once_cell", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "rand 0.8.5", "sc-client-api", @@ -10529,10 +10879,10 @@ dependencies = [ "sc-network-common", "sc-peerset", "sc-utils", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-core", "sp-offchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "threadpool", "tracing", ] @@ -10542,14 +10892,14 @@ name = "sc-peerset" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "libp2p-identity", - "log", + "log 0.4.20", "parking_lot 0.12.1", "partial_sort", "sc-utils", "serde_json", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", "wasm-timer", ] @@ -10558,7 +10908,7 @@ name = "sc-proposer-metrics" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log", + "log 0.4.20", "substrate-prometheus-endpoint", ] @@ -10567,10 +10917,10 @@ name = "sc-rpc" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "sc-block-builder", "sc-chain-spec", @@ -10580,17 +10930,17 @@ dependencies = [ "sc-transaction-pool-api", "sc-utils", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-keystore", "sp-offchain", "sp-rpc", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "sp-session", "sp-statement-store", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "tokio", + "sp-version", + "tokio 1.32.0", ] [[package]] @@ -10599,16 +10949,16 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "sc-chain-spec", "sc-transaction-pool-api", "scale-info", "serde", "serde_json", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-rpc", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-version", "thiserror", ] @@ -10617,12 +10967,12 @@ name = "sc-rpc-server" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "http", + "http 0.2.9", "jsonrpsee", - "log", + "log 0.4.20", "serde_json", "substrate-prometheus-endpoint", - "tokio", + "tokio 1.32.0", "tower", "tower-http", ] @@ -10633,22 +10983,22 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "futures", + "futures 0.3.28", "futures-util", "hex", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "sc-chain-spec", "sc-client-api", "sc-transaction-pool-api", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-version", "thiserror", "tokio-stream", ] @@ -10661,11 +11011,11 @@ dependencies = [ "async-trait", "directories", "exit-future", - "futures", + "futures 0.3.28", "futures-timer", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -10696,25 +11046,25 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", "sp-consensus", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime", "sp-session", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-state-machine", + "sp-storage", "sp-transaction-pool", "sp-transaction-storage-proof", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-trie", + "sp-version", "static_init", "substrate-prometheus-endpoint", "tempfile", "thiserror", - "tokio", + "tokio 1.32.0", "tracing", "tracing-futures", ] @@ -10724,10 +11074,10 @@ name = "sc-state-db" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", ] [[package]] @@ -10737,13 +11087,13 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "clap", "fs4", - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "sc-client-db", "sc-utils", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -10752,7 +11102,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -10761,7 +11111,7 @@ dependencies = [ "serde", "serde_json", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "thiserror", ] @@ -10770,18 +11120,18 @@ name = "sc-sysinfo" version = "6.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "libc", - "log", + "log 0.4.20", "rand 0.8.5", - "rand_pcg", + "rand_pcg 0.3.1", "regex", "sc-telemetry", "serde", "serde_json", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-io", + "sp-std 5.0.0", ] [[package]] @@ -10790,9 +11140,9 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "chrono", - "futures", + "futures 0.3.28", "libp2p", - "log", + "log 0.4.20", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -10813,7 +11163,7 @@ dependencies = [ "chrono", "lazy_static", "libc", - "log", + "log 0.4.20", "once_cell", "parking_lot 0.12.1", "regex", @@ -10822,12 +11172,12 @@ dependencies = [ "sc-rpc-server", "sc-tracing-proc-macro", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", "sp-rpc", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-tracing", "thiserror", "tracing", "tracing-log", @@ -10851,22 +11201,22 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", + "futures 0.3.28", "futures-timer", "linked-hash-map", - "log", + "log 0.4.20", "num-traits", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "sc-client-api", "sc-transaction-pool-api", "sc-utils", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-tracing", "sp-transaction-pool", "substrate-prometheus-endpoint", "thiserror", @@ -10878,11 +11228,11 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "serde", "sp-blockchain", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", "thiserror", ] @@ -10892,13 +11242,13 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-channel", - "futures", + "futures 0.3.28", "futures-timer", "lazy_static", - "log", + "log 0.4.20", "parking_lot 0.12.1", "prometheus", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", ] [[package]] @@ -10907,7 +11257,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd7aca73785181cc41f0bbe017263e682b585ca660540ba569133901d013ecf" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", ] @@ -10918,8 +11268,8 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0459d00b0dbd2e765009924a78ef36b2ff7ba116292d732f00eb0ed8e465d15" dependencies = [ - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "scale-bits", "scale-decode-derive", "scale-info", @@ -10946,8 +11296,8 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0401b7cdae8b8aa33725f3611a051358d5b32887ecaa0fda5953a775b2d4d76" dependencies = [ - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "scale-bits", "scale-encode-derive", "scale-info", @@ -10974,10 +11324,10 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" dependencies = [ - "bitvec 1.0.1", - "cfg-if", + "bitvec", + "cfg-if 1.0.0", "derive_more", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info-derive", "serde", ] @@ -11004,7 +11354,7 @@ dependencies = [ "blake2", "either", "frame-metadata", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-bits", "scale-decode", "scale-encode", @@ -11030,7 +11380,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" dependencies = [ "ahash 0.8.3", - "cfg-if", + "cfg-if 1.0.0", "hashbrown 0.13.2", ] @@ -11052,6 +11402,18 @@ dependencies = [ "zeroize", ] +[[package]] +name = "scoped-tls" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" + [[package]] name = "scopeguard" version = "1.2.0" @@ -11105,7 +11467,7 @@ dependencies = [ "rand 0.8.5", "substring", "thiserror", - "url", + "url 2.4.1", ] [[package]] @@ -11136,31 +11498,13 @@ dependencies = [ "zeroize", ] -[[package]] -name = "secp256k1" -version = "0.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c42e6f1735c5f00f51e43e28d6634141f2bcad10931b2609ddd74a86d751260" -dependencies = [ - "secp256k1-sys 0.4.2", -] - [[package]] name = "secp256k1" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62" dependencies = [ - "secp256k1-sys 0.6.1", -] - -[[package]] -name = "secp256k1-sys" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "957da2573cde917463ece3570eab4a0b3f19de6f1646cde62e6fd3868f566036" -dependencies = [ - "cc", + "secp256k1-sys", ] [[package]] @@ -11295,7 +11639,7 @@ version = "1.0.105" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360" dependencies = [ - "itoa", + "itoa 1.0.9", "ryu", "serde", ] @@ -11327,7 +11671,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ "form_urlencoded", - "itoa", + "itoa 1.0.9", "ryu", "serde", ] @@ -11339,23 +11683,38 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" dependencies = [ "block-buffer 0.9.0", - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "digest 0.9.0", "opaque-debug 0.3.0", ] +[[package]] +name = "sha1" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" +dependencies = [ + "sha1_smol", +] + [[package]] name = "sha1" version = "0.10.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "digest 0.10.7", ] +[[package]] +name = "sha1_smol" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" + [[package]] name = "sha2" version = "0.8.2" @@ -11375,7 +11734,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" dependencies = [ "block-buffer 0.9.0", - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "digest 0.9.0", "opaque-debug 0.3.0", @@ -11387,7 +11746,7 @@ version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "cpufeatures", "digest 0.10.7", ] @@ -11405,18 +11764,6 @@ dependencies = [ "opaque-debug 0.2.3", ] -[[package]] -name = "sha3" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" -dependencies = [ - "block-buffer 0.9.0", - "digest 0.9.0", - "keccak", - "opaque-debug 0.3.0", -] - [[package]] name = "sha3" version = "0.10.8" @@ -11502,13 +11849,19 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" +[[package]] +name = "slab" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" + [[package]] name = "slab" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -11574,7 +11927,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -11594,23 +11947,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64 0.13.1", - "bytes", + "bytes 1.5.0", "flate2", - "futures", - "http", + "futures 0.3.28", + "http 0.2.9", "httparse", - "log", + "log 0.4.20", "rand 0.8.5", "sha-1", ] [[package]] name = "solang-parser" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c792fe9fae2a2f716846f214ca10d5a1e21133e0bf36cef34bcc4a852467b21" +checksum = "7cb9fa2fa2fa6837be8a2495486ff92e3ffe68a99b6eeba288e139efdd842457" dependencies = [ - "itertools", + "itertools 0.11.0", "lalrpop", "lalrpop-util", "phf", @@ -11618,58 +11971,26 @@ dependencies = [ "unicode-xid", ] -[[package]] -name = "sp-api" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "hash-db 0.16.0", - "log", - "parity-scale-codec 3.6.5", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-version 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", -] - [[package]] name = "sp-api" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-api-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api-proc-macro", + "sp-core", "sp-metadata-ir", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-state-machine", + "sp-std 5.0.0", + "sp-trie", + "sp-version", "thiserror", ] -[[package]] -name = "sp-api-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "Inflector", - "blake2", - "expander", - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" @@ -11684,44 +12005,17 @@ dependencies = [ "syn 2.0.31", ] -[[package]] -name = "sp-application-crypto" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "parity-scale-codec 3.6.5", - "scale-info", - "serde", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", -] - [[package]] name = "sp-application-crypto" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", - "scale-info", - "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-arithmetic" -version = "6.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "integer-sqrt", - "num-traits", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "static_assertions", + "sp-core", + "sp-io", + "sp-std 5.0.0", ] [[package]] @@ -11731,10 +12025,10 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "integer-sqrt", "num-traits", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0", "static_assertions", ] @@ -11743,12 +12037,12 @@ name = "sp-authority-discovery" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -11756,11 +12050,11 @@ name = "sp-block-builder" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-api", + "sp-inherents", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -11768,16 +12062,16 @@ name = "sp-blockchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "lru 0.8.1", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-consensus", "sp-database", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -11787,12 +12081,12 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures", - "log", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "futures 0.3.28", + "log 0.4.20", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-state-machine", "thiserror", ] @@ -11802,16 +12096,16 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", "sp-consensus", "sp-consensus-slots", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-inherents", + "sp-runtime", + "sp-std 5.0.0", + "sp-timestamp", ] [[package]] @@ -11820,19 +12114,19 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", "sp-consensus", "sp-consensus-slots", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-inherents", + "sp-keystore", + "sp-runtime", + "sp-std 5.0.0", + "sp-timestamp", ] [[package]] @@ -11841,16 +12135,16 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lazy_static", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-io", "sp-mmr-primitives", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", "strum 0.24.1", ] @@ -11860,16 +12154,16 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-keystore", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -11877,49 +12171,50 @@ name = "sp-consensus-slots" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-timestamp 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0", + "sp-timestamp", ] [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "base58", "bitflags 1.3.2", "blake2", "bounded-collections", + "bs58 0.4.0", "dyn-clonable", "ed25519-zebra", - "futures", + "futures 0.3.28", "hash-db 0.16.0", "hash256-std-hasher", - "impl-serde 0.4.0", + "impl-serde", "lazy_static", "libsecp256k1", - "log", + "log 0.4.20", "merlin", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", - "primitive-types 0.12.1", + "paste", + "primitive-types", "rand 0.8.5", "regex", "scale-info", "schnorrkel", - "secp256k1 0.24.3", + "secp256k1", "secrecy", "serde", - "sp-core-hashing 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core-hashing 5.0.0", + "sp-debug-derive", + "sp-externalities", + "sp-runtime-interface", + "sp-std 5.0.0", + "sp-storage", "ss58-registry", "substrate-bip39", "thiserror", @@ -11928,74 +12223,16 @@ dependencies = [ ] [[package]] -name = "sp-core" -version = "7.0.0" +name = "sp-core-hashing" +version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" -dependencies = [ - "array-bytes", - "bitflags 1.3.2", - "blake2", - "bounded-collections", - "bs58 0.4.0", - "dyn-clonable", - "ed25519-zebra", - "futures", - "hash-db 0.16.0", - "hash256-std-hasher", - "impl-serde 0.4.0", - "lazy_static", - "libsecp256k1", - "log", - "merlin", - "parity-scale-codec 3.6.5", - "parking_lot 0.12.1", - "paste", - "primitive-types 0.12.1", - "rand 0.8.5", - "regex", - "scale-info", - "schnorrkel", - "secp256k1 0.24.3", - "secrecy", - "serde", - "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "ss58-registry", - "substrate-bip39", - "thiserror", - "tiny-bip39", - "zeroize", -] - -[[package]] -name = "sp-core-hashing" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" dependencies = [ "blake2b_simd", "byteorder", "digest 0.10.7", "sha2 0.10.7", "sha3 0.10.8", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "twox-hash", -] - -[[package]] -name = "sp-core-hashing" -version = "5.0.0" -source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" -dependencies = [ - "blake2b_simd", - "byteorder", - "digest 0.10.7", - "sha2 0.10.7", - "sha3 0.10.8", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0", "twox-hash", ] @@ -12014,17 +12251,6 @@ dependencies = [ "twox-hash", ] -[[package]] -name = "sp-core-hashing-proc-macro" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "proc-macro2", - "quote", - "sp-core-hashing 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "syn 1.0.109", -] - [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" @@ -12032,7 +12258,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "proc-macro2", "quote", - "sp-core-hashing 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core-hashing 5.0.0", "syn 2.0.31", ] @@ -12045,16 +12271,6 @@ dependencies = [ "parking_lot 0.12.1", ] -[[package]] -name = "sp-debug-derive" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "sp-debug-derive" version = "5.0.0" @@ -12065,41 +12281,15 @@ dependencies = [ "syn 2.0.31", ] -[[package]] -name = "sp-externalities" -version = "0.13.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "environmental", - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", -] - [[package]] name = "sp-externalities" version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "environmental", - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-inherents" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "async-trait", - "impl-trait-for-tuples", - "parity-scale-codec 3.6.5", - "scale-info", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", + "parity-scale-codec", + "sp-std 5.0.0", + "sp-storage", ] [[package]] @@ -12109,61 +12299,36 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "impl-trait-for-tuples", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", "thiserror", ] -[[package]] -name = "sp-io" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "bytes", - "ed25519 1.5.3", - "ed25519-dalek 1.0.1", - "futures", - "libsecp256k1", - "log", - "parity-scale-codec 3.6.5", - "secp256k1 0.24.3", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-keystore 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-state-machine 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "tracing", - "tracing-core", -] - [[package]] name = "sp-io" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "bytes", + "bytes 1.5.0", "ed25519 1.5.3", "ed25519-dalek 1.0.1", - "futures", + "futures 0.3.28", "libsecp256k1", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "rustversion", - "secp256k1 0.24.3", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-keystore 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "secp256k1", + "sp-core", + "sp-externalities", + "sp-keystore", + "sp-runtime-interface", + "sp-state-machine", + "sp-std 5.0.0", + "sp-tracing", + "sp-trie", "tracing", "tracing-core", ] @@ -12174,38 +12339,22 @@ version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lazy_static", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", "strum 0.24.1", ] -[[package]] -name = "sp-keystore" -version = "0.13.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "async-trait", - "futures", - "merlin", - "parity-scale-codec 3.6.5", - "parking_lot 0.12.1", - "schnorrkel", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", -] - [[package]] name = "sp-keystore" version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", - "parity-scale-codec 3.6.5", + "futures 0.3.28", + "parity-scale-codec", "parking_lot 0.12.1", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-externalities", "thiserror", ] @@ -12224,9 +12373,9 @@ version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-metadata", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-std 5.0.0", ] [[package]] @@ -12235,15 +12384,15 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ckb-merkle-mountain-range", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-core", + "sp-debug-derive", + "sp-runtime", + "sp-std 5.0.0", "thiserror", ] @@ -12252,13 +12401,13 @@ name = "sp-npos-elections" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -12266,19 +12415,9 @@ name = "sp-offchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-panic-handler" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "backtrace", - "lazy_static", - "regex", + "sp-api", + "sp-core", + "sp-runtime", ] [[package]] @@ -12298,29 +12437,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "rustc-hash", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-runtime" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "either", - "hash256-std-hasher", - "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", - "paste", - "rand 0.8.5", - "scale-info", - "serde", - "sp-application-crypto 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-io 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-weights 4.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-core", ] [[package]] @@ -12331,36 +12448,18 @@ dependencies = [ "either", "hash256-std-hasher", "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "paste", "rand 0.8.5", "scale-info", "serde", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-runtime-interface" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "bytes", - "impl-trait-for-tuples", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", - "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-storage 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-tracing 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-wasm-interface 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "static_assertions", + "sp-application-crypto", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-std 5.0.0", + "sp-weights", ] [[package]] @@ -12368,31 +12467,19 @@ name = "sp-runtime-interface" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "bytes", + "bytes 1.5.0", "impl-trait-for-tuples", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface-proc-macro 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-storage 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-tracing 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-wasm-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "primitive-types", + "sp-externalities", + "sp-runtime-interface-proc-macro", + "sp-std 5.0.0", + "sp-storage", + "sp-tracing", + "sp-wasm-interface", "static_assertions", ] -[[package]] -name = "sp-runtime-interface-proc-macro" -version = "6.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "Inflector", - "proc-macro-crate 1.1.3", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" @@ -12410,25 +12497,13 @@ name = "sp-session" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", - "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-staking 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-staking" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "sp-api", + "sp-core", + "sp-runtime", + "sp-staking", + "sp-std 5.0.0", ] [[package]] @@ -12436,32 +12511,12 @@ name = "sp-staking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-state-machine" -version = "0.13.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "hash-db 0.16.0", - "log", - "parity-scale-codec 3.6.5", - "parking_lot 0.12.1", - "rand 0.8.5", - "smallvec 1.11.0", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-externalities 0.13.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-panic-handler 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-trie 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", - "tracing", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -12470,16 +12525,16 @@ version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "parking_lot 0.12.1", "rand 0.8.5", "smallvec 1.11.0", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-panic-handler 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-externalities", + "sp-panic-handler", + "sp-std 5.0.0", + "sp-trie", "thiserror", "tracing", ] @@ -12489,24 +12544,19 @@ name = "sp-statement-store" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-application-crypto 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-externalities 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime-interface 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-application-crypto", + "sp-core", + "sp-externalities", + "sp-runtime", + "sp-runtime-interface", + "sp-std 5.0.0", "thiserror", ] -[[package]] -name = "sp-std" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" - [[package]] name = "sp-std" version = "5.0.0" @@ -12518,45 +12568,17 @@ version = "8.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "53458e3c57df53698b3401ec0934bea8e8cfce034816873c0b0abbd83d7bac0d" -[[package]] -name = "sp-storage" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "impl-serde 0.4.0", - "parity-scale-codec 3.6.5", - "ref-cast", - "serde", - "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", -] - [[package]] name = "sp-storage" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "impl-serde 0.4.0", - "parity-scale-codec 3.6.5", + "impl-serde", + "parity-scale-codec", "ref-cast", "serde", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-timestamp" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "async-trait", - "futures-timer", - "log", - "parity-scale-codec 3.6.5", - "sp-inherents 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", + "sp-debug-derive", + "sp-std 5.0.0", ] [[package]] @@ -12566,33 +12588,21 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "futures-timer", - "log", - "parity-scale-codec 3.6.5", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log 0.4.20", + "parity-scale-codec", + "sp-inherents", + "sp-runtime", + "sp-std 5.0.0", "thiserror", ] -[[package]] -name = "sp-tracing" -version = "6.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "tracing", - "tracing-core", - "tracing-subscriber", -] - [[package]] name = "sp-tracing" version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "parity-scale-codec", + "sp-std 5.0.0", "tracing", "tracing-core", "tracing-subscriber", @@ -12603,8 +12613,8 @@ name = "sp-transaction-pool" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", + "sp-runtime", ] [[package]] @@ -12613,37 +12623,14 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "log", - "parity-scale-codec 3.6.5", - "scale-info", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-inherents 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", -] - -[[package]] -name = "sp-trie" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "ahash 0.8.3", - "hash-db 0.16.0", - "hashbrown 0.12.3", - "lazy_static", - "memory-db", - "nohash-hasher", - "parity-scale-codec 3.6.5", - "parking_lot 0.12.1", + "log 0.4.20", + "parity-scale-codec", "scale-info", - "schnellru", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", - "tracing", - "trie-db", - "trie-root", + "sp-core", + "sp-inherents", + "sp-runtime", + "sp-std 5.0.0", + "sp-trie", ] [[package]] @@ -12657,88 +12644,46 @@ dependencies = [ "lazy_static", "memory-db", "nohash-hasher", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "parking_lot 0.12.1", "scale-info", "schnellru", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-std 5.0.0", "thiserror", "tracing", "trie-db", "trie-root", ] -[[package]] -name = "sp-version" -version = "5.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "impl-serde 0.4.0", - "parity-scale-codec 3.6.5", - "parity-wasm", - "scale-info", - "serde", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-runtime 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "thiserror", -] - [[package]] name = "sp-version" version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "impl-serde 0.4.0", - "parity-scale-codec 3.6.5", + "impl-serde", + "parity-scale-codec", "parity-wasm", "scale-info", "serde", - "sp-core-hashing-proc-macro 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-version-proc-macro 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core-hashing-proc-macro", + "sp-runtime", + "sp-std 5.0.0", + "sp-version-proc-macro", "thiserror", ] -[[package]] -name = "sp-version-proc-macro" -version = "4.0.0-dev" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "parity-scale-codec 3.6.5", - "proc-macro2", - "quote", - "syn 1.0.109", -] - [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "proc-macro2", "quote", "syn 2.0.31", ] -[[package]] -name = "sp-wasm-interface" -version = "7.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "anyhow", - "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "wasmi 0.13.2", - "wasmtime 6.0.2", -] - [[package]] name = "sp-wasm-interface" version = "7.0.0" @@ -12746,26 +12691,11 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "anyhow", "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log 0.4.20", + "parity-scale-codec", + "sp-std 5.0.0", "wasmi 0.13.2", - "wasmtime 8.0.1", -] - -[[package]] -name = "sp-weights" -version = "4.0.0" -source = "git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc#23d850c0e4e25f0d278d5eaf32c5a1e29e6216ce" -dependencies = [ - "parity-scale-codec 3.6.5", - "scale-info", - "serde", - "smallvec 1.11.0", - "sp-arithmetic 6.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-core 7.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-debug-derive 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", - "sp-std 5.0.0 (git+https://github.com/octopus-network/substrate.git?branch=polkadot-v0.9.40-rc)", + "wasmtime", ] [[package]] @@ -12773,14 +12703,14 @@ name = "sp-weights" version = "4.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "serde", "smallvec 1.11.0", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-debug-derive 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-core", + "sp-debug-derive", + "sp-std 5.0.0", ] [[package]] @@ -12854,7 +12784,7 @@ dependencies = [ "parking_lot 0.11.2", "parking_lot_core 0.8.6", "static_init_macro", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -12870,6 +12800,15 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "string" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" +dependencies = [ + "bytes 0.4.12", +] + [[package]] name = "string_cache" version = "0.8.7" @@ -12970,8 +12909,8 @@ dependencies = [ "ring", "subtle", "thiserror", - "tokio", - "url", + "tokio 1.32.0", + "url 2.4.1", "webrtc-util", ] @@ -12980,14 +12919,14 @@ name = "substrate-account-filter" version = "4.0.0" source = "git+https://github.com/ggxchain/ggx-frames.git?branch=polkadot-v0.9.43#4ec9201642e0772b54be19b3ca65204e307ff4e7" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "parity-scale-codec 3.6.5", + "frame-support", + "frame-system", + "parity-scale-codec", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -13010,10 +12949,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b5bbfa79abbae15dd642ea8176a21a635ff3c00059961d1ea27ad04e5b441c" dependencies = [ "byteorder", - "crunchy", + "crunchy 0.2.2", "lazy_static", "rand 0.8.5", - "rustc-hex", + "rustc-hex 2.1.0", ] [[package]] @@ -13030,17 +12969,17 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-system-rpc-runtime-api", - "futures", + "futures 0.3.28", "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-rpc-api", "sc-transaction-pool-api", - "sp-api 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-api", "sp-block-builder", "sp-blockchain", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", ] [[package]] @@ -13048,11 +12987,11 @@ name = "substrate-prometheus-endpoint" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "hyper", - "log", + "hyper 0.14.27", + "log 0.4.20", "prometheus", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -13062,10 +13001,10 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "jsonrpsee", - "log", + "log 0.4.20", "sc-rpc-api", "serde", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", ] [[package]] @@ -13074,16 +13013,16 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "sc-client-api", "sc-rpc-api", "scale-info", "serde", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-state-machine 0.13.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-trie 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-core", + "sp-runtime", + "sp-state-machine", + "sp-trie", "trie-db", ] @@ -13092,9 +13031,9 @@ name = "substrate-test-utils" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures", + "futures 0.3.28", "substrate-test-utils-derive", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -13131,7 +13070,7 @@ version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" dependencies = [ - "autocfg", + "autocfg 1.1.0", ] [[package]] @@ -13159,13 +13098,13 @@ dependencies = [ "derivative", "either", "frame-metadata", - "futures", + "futures 0.3.28", "getrandom 0.2.10", "hex", - "impl-serde 0.4.0", + "impl-serde", "jsonrpsee", - "parity-scale-codec 3.6.5", - "primitive-types 0.12.1", + "parity-scale-codec", + "primitive-types", "scale-bits", "scale-decode", "scale-encode", @@ -13189,14 +13128,14 @@ dependencies = [ "heck", "hex", "jsonrpsee", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "proc-macro2", "quote", "scale-info", "subxt-metadata", "syn 2.0.31", "thiserror", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -13216,7 +13155,7 @@ version = "0.29.0" source = "git+https://github.com/paritytech/subxt?tag=v0.29.0#e40a8629e279e80a7fbb56ff553a430a36612956" dependencies = [ "frame-metadata", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", "sp-core-hashing 9.0.0", "thiserror", @@ -13238,7 +13177,7 @@ dependencies = [ "serde_json", "sha2 0.10.7", "thiserror", - "url", + "url 2.4.1", "zip", ] @@ -13315,7 +13254,7 @@ version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "fastrand 2.0.0", "redox_syscall 0.3.5", "rustix 0.38.11", @@ -13328,11 +13267,11 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c518c082146825f10d6f9a32159ae46edcfd7dae8ac630c8067594bb2a784d72" dependencies = [ - "bytes", + "bytes 1.5.0", "ed25519 1.5.3", "ed25519-dalek 1.0.1", "flex-error", - "futures", + "futures 0.3.28", "num-traits", "once_cell", "prost", @@ -13369,7 +13308,7 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "890f1fb6dee48900c85f0cdf711ebf130e505ac09ad918cee5c34ed477973b05" dependencies = [ - "bytes", + "bytes 1.5.0", "flex-error", "num-derive", "num-traits", @@ -13389,7 +13328,7 @@ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" dependencies = [ "dirs-next", "rustversion", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -13451,7 +13390,7 @@ version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "once_cell", ] @@ -13482,7 +13421,7 @@ checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" dependencies = [ "libc", "wasi 0.10.0+wasi-snapshot-preview1", - "winapi", + "winapi 0.3.9", ] [[package]] @@ -13491,7 +13430,7 @@ version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" dependencies = [ - "itoa", + "itoa 1.0.9", "serde", "time-core", "time-macros", @@ -13531,13 +13470,22 @@ dependencies = [ "zeroize", ] +[[package]] +name = "tiny-keccak" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" +dependencies = [ + "crunchy 0.2.2", +] + [[package]] name = "tiny-keccak" version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy", + "crunchy 0.2.2", ] [[package]] @@ -13565,6 +13513,30 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" +[[package]] +name = "tokio" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "mio 0.6.23", + "num_cpus", + "tokio-codec", + "tokio-current-thread", + "tokio-executor", + "tokio-fs", + "tokio-io", + "tokio-reactor", + "tokio-sync", + "tokio-tcp", + "tokio-threadpool", + "tokio-timer 0.2.13", + "tokio-udp", + "tokio-uds 0.2.7", +] + [[package]] name = "tokio" version = "1.32.0" @@ -13572,9 +13544,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ "backtrace", - "bytes", + "bytes 1.5.0", "libc", - "mio", + "mio 0.8.8", "num_cpus", "parking_lot 0.12.1", "pin-project-lite 0.2.13", @@ -13584,6 +13556,89 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "tokio-buf" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" +dependencies = [ + "bytes 0.4.12", + "either", + "futures 0.1.31", +] + +[[package]] +name = "tokio-codec" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "tokio-io", +] + +[[package]] +name = "tokio-core" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87b1395334443abca552f63d4f61d0486f12377c2ba8b368e523f89e828cffd4" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "iovec", + "log 0.4.20", + "mio 0.6.23", + "scoped-tls", + "tokio 0.1.22", + "tokio-executor", + "tokio-io", + "tokio-reactor", + "tokio-timer 0.2.13", +] + +[[package]] +name = "tokio-current-thread" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" +dependencies = [ + "futures 0.1.31", + "tokio-executor", +] + +[[package]] +name = "tokio-executor" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" +dependencies = [ + "crossbeam-utils 0.7.2", + "futures 0.1.31", +] + +[[package]] +name = "tokio-fs" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" +dependencies = [ + "futures 0.1.31", + "tokio-io", + "tokio-threadpool", +] + +[[package]] +name = "tokio-io" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "log 0.4.20", +] + [[package]] name = "tokio-macros" version = "2.1.0" @@ -13596,13 +13651,22 @@ dependencies = [ ] [[package]] -name = "tokio-native-tls" -version = "0.3.1" +name = "tokio-reactor" +version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" dependencies = [ - "native-tls", - "tokio", + "crossbeam-utils 0.7.2", + "futures 0.1.31", + "lazy_static", + "log 0.4.20", + "mio 0.6.23", + "num_cpus", + "parking_lot 0.9.0", + "slab 0.4.9", + "tokio-executor", + "tokio-io", + "tokio-sync", ] [[package]] @@ -13612,7 +13676,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ "rustls 0.20.9", - "tokio", + "tokio 1.32.0", "webpki 0.22.1", ] @@ -13623,7 +13687,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ "rustls 0.21.7", - "tokio", + "tokio 1.32.0", ] [[package]] @@ -13634,8 +13698,82 @@ checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", "pin-project-lite 0.2.13", - "tokio", - "tokio-util 0.7.8", + "tokio 1.32.0", + "tokio-util", +] + +[[package]] +name = "tokio-sync" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" +dependencies = [ + "fnv", + "futures 0.1.31", +] + +[[package]] +name = "tokio-tcp" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "iovec", + "mio 0.6.23", + "tokio-io", + "tokio-reactor", +] + +[[package]] +name = "tokio-threadpool" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" +dependencies = [ + "crossbeam-deque 0.7.4", + "crossbeam-queue", + "crossbeam-utils 0.7.2", + "futures 0.1.31", + "lazy_static", + "log 0.4.20", + "num_cpus", + "slab 0.4.9", + "tokio-executor", +] + +[[package]] +name = "tokio-timer" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6131e780037787ff1b3f8aad9da83bca02438b72277850dd6ad0d455e0e20efc" +dependencies = [ + "futures 0.1.31", + "slab 0.3.0", +] + +[[package]] +name = "tokio-timer" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" +dependencies = [ + "crossbeam-utils 0.7.2", + "futures 0.1.31", + "slab 0.4.9", + "tokio-executor", +] + +[[package]] +name = "tokio-tls" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" +dependencies = [ + "futures 0.1.31", + "native-tls", + "tokio-io", ] [[package]] @@ -13645,27 +13783,62 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2" dependencies = [ "futures-util", - "log", + "log 0.4.20", "rustls 0.21.7", - "tokio", + "tokio 1.32.0", "tokio-rustls 0.24.1", "tungstenite", "webpki-roots 0.23.1", ] [[package]] -name = "tokio-util" -version = "0.6.10" +name = "tokio-udp" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" +checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" dependencies = [ - "bytes", - "futures-core", - "futures-io", - "futures-sink", - "log", - "pin-project-lite 0.2.13", - "tokio", + "bytes 0.4.12", + "futures 0.1.31", + "log 0.4.20", + "mio 0.6.23", + "tokio-codec", + "tokio-io", + "tokio-reactor", +] + +[[package]] +name = "tokio-uds" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65ae5d255ce739e8537221ed2942e0445f4b3b813daebac1c0050ddaaa3587f9" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "iovec", + "libc", + "log 0.3.9", + "mio 0.6.23", + "mio-uds", + "tokio-core", + "tokio-io", +] + +[[package]] +name = "tokio-uds" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0" +dependencies = [ + "bytes 0.4.12", + "futures 0.1.31", + "iovec", + "libc", + "log 0.4.20", + "mio 0.6.23", + "mio-uds", + "tokio-codec", + "tokio-io", + "tokio-reactor", ] [[package]] @@ -13674,12 +13847,12 @@ version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" dependencies = [ - "bytes", + "bytes 1.5.0", "futures-core", "futures-io", "futures-sink", "pin-project-lite 0.2.13", - "tokio", + "tokio 1.32.0", "tracing", ] @@ -13744,11 +13917,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ "bitflags 2.4.0", - "bytes", + "bytes 1.5.0", "futures-core", "futures-util", - "http", - "http-body", + "http 0.2.9", + "http-body 0.4.5", "http-range-header", "pin-project-lite 0.2.13", "tower-layer", @@ -13773,8 +13946,8 @@ version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ - "cfg-if", - "log", + "cfg-if 1.0.0", + "log 0.4.20", "pin-project-lite 0.2.13", "tracing-attributes", "tracing-core", @@ -13818,7 +13991,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" dependencies = [ "lazy_static", - "log", + "log 0.4.20", "tracing-core", ] @@ -13855,6 +14028,12 @@ dependencies = [ "tracing-serde", ] +[[package]] +name = "traitobject" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" + [[package]] name = "trie-db" version = "0.27.1" @@ -13863,8 +14042,8 @@ checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85" dependencies = [ "hash-db 0.16.0", "hashbrown 0.13.2", - "log", - "rustc-hex", + "log 0.4.20", + "rustc-hex 2.1.0", "smallvec 1.11.0", ] @@ -13894,7 +14073,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" dependencies = [ "async-trait", - "cfg-if", + "cfg-if 1.0.0", "data-encoding", "enum-as-inner", "futures-channel", @@ -13908,9 +14087,9 @@ dependencies = [ "socket2 0.4.9", "thiserror", "tinyvec", - "tokio", + "tokio 1.32.0", "tracing", - "url", + "url 2.4.1", ] [[package]] @@ -13919,7 +14098,7 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "futures-util", "ipconfig", "lazy_static", @@ -13928,7 +14107,7 @@ dependencies = [ "resolv-conf", "smallvec 1.11.0", "thiserror", - "tokio", + "tokio 1.32.0", "tracing", "trust-dns-proto", ] @@ -13952,16 +14131,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649" dependencies = [ "byteorder", - "bytes", + "bytes 1.5.0", "data-encoding", - "http", + "http 0.2.9", "httparse", - "log", + "log 0.4.20", "rand 0.8.5", "rustls 0.21.7", - "sha1", + "sha1 0.10.5", "thiserror", - "url", + "url 2.4.1", "utf-8", ] @@ -13973,14 +14152,14 @@ checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8" dependencies = [ "async-trait", "base64 0.13.1", - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "md-5", "rand 0.8.5", "ring", "stun", "thiserror", - "tokio", + "tokio 1.32.0", "webrtc-util", ] @@ -13990,12 +14169,18 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "digest 0.10.7", "rand 0.8.5", "static_assertions", ] +[[package]] +name = "typeable" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" + [[package]] name = "typenum" version = "1.16.0" @@ -14008,6 +14193,18 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" +[[package]] +name = "uint" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "754ba11732b9161b94c41798e5197e5e75388d012f760c42adb5000353e98646" +dependencies = [ + "byteorder", + "crunchy 0.1.6", + "heapsize", + "rustc-hex 2.1.0", +] + [[package]] name = "uint" version = "0.9.5" @@ -14015,7 +14212,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" dependencies = [ "byteorder", - "crunchy", + "crunchy 0.2.2", "hex", "static_assertions", ] @@ -14026,6 +14223,15 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" +[[package]] +name = "unicase" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" +dependencies = [ + "version_check 0.1.5", +] + [[package]] name = "unicode-bidi" version = "0.3.13" @@ -14086,7 +14292,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" dependencies = [ "asynchronous-codec", - "bytes", + "bytes 1.5.0", "futures-io", "futures-util", ] @@ -14097,6 +14303,17 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" +[[package]] +name = "url" +version = "1.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" +dependencies = [ + "idna 0.1.5", + "matches", + "percent-encoding 1.0.1", +] + [[package]] name = "url" version = "2.4.1" @@ -14105,7 +14322,7 @@ checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", "idna 0.4.0", - "percent-encoding", + "percent-encoding 2.3.0", ] [[package]] @@ -14151,6 +14368,12 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" +[[package]] +name = "version_check" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" + [[package]] name = "version_check" version = "0.9.4" @@ -14197,6 +14420,17 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "want" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" +dependencies = [ + "futures 0.1.31", + "log 0.4.20", + "try-lock", +] + [[package]] name = "want" version = "0.3.1" @@ -14230,7 +14464,7 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "wasm-bindgen-macro", ] @@ -14241,7 +14475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", - "log", + "log 0.4.20", "once_cell", "proc-macro2", "quote", @@ -14255,7 +14489,7 @@ version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "js-sys", "wasm-bindgen", "web-sys", @@ -14354,7 +14588,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" dependencies = [ - "futures", + "futures 0.3.28", "js-sys", "parking_lot 0.11.2", "pin-utils", @@ -14426,16 +14660,6 @@ dependencies = [ "paste", ] -[[package]] -name = "wasmparser" -version = "0.100.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64b20236ab624147dfbb62cf12a19aaf66af0e41b8398838b66e997d07d269d4" -dependencies = [ - "indexmap 1.9.3", - "url", -] - [[package]] name = "wasmparser" version = "0.102.0" @@ -14443,7 +14667,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" dependencies = [ "indexmap 1.9.3", - "url", + "url 2.4.1", ] [[package]] @@ -14455,31 +14679,6 @@ dependencies = [ "indexmap-nostd", ] -[[package]] -name = "wasmtime" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76a222f5fa1e14b2cefc286f1b68494d7a965f4bf57ec04c59bb62673d639af6" -dependencies = [ - "anyhow", - "bincode", - "cfg-if", - "indexmap 1.9.3", - "libc", - "log", - "object 0.29.0", - "once_cell", - "paste", - "psm", - "serde", - "target-lexicon", - "wasmparser 0.100.0", - "wasmtime-environ 6.0.2", - "wasmtime-jit 6.0.2", - "wasmtime-runtime 6.0.2", - "windows-sys 0.42.0", -] - [[package]] name = "wasmtime" version = "8.0.1" @@ -14488,10 +14687,10 @@ checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" dependencies = [ "anyhow", "bincode", - "cfg-if", + "cfg-if 1.0.0", "indexmap 1.9.3", "libc", - "log", + "log 0.4.20", "object 0.30.4", "once_cell", "paste", @@ -14499,31 +14698,22 @@ dependencies = [ "rayon", "serde", "target-lexicon", - "wasmparser 0.102.0", + "wasmparser", "wasmtime-cache", "wasmtime-cranelift", - "wasmtime-environ 8.0.1", - "wasmtime-jit 8.0.1", - "wasmtime-runtime 8.0.1", + "wasmtime-environ", + "wasmtime-jit", + "wasmtime-runtime", "windows-sys 0.45.0", ] -[[package]] -name = "wasmtime-asm-macros" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4407a7246e7d2f3d8fb1cf0c72fda8dbafdb6dd34d555ae8bea0e5ae031089cc" -dependencies = [ - "cfg-if", -] - [[package]] name = "wasmtime-asm-macros" version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", ] [[package]] @@ -14537,7 +14727,7 @@ dependencies = [ "bincode", "directories-next", "file-per-thread-logger", - "log", + "log 0.4.20", "rustix 0.36.15", "serde", "sha2 0.10.7", @@ -14554,18 +14744,18 @@ checksum = "b1cefde0cce8cb700b1b21b6298a3837dba46521affd7b8c38a9ee2c869eee04" dependencies = [ "anyhow", "cranelift-codegen", - "cranelift-entity 0.95.1", + "cranelift-entity", "cranelift-frontend", "cranelift-native", "cranelift-wasm", "gimli 0.27.3", - "log", + "log 0.4.20", "object 0.30.4", "target-lexicon", "thiserror", - "wasmparser 0.102.0", + "wasmparser", "wasmtime-cranelift-shared", - "wasmtime-environ 8.0.1", + "wasmtime-environ", ] [[package]] @@ -14580,26 +14770,7 @@ dependencies = [ "gimli 0.27.3", "object 0.30.4", "target-lexicon", - "wasmtime-environ 8.0.1", -] - -[[package]] -name = "wasmtime-environ" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "47b8b50962eae38ee319f7b24900b7cf371f03eebdc17400c1dc8575fc10c9a7" -dependencies = [ - "anyhow", - "cranelift-entity 0.93.2", - "gimli 0.26.2", - "indexmap 1.9.3", - "log", - "object 0.29.0", - "serde", - "target-lexicon", - "thiserror", - "wasmparser 0.100.0", - "wasmtime-types 6.0.2", + "wasmtime-environ", ] [[package]] @@ -14609,39 +14780,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a990198cee4197423045235bf89d3359e69bd2ea031005f4c2d901125955c949" dependencies = [ "anyhow", - "cranelift-entity 0.95.1", + "cranelift-entity", "gimli 0.27.3", "indexmap 1.9.3", - "log", + "log 0.4.20", "object 0.30.4", "serde", "target-lexicon", "thiserror", - "wasmparser 0.102.0", - "wasmtime-types 8.0.1", -] - -[[package]] -name = "wasmtime-jit" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffaed4f9a234ba5225d8e64eac7b4a5d13b994aeb37353cde2cbeb3febda9eaa" -dependencies = [ - "addr2line 0.17.0", - "anyhow", - "bincode", - "cfg-if", - "cpp_demangle", - "gimli 0.26.2", - "log", - "object 0.29.0", - "rustc-demangle", - "serde", - "target-lexicon", - "wasmtime-environ 6.0.2", - "wasmtime-jit-icache-coherence 6.0.2", - "wasmtime-runtime 6.0.2", - "windows-sys 0.42.0", + "wasmparser", + "wasmtime-types", ] [[package]] @@ -14653,30 +14801,21 @@ dependencies = [ "addr2line 0.19.0", "anyhow", "bincode", - "cfg-if", + "cfg-if 1.0.0", "cpp_demangle", "gimli 0.27.3", - "log", + "log 0.4.20", "object 0.30.4", "rustc-demangle", "serde", "target-lexicon", - "wasmtime-environ 8.0.1", - "wasmtime-jit-debug 8.0.1", - "wasmtime-jit-icache-coherence 8.0.1", - "wasmtime-runtime 8.0.1", + "wasmtime-environ", + "wasmtime-jit-debug", + "wasmtime-jit-icache-coherence", + "wasmtime-runtime", "windows-sys 0.45.0", ] -[[package]] -name = "wasmtime-jit-debug" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2" -dependencies = [ - "once_cell", -] - [[package]] name = "wasmtime-jit-debug" version = "8.0.1" @@ -14688,52 +14827,17 @@ dependencies = [ "rustix 0.36.15", ] -[[package]] -name = "wasmtime-jit-icache-coherence" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a28ae1e648461bfdbb79db3efdaee1bca5b940872e4175390f465593a2e54c" -dependencies = [ - "cfg-if", - "libc", - "windows-sys 0.42.0", -] - [[package]] name = "wasmtime-jit-icache-coherence" version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "libc", "windows-sys 0.45.0", ] -[[package]] -name = "wasmtime-runtime" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e704b126e4252788ccfc3526d4d4511d4b23c521bf123e447ac726c14545217b" -dependencies = [ - "anyhow", - "cc", - "cfg-if", - "indexmap 1.9.3", - "libc", - "log", - "mach", - "memfd", - "memoffset 0.6.5", - "paste", - "rand 0.8.5", - "rustix 0.36.15", - "wasmtime-asm-macros 6.0.2", - "wasmtime-environ 6.0.2", - "wasmtime-jit-debug 6.0.2", - "windows-sys 0.42.0", -] - [[package]] name = "wasmtime-runtime" version = "8.0.1" @@ -14742,44 +14846,32 @@ checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" dependencies = [ "anyhow", "cc", - "cfg-if", + "cfg-if 1.0.0", "indexmap 1.9.3", "libc", - "log", + "log 0.4.20", "mach", "memfd", "memoffset 0.8.0", "paste", "rand 0.8.5", "rustix 0.36.15", - "wasmtime-asm-macros 8.0.1", - "wasmtime-environ 8.0.1", - "wasmtime-jit-debug 8.0.1", + "wasmtime-asm-macros", + "wasmtime-environ", + "wasmtime-jit-debug", "windows-sys 0.45.0", ] -[[package]] -name = "wasmtime-types" -version = "6.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83e5572c5727c1ee7e8f28717aaa8400e4d22dcbd714ea5457d85b5005206568" -dependencies = [ - "cranelift-entity 0.93.2", - "serde", - "thiserror", - "wasmparser 0.100.0", -] - [[package]] name = "wasmtime-types" version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4f6fffd2a1011887d57f07654dd112791e872e3ff4a2e626aee8059ee17f06f" dependencies = [ - "cranelift-entity 0.95.1", + "cranelift-entity", "serde", "thiserror", - "wasmparser 0.102.0", + "wasmparser", ] [[package]] @@ -14794,50 +14886,32 @@ dependencies = [ [[package]] name = "web3" -version = "0.18.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44f258e254752d210b84fe117b31f1e3cc9cbf04c0d747eb7f8cf7cf5e370f6d" +checksum = "8cb64d3fa76f21599bc12ff0672f459900c58b99e7f899022f73c611bf647993" dependencies = [ - "arrayvec 0.7.4", - "base64 0.13.1", - "bytes", - "derive_more", - "ethabi 16.0.0", - "ethereum-types 0.12.1", - "futures", - "futures-timer", - "headers", - "hex", - "idna 0.2.3", + "arrayvec 0.4.12", + "base64 0.10.1", + "error-chain", + "ethabi 6.1.0", + "ethereum-types 0.4.2", + "futures 0.1.31", + "hyper 0.12.36", + "hyper-tls", "jsonrpc-core", - "log", - "once_cell", - "parking_lot 0.12.1", - "pin-project", - "reqwest", - "rlp", - "secp256k1 0.21.3", + "log 0.4.20", + "native-tls", + "parking_lot 0.7.1", + "rustc-hex 1.0.0", "serde", + "serde_derive", "serde_json", - "soketto", - "tiny-keccak", - "tokio", - "tokio-stream", - "tokio-util 0.6.10", - "url", - "web3-async-native-tls", -] - -[[package]] -name = "web3-async-native-tls" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f6d8d1636b2627fe63518d5a9b38a569405d9c9bc665c43c9c341de57227ebb" -dependencies = [ - "native-tls", - "thiserror", - "tokio", - "url", + "tokio-core", + "tokio-io", + "tokio-timer 0.1.2", + "tokio-uds 0.1.7", + "url 1.7.2", + "websocket", ] [[package]] @@ -14892,11 +14966,11 @@ checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb" dependencies = [ "arc-swap", "async-trait", - "bytes", + "bytes 1.5.0", "hex", "interceptor", "lazy_static", - "log", + "log 0.4.20", "rand 0.8.5", "rcgen 0.9.3", "regex", @@ -14911,9 +14985,9 @@ dependencies = [ "stun", "thiserror", "time 0.3.17", - "tokio", + "tokio 1.32.0", "turn", - "url", + "url 2.4.1", "waitgroup", "webrtc-data", "webrtc-dtls", @@ -14931,11 +15005,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100" dependencies = [ - "bytes", + "bytes 1.5.0", "derive_builder", - "log", + "log 0.4.20", "thiserror", - "tokio", + "tokio 1.32.0", "webrtc-sctp", "webrtc-util", ] @@ -14958,7 +15032,7 @@ dependencies = [ "elliptic-curve 0.12.3", "hkdf", "hmac 0.12.1", - "log", + "log 0.4.20", "p256", "p384", "rand 0.8.5", @@ -14968,12 +15042,12 @@ dependencies = [ "rustls 0.19.1", "sec1 0.3.0", "serde", - "sha1", + "sha1 0.10.5", "sha2 0.10.7", "signature 1.6.4", "subtle", "thiserror", - "tokio", + "tokio 1.32.0", "webpki 0.21.4", "webrtc-util", "x25519-dalek 2.0.0", @@ -14989,15 +15063,15 @@ dependencies = [ "arc-swap", "async-trait", "crc", - "log", + "log 0.4.20", "rand 0.8.5", "serde", "serde_json", "stun", "thiserror", - "tokio", + "tokio 1.32.0", "turn", - "url", + "url 2.4.1", "uuid 1.4.1", "waitgroup", "webrtc-mdns", @@ -15010,10 +15084,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" dependencies = [ - "log", + "log 0.4.20", "socket2 0.4.9", "thiserror", - "tokio", + "tokio 1.32.0", "webrtc-util", ] @@ -15024,7 +15098,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f72e1650a8ae006017d1a5280efb49e2610c19ccc3c0905b03b648aee9554991" dependencies = [ "byteorder", - "bytes", + "bytes 1.5.0", "rand 0.8.5", "rtp", "thiserror", @@ -15038,12 +15112,12 @@ checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0" dependencies = [ "arc-swap", "async-trait", - "bytes", + "bytes 1.5.0", "crc", - "log", + "log 0.4.20", "rand 0.8.5", "thiserror", - "tokio", + "tokio 1.32.0", "webrtc-util", ] @@ -15058,16 +15132,16 @@ dependencies = [ "aes-gcm 0.9.4", "async-trait", "byteorder", - "bytes", + "bytes 1.5.0", "ctr 0.8.0", "hmac 0.11.0", - "log", + "log 0.4.20", "rtcp", "rtp", "sha-1", "subtle", "thiserror", - "tokio", + "tokio 1.32.0", "webrtc-util", ] @@ -15079,17 +15153,39 @@ checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87" dependencies = [ "async-trait", "bitflags 1.3.2", - "bytes", + "bytes 1.5.0", "cc", "ipnet", "lazy_static", "libc", - "log", + "log 0.4.20", "nix 0.24.3", "rand 0.8.5", "thiserror", - "tokio", - "winapi", + "tokio 1.32.0", + "winapi 0.3.9", +] + +[[package]] +name = "websocket" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c9faed2bff8af2ea6b9f8b917d3d00b467583f6781fe3def174a9e33c879703" +dependencies = [ + "base64 0.9.3", + "bitflags 0.9.1", + "byteorder", + "bytes 0.4.12", + "futures 0.1.31", + "hyper 0.10.16", + "native-tls", + "rand 0.5.6", + "sha1 0.6.1", + "tokio-core", + "tokio-io", + "tokio-tls", + "unicase", + "url 1.7.2", ] [[package]] @@ -15120,6 +15216,12 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" + [[package]] name = "winapi" version = "0.3.9" @@ -15130,6 +15232,12 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" + [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -15142,7 +15250,7 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" dependencies = [ - "winapi", + "winapi 0.3.9", ] [[package]] @@ -15173,21 +15281,6 @@ dependencies = [ "windows-targets 0.48.5", ] -[[package]] -name = "windows-sys" -version = "0.42.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - [[package]] name = "windows-sys" version = "0.45.0" @@ -15365,10 +15458,20 @@ version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "cfg-if", + "cfg-if 1.0.0", "windows-sys 0.48.0", ] +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + [[package]] name = "ws_stream_wasm" version = "0.7.4" @@ -15376,9 +15479,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" dependencies = [ "async_io_stream", - "futures", + "futures 0.3.28", "js-sys", - "log", + "log 0.4.20", "pharos", "rustc_version 0.4.0", "send_wrapper 0.6.0", @@ -15388,12 +15491,6 @@ dependencies = [ "web-sys", ] -[[package]] -name = "wyz" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" - [[package]] name = "wyz" version = "0.5.1" @@ -15471,11 +15568,11 @@ dependencies = [ "bounded-collections", "derivative", "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", + "log 0.4.20", + "parity-scale-codec", "scale-info", "serde", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-weights", "xcm-procedural", ] @@ -15484,19 +15581,19 @@ name = "xcm-builder" version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "frame-system 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", + "frame-system", "impl-trait-for-tuples", - "log", + "log 0.4.20", "pallet-transaction-payment", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "polkadot-parachain", "scale-info", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-arithmetic", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-weights", "xcm", "xcm-executor", ] @@ -15507,16 +15604,16 @@ version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ "environmental", - "frame-support 4.0.0-dev (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "frame-support", "impl-trait-for-tuples", - "log", - "parity-scale-codec 3.6.5", - "sp-arithmetic 6.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-core 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-io 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-weights 4.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "log 0.4.20", + "parity-scale-codec", + "sp-arithmetic", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std 5.0.0", + "sp-weights", "xcm", ] @@ -15537,10 +15634,10 @@ version = "0.1.0" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "astar-primitives", - "parity-scale-codec 3.6.5", + "parity-scale-codec", "scale-info", - "sp-runtime 7.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", - "sp-std 5.0.0 (git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43)", + "sp-runtime", + "sp-std 5.0.0", ] [[package]] @@ -15549,8 +15646,8 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5" dependencies = [ - "futures", - "log", + "futures 0.3.28", + "log 0.4.20", "nohash-hasher", "parking_lot 0.12.1", "rand 0.8.5", @@ -15609,11 +15706,11 @@ dependencies = [ "bzip2", "constant_time_eq 0.1.5", "crc32fast", - "crossbeam-utils", + "crossbeam-utils 0.8.16", "flate2", "hmac 0.12.1", "pbkdf2 0.11.0", - "sha1", + "sha1 0.10.5", "time 0.3.17", "zstd 0.11.2+zstd.1.5.2", ] diff --git a/Cargo.toml b/Cargo.toml index 16cfeeee..1f01b17b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ test-strategy = "0.3.0" tokio = { version = "1.22.0", features = ["macros", "time", "parking_lot"] } tokio-util = { version = "0.7.4", features = ["compat"] } wait-timeout = "0.2" -web3 = "0.18.0" +web3 = "0.5.0" # Substrate Client @@ -228,8 +228,3 @@ ark-poly = { version = "0.4.1", default-features = false } ark-relations = { version = "0.4.0", default-features = false } ark-serialize = { version = "0.4.1", default-features = false } ark-std = { version = "0.4.0", default-features = false } - -[patch."https://github.com/ibc-test/substrate-ibc.git"] -pallet-ibc = { path = "../substrate-ibc/core" } -pallet-ibc-utils = { path = "../substrate-ibc/utils" } -pallet-ics20-transfer = { path = "../substrate-ibc/applications/transfer" } From e4024a4d58301b272672bdc3a7d3c431032b5d64 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 10:40:17 +0800 Subject: [PATCH 04/35] fix brooklyn runtime --- runtime/brooklyn/src/ethereum.rs | 7 ++ runtime/brooklyn/src/ink.rs | 3 + runtime/brooklyn/src/lib.rs | 108 ++++++++++++++++++++++++++++++- 3 files changed, 116 insertions(+), 2 deletions(-) diff --git a/runtime/brooklyn/src/ethereum.rs b/runtime/brooklyn/src/ethereum.rs index ed4f8266..e74e6769 100644 --- a/runtime/brooklyn/src/ethereum.rs +++ b/runtime/brooklyn/src/ethereum.rs @@ -146,6 +146,12 @@ parameter_types! { pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_, _>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); pub ChainId: u64 = 888866; + + /// The amount of gas per PoV size. Value is calculated as: + /// + /// max_gas_limit = max_tx_ref_time / WEIGHT_PER_GAS = max_pov_size * gas_limit_pov_size_ratio + /// gas_limit_pov_size_ratio = ceil((max_tx_ref_time / WEIGHT_PER_GAS) / max_pov_size) + pub const GasLimitPovSizeRatio: u64 = 4; // !!!!! TODO: ADJUST IT } impl pallet_evm_chain_id::Config for Runtime {} @@ -169,6 +175,7 @@ impl pallet_evm::Config for Runtime { type FindAuthor = FindAuthorTruncated; type Timestamp = Timestamp; type OnCreate = (); + type GasLimitPovSizeRatio = GasLimitPovSizeRatio; type WeightInfo = (); } diff --git a/runtime/brooklyn/src/ink.rs b/runtime/brooklyn/src/ink.rs index 74750104..a9b283ca 100644 --- a/runtime/brooklyn/src/ink.rs +++ b/runtime/brooklyn/src/ink.rs @@ -35,6 +35,8 @@ parameter_types! { .get(DispatchClass::Normal) .max_total .unwrap_or(BlockWeights::get().max_block); + // Fallback value if storage deposit limit not set by the user + pub const DefaultDepositLimit: Balance = deposit(16, 16 * 1024); pub Schedule: pallet_contracts::Schedule = Default::default(); } @@ -57,6 +59,7 @@ impl pallet_contracts::Config for Runtime { type CallFilter = frame_support::traits::Nothing; type DepositPerItem = DepositPerItem; type DepositPerByte = DepositPerByte; + type DefaultDepositLimit = DefaultDepositLimit; type CallStack = [pallet_contracts::Frame; 5]; type WeightPrice = pallet_transaction_payment::Pallet; type WeightInfo = pallet_contracts::weights::SubstrateWeight; diff --git a/runtime/brooklyn/src/lib.rs b/runtime/brooklyn/src/lib.rs index 3bac7227..9e476f97 100644 --- a/runtime/brooklyn/src/lib.rs +++ b/runtime/brooklyn/src/lib.rs @@ -65,7 +65,8 @@ pub use frame_support::{ dispatch::DispatchClass, parameter_types, traits::{ - ConstBool, ConstU128, ConstU32, ConstU8, FindAuthor, KeyOwnerProofSystem, Randomness, + ConstBool, ConstU128, ConstU32, ConstU8, FindAuthor, KeyOwnerProofSystem, OnFinalize, + Randomness, }, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, WEIGHT_REF_TIME_PER_SECOND}, @@ -415,6 +416,10 @@ impl pallet_balances::Config for Runtime { type MaxLocks = MaxLocks; type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl pallet_transaction_payment::Config for Runtime { @@ -455,6 +460,7 @@ impl pallet_im_online::Config for Runtime { impl pallet_sudo::Config for Runtime { type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; + type WeightInfo = pallet_sudo::weights::SubstrateWeight; } pub struct FindAuthorTruncated(PhantomData); @@ -607,7 +613,7 @@ mod benches { use fp_rpc::TransactionStatus; use pallet_ethereum::{Call::transact, Transaction as EthereumTransaction}; -use pallet_evm::{Account as EVMAccount, FeeCalculator, Runner}; +use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, Runner}; impl_runtime_apis! { impl sp_api::Core for Runtime { @@ -628,6 +634,14 @@ impl_runtime_apis! { fn metadata() -> OpaqueMetadata { OpaqueMetadata::new(Runtime::metadata().into()) } + + fn metadata_at_version(version: u32) -> Option { + Runtime::metadata_at_version(version) + } + + fn metadata_versions() -> sp_std::vec::Vec { + Runtime::metadata_versions() + } } impl sp_block_builder::BlockBuilder for Runtime { @@ -829,6 +843,41 @@ impl_runtime_apis! { let is_transactional = false; let validate = true; + // Reused approach from Moonbeam since Frontier implementation doesn't support this + let mut estimated_transaction_len = data.len() + + // to: 20 + // from: 20 + // value: 32 + // gas_limit: 32 + // nonce: 32 + // 1 byte transaction action variant + // chain id 8 bytes + // 65 bytes signature + 210; + if max_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if max_priority_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if access_list.is_some() { + estimated_transaction_len += access_list.encoded_size(); + } + + let gas_limit = gas_limit.min(u64::MAX.into()).low_u64(); + let without_base_extrinsic_weight = true; + + let (weight_limit, proof_size_base_cost) = + match ::GasWeightMapping::gas_to_weight( + gas_limit, + without_base_extrinsic_weight + ) { + weight_limit if weight_limit.proof_size() > 0 => { + (Some(weight_limit), Some(estimated_transaction_len as u64)) + } + _ => (None, None), + }; + ::Runner::call( from, to, @@ -841,6 +890,8 @@ impl_runtime_apis! { access_list.unwrap_or_default(), is_transactional, validate, + weight_limit, + proof_size_base_cost, config .as_ref() .unwrap_or_else(|| ::config()), @@ -869,6 +920,42 @@ impl_runtime_apis! { let is_transactional = false; let validate = true; + + // Reused approach from Moonbeam since Frontier implementation doesn't support this + let mut estimated_transaction_len = data.len() + + // to: 20 + // from: 20 + // value: 32 + // gas_limit: 32 + // nonce: 32 + // 1 byte transaction action variant + // chain id 8 bytes + // 65 bytes signature + 210; + if max_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if max_priority_fee_per_gas.is_some() { + estimated_transaction_len += 32; + } + if access_list.is_some() { + estimated_transaction_len += access_list.encoded_size(); + } + + let gas_limit = gas_limit.min(u64::MAX.into()).low_u64(); + let without_base_extrinsic_weight = true; + + let (weight_limit, proof_size_base_cost) = + match ::GasWeightMapping::gas_to_weight( + gas_limit, + without_base_extrinsic_weight + ) { + weight_limit if weight_limit.proof_size() > 0 => { + (Some(weight_limit), Some(estimated_transaction_len as u64)) + } + _ => (None, None), + }; + #[allow(clippy::or_fun_call)] // suggestion not helpful here ::Runner::create( from, @@ -881,6 +968,8 @@ impl_runtime_apis! { access_list.unwrap_or_default(), is_transactional, validate, + weight_limit, + proof_size_base_cost, config .as_ref() .unwrap_or(::config()), @@ -926,6 +1015,21 @@ impl_runtime_apis! { } fn gas_limit_multiplier_support() {} + + fn pending_block( + xts: Vec<::Extrinsic>, + ) -> (Option, Option>) { + for ext in xts.into_iter() { + let _ = Executive::apply_extrinsic(ext); + } + + Ethereum::on_finalize(System::block_number() + 1); + + ( + pallet_ethereum::CurrentBlock::::get(), + pallet_ethereum::CurrentTransactionStatuses::::get() + ) + } } impl fp_rpc::ConvertTransactionRuntimeApi for Runtime { From 3ed01469b79b9b95110cf202ed6360dfe98d39eb Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 11:11:52 +0800 Subject: [PATCH 05/35] Update chain_extensions.rs --- runtime/brooklyn/src/chain_extensions.rs | 61 +++++++++++++++++++----- 1 file changed, 49 insertions(+), 12 deletions(-) diff --git a/runtime/brooklyn/src/chain_extensions.rs b/runtime/brooklyn/src/chain_extensions.rs index b6f1475e..f1bf63ed 100644 --- a/runtime/brooklyn/src/chain_extensions.rs +++ b/runtime/brooklyn/src/chain_extensions.rs @@ -4,17 +4,18 @@ use frame_support::{ traits::{ fungibles::{ approvals::{Inspect as AllowanceInspect, Mutate as AllowanceMutate}, - Inspect, + Inspect, Mutate, }, - nonfungibles::Transfer, + tokens::Preservation, }, }; use frame_system::RawOrigin; use ibc::{applications::transfer::msgs::transfer::TYPE_URL, core::ics24_host::identifier::PortId}; use ibc_proto::ibc::applications::transfer::v1::MsgTransfer; use pallet_assets::WeightInfo; -use pallet_contracts::chain_extension::{ - ChainExtension, Environment, Ext, InitState, RetVal, SysConfig, +use pallet_contracts::{ + chain_extension::{ChainExtension, Environment, Ext, InitState, RetVal, SysConfig}, + Origin, }; use pallet_ibc::ToString; @@ -400,14 +401,26 @@ where ); let input: Psp37TransferInput = env.read_as()?; - let sender = env.ext().caller(); + let sender = match env.ext().caller().clone() { + Origin::Signed(address) => address, + Origin::Root => { + trace!( + target: "runtime", + "root origin not supported" + ); + // TODO: expand XvmErrors with BadOrigin + return Err(DispatchError::Other( + "ChainExtension root origin not supported", + )); + } + }; - let result = as Transfer>::transfer( + let result = as Mutate>::transfer( input.asset_id, - sender, + &sender, &input.to, input.value, - true, + Preservation::Preserve, ); match result { @@ -441,12 +454,24 @@ where ); let input: Psp37TransferFromInput = env.read_as()?; - let spender = env.ext().caller(); + let spender = match env.ext().caller().clone() { + Origin::Signed(address) => address, + Origin::Root => { + trace!( + target: "runtime", + "root origin not supported" + ); + // TODO: expand XvmErrors with BadOrigin + return Err(DispatchError::Other( + "ChainExtension root origin not supported", + )); + } + }; let result = as AllowanceMutate>::transfer_from( input.asset_id, &input.from, - spender, + &spender, &input.to, input.value, ); @@ -482,7 +507,19 @@ where ); let input: Psp37ApproveInput = env.read_as()?; - let owner = env.ext().caller(); + let owner = match env.ext().caller().clone() { + Origin::Signed(address) => address, + Origin::Root => { + trace!( + target: "runtime", + "root origin not supported" + ); + // TODO: expand XvmErrors with BadOrigin + return Err(DispatchError::Other( + "ChainExtension root origin not supported", + )); + } + }; if input.asset_id.is_none() { trace!( @@ -496,7 +533,7 @@ where let result = as AllowanceMutate>::approve( input.asset_id.unwrap(), - owner, + &owner, &input.spender, input.value, ); From 7f30662f03ded1d50f9fd8b1b55a606455a99771 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 20:21:49 +0800 Subject: [PATCH 06/35] fix brooklyn --- node/src/command.rs | 6 +- node/src/service/brooklyn.rs | 108 ++++++++++++++--------------------- 2 files changed, 47 insertions(+), 67 deletions(-) diff --git a/node/src/command.rs b/node/src/command.rs index 7d69214b..ed9aed57 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -18,7 +18,7 @@ use clap::Parser; // Substrate #[cfg(feature = "brooklyn")] -use fc_db::frontier_database_dir; +use fc_db::kv::frontier_database_dir; use sc_cli::{ChainSpec, RuntimeVersion, SubstrateCli}; use sc_service::PartialComponents; @@ -134,7 +134,7 @@ pub fn run() -> sc_cli::Result<()> { #[cfg(feature = "brooklyn")] { use fc_db::DatabaseSource; - use service::testnet::db_config_dir; + use service::brooklyn::db_config_dir; // Remove Frontier offchain db let db_config_dir = db_config_dir(&config); let frontier_database_config = match config.database { @@ -241,7 +241,7 @@ pub fn run() -> sc_cli::Result<()> { runner.sync_run(|config| { let PartialComponents { client, other, .. } = service::new_partial(&config, &cli)?; let frontier_backend = other.2; - cmd.run::<_, runtime::opaque::Block>(client, frontier_backend) + cmd.run::<_, runtime::opaque::Block>(client, frontier_backend.into()) }) } Some(Subcommand::Version) => { diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index f2bf08ee..edd15a45 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -32,11 +32,11 @@ use sc_transaction_pool::{ChainApi, Pool}; use sp_block_builder::BlockBuilder; use sp_blockchain::{HeaderBackend, HeaderMetadata}; use sp_core::{crypto::Ss58AddressFormat, U256}; -use sp_runtime::traits::BlakeTwo256; +use sp_runtime::traits::{BlakeTwo256, Block as BlockT}; // Frontier use fc_consensus::FrontierBlockImport; -use fc_db::Backend as FrontierBackend; -use fc_mapping_sync::{MappingSyncWorker, SyncStrategy}; +use fc_db::kv::Backend as FrontierBackend; +use fc_mapping_sync::{kv::MappingSyncWorker, SyncStrategy}; use fc_rpc::{EthBlockDataCacheTask, EthTask, OverrideHandle}; use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; // Runtime @@ -64,15 +64,8 @@ pub type ConsensusResult = ( Sealing, ); -pub(crate) fn db_config_dir(config: &Configuration) -> PathBuf { - config - .base_path - .as_ref() - .map(|base_path| base_path.config_dir(config.chain_spec.id())) - .unwrap_or_else(|| { - BasePath::from_project("", "", &Cli::executable_name()) - .config_dir(config.chain_spec.id()) - }) +pub fn db_config_dir(config: &Configuration) -> PathBuf { + config.base_path.config_dir(config.chain_spec.id()) } pub fn new_partial( @@ -88,19 +81,13 @@ pub fn new_partial( ( Option, ConsensusResult, - Arc>, + Arc>, Option, (FeeHistoryCache, FeeHistoryCacheLimit), ), >, ServiceError, > { - if config.keystore_remote.is_some() { - return Err(ServiceError::Other( - "Remote Keystores are not supported.".to_string(), - )); - } - sp_core::crypto::set_default_ss58_version(Ss58AddressFormat::custom( crate::runtime::SS58Prefix::get(), )); @@ -148,10 +135,16 @@ pub fn new_partial( client.clone(), ); - let frontier_backend = Arc::new(FrontierBackend::open( - Arc::clone(&client), - &config.database, - &db_config_dir(config), + let config_dir = config.base_path.config_dir(config.chain_spec.id()); + let path = config_dir.join("frontier").join("db"); + let frontier_backend = Arc::new(fc_db::kv::Backend::::new( + client.clone(), + &fc_db::kv::DatabaseSettings { + source: fc_db::DatabaseSource::RocksDb { + path, + cache_size: 0, + }, + }, )?); let filter_pool: Option = Some(Arc::new(Mutex::new(BTreeMap::new()))); let fee_history_cache: FeeHistoryCache = Arc::new(Mutex::new(BTreeMap::new())); @@ -168,11 +161,8 @@ pub fn new_partial( telemetry.as_ref().map(|x| x.handle()), )?; - let frontier_block_import = FrontierBlockImport::new( - grandpa_block_import.clone(), - client.clone(), - frontier_backend.clone(), - ); + let frontier_block_import = + FrontierBlockImport::new(grandpa_block_import.clone(), client.clone()); let slot_duration = sc_consensus_aura::slot_duration(&*client)?; let target_gas_price = cli.run.target_gas_price; @@ -272,7 +262,7 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Result keystore_container.set_remote_keystore(k), - Err(e) => { - return Err(ServiceError::Other(format!( - "Error hooking up remote keystore for {url}: {e}" - ))) - } - }; - } + let mut net_config = sc_network::config::FullNetworkConfiguration::new(&config.network); let grandpa_protocol_name = sc_consensus_grandpa::protocol_standard_name( &client @@ -304,12 +285,9 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Result Result Result Result::None, - keystore: keystore_container.sync_keystore(), + keystore: keystore_container.keystore(), block_proposal_slot_portion: sc_consensus_aura::SlotProportion::new(2f32 / 3f32), max_block_proposal_slot_portion: None, telemetry: telemetry.as_ref().map(|x| x.handle()), @@ -543,7 +519,7 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Result Result, backend: Arc, - frontier_backend: Arc>, + frontier_backend: Arc>, filter_pool: Option, overrides: Arc>, fee_history_cache: FeeHistoryCache, @@ -987,13 +963,14 @@ where } use fc_rpc::{ Eth, EthApiServer, EthDevSigner, EthFilter, EthFilterApiServer, EthPubSub, - EthPubSubApiServer, EthSigner, Net, NetApiServer, Web3, Web3ApiServer, + EthPubSubApiServer, EthSigner, Net, NetApiServer, TxPool, TxPoolApiServer, Web3, + Web3ApiServer, }; io.merge( Eth::new( client.clone(), pool.clone(), - graph, + graph.clone(), Some(crate::runtime::ethereum::TransactionConverter), sync.clone(), signers, @@ -1005,15 +982,18 @@ where fee_history_cache, fee_history_cache_limit, 10, + None, ) .into_rpc(), )?; + let tx_pool = TxPool::new(client.clone(), graph); if let Some(filter_pool) = filter_pool { io.merge( EthFilter::new( client.clone(), backend, + tx_pool.clone(), filter_pool, 500_usize, // max stored filters max_past_logs, @@ -1083,7 +1063,7 @@ pub struct TestNetParams { /// EthFilterApi pool. pub filter_pool: Option, /// Backend. - pub backend: Arc>, + pub backend: Arc>, /// Maximum number of logs in a query. pub max_past_logs: u32, /// Fee history cache. From ca78ffa19d9b2faaf8b44ffadf4b7cb58db7187f Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 20:22:04 +0800 Subject: [PATCH 07/35] fix sydney mock --- runtime/sydney/src/pos/currency.rs | 10 ++++++++++ runtime/sydney/src/pos/session_payout/mock.rs | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/runtime/sydney/src/pos/currency.rs b/runtime/sydney/src/pos/currency.rs index b644a65a..e5b10b1a 100644 --- a/runtime/sydney/src/pos/currency.rs +++ b/runtime/sydney/src/pos/currency.rs @@ -801,6 +801,10 @@ mod tests { type MaxLocks = ConstU32<50>; type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } impl pallet_treasury::Config for Test { @@ -917,6 +921,11 @@ mod tests { parameter_types! { pub BlockGasLimit: U256 = U256::max_value(); pub WeightPerGas: Weight = Weight::from_ref_time(20_000); + /// The amount of gas per PoV size. Value is calculated as: + /// + /// max_gas_limit = max_tx_ref_time / WEIGHT_PER_GAS = max_pov_size * gas_limit_pov_size_ratio + /// gas_limit_pov_size_ratio = ceil((max_tx_ref_time / WEIGHT_PER_GAS) / max_pov_size) + pub const GasLimitPovSizeRatio: u64 = 4; // !!!!! TODO: ADJUST IT } impl pallet_evm::Config for Test { @@ -942,6 +951,7 @@ mod tests { type FindAuthor = FindAuthorTruncated; type WeightInfo = (); type Timestamp = Timestamp; + type GasLimitPovSizeRatio = GasLimitPovSizeRatio; } pub fn test_runtime() -> sp_io::TestExternalities { diff --git a/runtime/sydney/src/pos/session_payout/mock.rs b/runtime/sydney/src/pos/session_payout/mock.rs index a751af1a..46efa51e 100644 --- a/runtime/sydney/src/pos/session_payout/mock.rs +++ b/runtime/sydney/src/pos/session_payout/mock.rs @@ -69,6 +69,10 @@ impl pallet_balances::Config for Test { type MaxLocks = ConstU32<50>; type MaxReserves = (); type ReserveIdentifier = [u8; 8]; + type HoldIdentifier = (); + type FreezeIdentifier = (); + type MaxHolds = ConstU32<0>; + type MaxFreezes = ConstU32<0>; } parameter_types! { From e87b040401750deee90720a332a81dc06bec04c2 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 8 Sep 2023 20:56:12 +0800 Subject: [PATCH 08/35] remove unuser import --- node/src/service/brooklyn.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index edd15a45..66625eb9 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -14,7 +14,6 @@ use std::{ // Substrate use mmr_gadget::MmrGadget; use mmr_rpc::{Mmr, MmrApiServer}; -use sc_cli::SubstrateCli; use sc_client_api::{ backend::{Backend, StateBackend}, AuxStore, BlockchainEvents, StorageProvider, @@ -25,17 +24,16 @@ use sc_network::NetworkService; use sc_network_sync::SyncingService; use sc_rpc::SubscriptionTaskExecutor; use sc_service::{ - error::Error as ServiceError, BasePath, Configuration, TaskManager, TransactionPool, + error::Error as ServiceError, Configuration, TaskManager, TransactionPool, }; use sc_telemetry::{Telemetry, TelemetryWorker}; use sc_transaction_pool::{ChainApi, Pool}; use sp_block_builder::BlockBuilder; use sp_blockchain::{HeaderBackend, HeaderMetadata}; use sp_core::{crypto::Ss58AddressFormat, U256}; -use sp_runtime::traits::{BlakeTwo256, Block as BlockT}; +use sp_runtime::traits::BlakeTwo256; // Frontier use fc_consensus::FrontierBlockImport; -use fc_db::kv::Backend as FrontierBackend; use fc_mapping_sync::{kv::MappingSyncWorker, SyncStrategy}; use fc_rpc::{EthBlockDataCacheTask, EthTask, OverrideHandle}; use fc_rpc_core::types::{FeeHistoryCache, FeeHistoryCacheLimit, FilterPool}; @@ -963,8 +961,7 @@ where } use fc_rpc::{ Eth, EthApiServer, EthDevSigner, EthFilter, EthFilterApiServer, EthPubSub, - EthPubSubApiServer, EthSigner, Net, NetApiServer, TxPool, TxPoolApiServer, Web3, - Web3ApiServer, + EthPubSubApiServer, EthSigner, Net, NetApiServer, TxPool, Web3, Web3ApiServer, }; io.merge( Eth::new( From 217ba7647d51a1e552c2a2307423cb5d55029a31 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Tue, 12 Sep 2023 15:50:46 +0800 Subject: [PATCH 09/35] update beefy_params min_block_delta to 8 --- node/src/service/brooklyn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index 66625eb9..5627dc19 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -538,7 +538,7 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Date: Wed, 13 Sep 2023 10:28:09 +0800 Subject: [PATCH 10/35] Remove redundant net_config init --- node/src/service/brooklyn.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index 5627dc19..883455bb 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -335,8 +335,6 @@ pub fn new_full(mut config: Configuration, cli: &Cli) -> Result Date: Fri, 15 Sep 2023 19:19:17 +0800 Subject: [PATCH 11/35] fix rpc port parse --- node/tests/common.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/tests/common.rs b/node/tests/common.rs index d4dccfd9..d4d57d24 100644 --- a/node/tests/common.rs +++ b/node/tests/common.rs @@ -266,7 +266,7 @@ pub fn find_ws_http_url_from_output(read: impl Read + Send) -> (String, String, data.push('\n'); // does the line contain our port (we expect this specific output from substrate). - let sock_addr = match line.split_once("Running JSON-RPC WS server: addr=") { + let sock_addr = match line.split_once("Running JSON-RPC server: addr=") { None => return None, Some((_, after)) => after.split_once(',').unwrap().0, }; @@ -282,7 +282,7 @@ pub fn find_ws_http_url_from_output(read: impl Read + Send) -> (String, String, .lines() .find_map(|line| { // does the line contain our port (we expect this specific output from substrate). - let sock_addr = match line.split_once("Running JSON-RPC HTTP server: addr=") { + let sock_addr = match line.split_once("Running JSON-RPC server: addr=") { None => return None, Some((_, after)) => after.split_once(',').unwrap().0, }; From b4cb51bfed84b52ed77bb7d92473b6aa94435f4d Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 15 Sep 2023 19:19:38 +0800 Subject: [PATCH 12/35] replace from_ref_time to from_parts --- runtime/sydney/src/pos/currency.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/sydney/src/pos/currency.rs b/runtime/sydney/src/pos/currency.rs index e5b10b1a..b26cc0db 100644 --- a/runtime/sydney/src/pos/currency.rs +++ b/runtime/sydney/src/pos/currency.rs @@ -920,7 +920,7 @@ mod tests { parameter_types! { pub BlockGasLimit: U256 = U256::max_value(); - pub WeightPerGas: Weight = Weight::from_ref_time(20_000); + pub WeightPerGas: Weight = Weight::from_parts(20_000, 0); /// The amount of gas per PoV size. Value is calculated as: /// /// max_gas_limit = max_tx_ref_time / WEIGHT_PER_GAS = max_pov_size * gas_limit_pov_size_ratio From 9cfc005ca497a48930da38fb384b7b154b20b6c1 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Fri, 15 Sep 2023 20:40:54 +0800 Subject: [PATCH 13/35] update allowlist_forbids_become_validator metadata --- .../allowlist_forbids_become_validator.rs | 1 - node/tests/allowlist_metadata.scale | Bin 211607 -> 212357 bytes 2 files changed, 1 deletion(-) diff --git a/node/tests/allowlist_forbids_become_validator.rs b/node/tests/allowlist_forbids_become_validator.rs index b4c388cb..0f51f30a 100644 --- a/node/tests/allowlist_forbids_become_validator.rs +++ b/node/tests/allowlist_forbids_become_validator.rs @@ -37,7 +37,6 @@ async fn allowlist_forbids_become_validator() -> Result<(), BoxmH|%a8 z=@lck)LKQwBMwxtqM}lz6$4%0P@-aMD;BC)snQk|TP&zpx$6Cu`v1;3yU7Ny_x|ti z$7jizne)t?d3olU=XJ!{*bVAQfnFIdOLKVE8zBe!X+8)E>Dvy;PrKz5G=zuLKCyIDYkP; zF{A7bpV!-5?{|Ms4;8U&#-ejsF1i-Y3XCkCWh-Wk+gXWmA5SqlxPwZK^?a1A6s2XX z45d?OjzLO7axtYY(;G`WOJ=fYmNDDw@#`Lcr{B)Z*9j4?RpwZtyV^o;sMsi1;_-Kx zGBIurV~WZcv$J{lzyh|w*rbeYt5$2N0E3P1Xm$DZvns_`%LL|CU!!{h)udK1at6E| z?nZy1N>162+L?@1+gG%-bTziR+@5-0rzhZU*X#Y=O&-0wV6m00ko6gLIhS<%1A4p4 zYK=5Cm%5Av>Lj|!xIvvxj~GGxecbp$&7`LcXH*{j+L#-aL2nqVqB7|(#-^xz`pDQH zHHrRae2%~WG_>eTIFYd+I+unS-O&Y&@Xp^DX3uuQ?Y@b9sjV7db8Jq3n=&Qlc?z$R%{OF>T0I)MRWLl7{r|A!n(; zcx>nuNPjl8U}Oe4uhQKut(eXD#x|GVzrrYtO&-!f4tyWjzCz-y(H>hu4QA@a*wJH~ z?AiW~@X8d=ar--5fyUMfpU>-KRAPJ)JBeD2al@*|wo!Jica`q3UfEc7xz8PFZPx?t zMwN9KcMZ#+fU$R2d3?!YuQ#yJ8z^sU^RCsK*f7RgjjxAI0*+=6&!RS?dU(>f?6SF? zo+kfNk86#~-R4@^rUT;&7J1sbt9{-z?k3%5+&FweQQ2&l$Kwsm_UW#GKF{0M#B8h> zZC7-4=-5=Unw_Q2YV$U(!k1zgI`YQwh3H7ih?&5kYer0<+TQgeHjq&>D$y7dH>!7D zoSW!|-ls?YlWfi^wk4 zz+_?=A%fkMpMm~2y5+o>&DT1x#V^u)lm6c|-=wd+pmFB{6EWn}WW=cr=G26~Y@LPsJG+P7W89ZGEn`c>kr(S->xs-ey@6KU=fB_hI&splEjVSI?0z)y zAbZd#b}k(j0m>ffz1P`HAi3v~3PwFij`>(3Mw%qw{x)x**eFZ>%P9KREhVi7{6%(H#94o_e56~&&)4Xx?xe=E?Du$fcSeN@ZVTVp%Mx zt;(7hBPI)QEdSG}KAzaSanhqC&$r^j68h3;FT91KjI)IkD8@)F+KDsawW6&kX}I(b z^KXvfEWSA{C0< z^g`o}srMq)Sh9pCkhn1&HRcz_^uAZp6opf^Z02MDubH`!#u)3%l8isiydL?=%eN!{ z_scUW-H0n&GA5I#w4zOKl-$y6Z+k~)0Q`j0>vOlbJ+j^e+TZ(l*&d=yqi$9*<@9#V z8pG4_h-yvVqqKJVbd&Ti>}+4D`(`q-2fTU4o;k1ZOcMLApb5rLD;83Y@oB~FJTFx8 z(A`o!61kQ-7WD_iHr1nv8Gj>y5T+ z$Eur&cAFrdAoFZE)4F1;dLW$nctsjNYgN|k($sIl`u|Y-IQT5twWAIB>H$vY%uI``h(D{CUHitBt?pCkh*`dV zWsZ7S3AH|?ah!TKoVmSGQ@>F{-HvTaN6Z+HSV=Lw$@|snR|( zqco?hRcfg651O;pr7E~Q*{j%=w1f&tJN3@?*{!-{HdI!pf)m8sqVwM5YW)o0cvd<) z#2i++JgyeW>a~Ze8TYp&kG_yYT&>dU<~Orjoue;g6oDPq>!(|tBM0+~>(tPUl(^%g zz&2Kr|*aE20ip zo0jM}U0Zd{qp#I`7UQlpdYkloW8$i`VG*#3YAjnd&p5m)o~n$GSIwfOMowEf75A=c zOCg9Dx3u4!RE4d_Ylz{8Em&O4mdb)+w%i!!nMB#Wi#>ugs~ab;DTZvsQnY9~h%_#T&0vo_7K1)M1;K}gVJsYcD}sfm-R;bIjHWA#7AUhN+c8PQ&c zPj3V>)f7vyYg@f8qwlTc9t^X-*{AD++ol4rp!Fd9x^Io%blyAXQVLI!PjBgLbNRwt zj^=F!|I^}zpcCdIFVnyZx!U|*Er7-F<8`=Iv(lB4tyYZGE4*U-3kZAt!|c2~C?8aUrZce7h>%3ly}yMC3fcc22MEpoZfYgutFH-6ET zIJo84x{4v<D19-es-#V5YJp6S{lD<;#9k+RwyAoTI&e$+*t4a5raz}`9?q|xeXUtVx3oZ)GEN00ldpQ1j%?(@&Xl>xdC4#k? zSX5Y$DREHZPq<^)$U2yAv|3J>|NdsR?5lLt4p{U7vX|ECS_9NGx%M!Wc0Djse0mEd z=d9@PLc#?r2T8VDex$J#0ubbq@G?fOUC&^wu*DWqd7B&946M>Fx)Kl}pdgU~VH1c| zTek`6!5+w4>jtVef@^?$AwM7J&Sx}$;gLvvm7F3B(s!9I=LJojd>J2$A(g%~G2L?USop z*S8uEY#QJD!|yNRw59i*4P)fv%UgaR<&Ex*pV2nshKI-W{_u`Og|_xSu<2zQ&g>-> zl)YHb%K=gI8=H*e9*NN=Jq>`#0x|aMZO!=>U2N|3m@FwUPhaEqcKX}8s|fo>@4z8} zo!bEUBH;5v@#t&NT)vjhb||o9duZHjbKt!!9Z(%;ru+pEmj~Z()t3{Fuf8!n<2kxo((M;Ogd(ET47>I!*pDG~QYRul<8M95Ii;LKH zqi=ViPWw#2upGf zB&zR~RWtUS54q<8z-NuJ-b>^65v77nn6E<<20W5l*W%t=dXFk8`~Hn!)DujlKI8u2 zOnTRNFE|S#`PgTsq2%gkF1@H=e!zI}nFV0c7CtwJ&h!>N3zjFGF`m0V%JDkc2T7<# z?EbM?1?oa_Fgwmt9J%hMT#Cn-vEQgbU)||m;{|sD3F)9wvp>;s@cagT@p3|vU7bf} zBiOmsKw57A(!yb)X@;$@z&Nr$pH3KR-__t(>-sX6zpE~zBcv{&qr@Ck;Df@esorDC zP`M$kv<89;U2UNIU9!uL#5cQr{=jh}XZEsOZAlKqG`|jnYl5`-L-O_o+5_gNo73lOq52&(ZVp|taq+`bQFKf=h^x`=1MztS7-wo}R z1f!#GWRD!r$^XrGPG2~lh$429>}Abv=4xI+6;P9jk!DKa}Vw=I48h8I{3+cU={JK^_t($&(lpx?eZfs!t06eUl)X%95iWE$8Oz)!OEmp^pjgpU( zdO!K#QpFsD%xX{}EdO|;g4zD-$$V>Q#-vZ;pt>mkWNfH|y+8Qm4%tHbml^0q!=*XB zu2XjnE-3r7f?My5Uwm$(nBL&$Zuu2d$%(?*4a!mtcA~qsyF=PUq(ZYR22`xGa0>QH ztErXO4bPWjuo$<0nIWt0{%SlG^d9-@P2QjR^?%(gKWn}5{u7F)5MK?N-DYu_=kft@In(UHA`cI8%Khy zPfQxL&T(|XLdRj5@f*XXp2;Z=ji&MD#5jYoiAYjpPoTbjd616Wg;XlL~^r%EsD+hI0H8`aog=L<44 z&+QEiWaB{$+!4T~9W5R8pnuR>boj7jJ2{nE+p#pvib{?Q9CV95&`N4xR^-N-xl7TRZOElrIdo>b z7&VoyHWy3*X~x{j5OiiEJ6i=#lfkEC20CE85Ng;8u~QZ9>PH|uBGb!g=8EGcv zTq~o@q?}qM!A#0|RYsdhIjKsbnUpiCIL)M-P9@1qZtRiiWHT*iQb{qBau$_TGbyJ~ z8Dl2p{3&D2bI(I-lj( z6S-7e8Din)N-D+Jv)1;SH4PSqeOCIVX|#^_aie@@yjVP)5<|zKxMMm!Yo*7-&Jj8b zf`Q8@-=aoN@q8&g7ot^n;;;_^KlaQF(6a+PR`gu~V)U1pR7kIj-_4n(0au8s@BHAm&ToApz!RO|ZiemB76*Tp#gB+d*&`7j( znv5{Cx=TQL{EaY#=0K+ywjnH$1$bd{v<@7;mliR0kbkGyL)6Tpu|0<|gXEMvv%l!r zK>E@%1L@*(1L?^zz~T`6l!Srw)bxRLN!~zu+BBI?HQO&NsEEiE*2qjx=v7f&#H&l) z5t-u7h|J{m5t%6)kzsNG{0L|G0TpyQ${Btv8U`IX9)6rN{FoZ6(+Q3@Crr4b{3K`i z*;w>x&Q5cf=aR)8l{B;`%qlQB1N;b#JjQI29Sjgb(NLI6TeE6-FIekMeYY$8Vj zNV)+4IoG^UVfdK~nWJnm8$ekOn}0dxr<$rJ$G5};jS_?ZB!CBSM4 z5NiQ+N`P*Kbzd8TSSKOYNeD^O(8PKPu|Z+@nN8d(0dAE5lF$KQqXgKbF#Jq_%@Sa< z1d!wp09(cC`Bb?S%#67=DAi(5{NVz&O^IZ=vA52rJ~K4$1k-Oyk-3r4`zITE)ZC*f`u;xfpnwPq7&fV5*Jc0 z9=}~kpG3S3e!2*}8tK8CYv@KUI$9`Iq}EavgdWk*MDaFq$Su|vY^bFhC=obZJX^ZJ zNX1dER%sarO_i<~wv2{=;5e7jM=Hex&s{?So^p{2&M@;P*}zBYz+%zC;L+=-D$49| zajk{?bit(dhj64jQ7+nP9%3cG2V`%6A$C z3l^DXRcRB{;o0MG`a|AUM@4)m z`bNt%7Opqo2sNHLmU-QMnOH@1g|QQHOjLm6R> zD~?BozV)j;&ECpoI4w4Y0ZC#LwCYqG zeDW6hA|wvPq(Ubxtw;NVeLtqJWa%Jr;#~09M*5LT=S1_}Gy{jD*l{;aqhj&ryXkXC z8HWrS0TDI$mwO1(eSx5R=^cs^`3E8Yow*mMZH$N))Pu*Nt&}L95a_@#@tUA?1;Ug_ z{|Uv5e+i1E$ztdhO2Ru6t`zlzRCHYT8yxO^m=J=WOYQ1l9mtt=0MOZ-s!EE`AEY1ZinEhoJhyNtQ0b z3S&b0FqUc6!c=JE!#c8fj~5oUfzkX=Cm?H}%J~zJE49pie|;Nd)f{mhW@|#&>O`t9 z+&PNqXAVZr^Hj0=J`6kSK1wOXuv5#S$VWR+AWCO3$Y-#nbxXI*45{&#gN2$O%sb-+ zY_c`9AKypXi1UUf`W^sw#EJLOI3E9QRsVktO8ajHHBFQs2G0Hbei}>1#licjwYYyV z;bUs*6$c8!li2V28ZsVO9j08dZX3>-ICC&bGgN|2Lts9b!y zjW&!MXx!oUxPhVn&)QBF#Xlu~!N2){!|!Sf^e?q#2l-zQC0VR_kUXU`)W~BU_;>!P z69-(t<|vmaQ2~h=Pt|^00g6-#Z983w>07m(mQj^B_7)JWbUO_ZC$>{6%K1akJJpDs zhiEykQNcxy9oa4&yQE+qV!@ZH!oG};6Yo4kQ)qc`*u!)SjbARmbzFfPMeKJH?oaNe zF=On3E|*GkLVgzm6dYn6+heiyW}Q6#vhbN0K2t8%op_4|w#iBZd;CItHBDOs z02co0Dtw{j!JC7Vx3;TNQbtD7Jibzw*5oi*aI4f6LSS)b8;y>_PS#aZ!6FXxYmzTz0wMSoU@`{<}QG#Pg5PJlZ4F9W)7#;vKXYk6U(7IUcX?z^T1Q#6C(_ zr>y=rZT#^no-DRKN>|1}f7r1M3iT$jJyS^(w#R5uN~h}h&aZbqMy1Jn2D}BK+^B*V zsmmj~-K~l{ujc9E)MNAqzD^Y{w(=zLr^i9Eq!ulWwutndILflcjGfRDt{1MIbQw;? zZ9BmrUgX`>Ea}e@xz`56DQkWr|uuLA5I~!@~!ev@6zpJee zpP+Vhs^&>bx4Jk*?0gbu?S|klpQIE%vch8;q?_Qi0POJ8fvNo4&uRWJP4ChhO>sE? z1x=Lwf)edv&|uRqXo)=NpLvRonan~;On(u3}uK1d%+rnXDE2Cm!>J< z0Y<+3A5T&6aFAw1U95@!#T*5n-UntXYyBW>-f{sAgF`EjVuM)n5@jW8;mH7Fm%3PQ zb9KQ#9ItPU*edW^>JL-cs2WxClf}Y99xZ;>2R?q2__7b!T_C2u4934ew7pDIlM1K+ z_8(K@Y5L}coj^B>7ha~@3OA#N1J0aVRd{o5$EGvgIk#e~h5b3VTib4{YVy8!y#nmq zcJB#_FM)O2Uk}?(L)c?~+n_OLTrlPgbIjZCeUy(haSG@fzh!FdOH~*R{z>|t!zfSX!jsFc@LI5fIEj=yr4$@F@ z?zd1i7l;XOPzfIOZ-D775I=bX(%CM_Q(lq~PY&t*K5)jtE%UhW9Hivw{pVV)-sKL! zlgj1ydUmTaD90UGY~~nc>oP*8e(>fKPaLG}v|CiYNjWKdRmzn$mUMzJVqu{xHNz5A zXt_4MNzO}N?{9LA?h8PB96uLZxlLsU!2`*fW>yLyd&S#t(j0nLB>fKOf0>y2J9+^6 zv3Gt)*HE7*JVc4ZwJKK^EKiL(w7hJexbhHXjOkO=*xBB-(lB*E#ZiYp%={C@+3T{C zPVw*|il>9(nL~6Hns*!q6Jj=)pyIQKC5tl=qFviz5T)bd@xxS&$2W(m0gr2bPb=}* z_j@`7kUQR@vS;Kh6W_)%)rji1sVn8!zoF6JF5{!c zxwj$Y>=EORn2#%tV4?Sjjw2@NfA9zuAb0o(txY-pZyExzPc@!*#sqJF2Mhy0VG`-_ z!uBrB3}f20@6uEJq)D(-g4svuRY|N)|B>zjA-wTDNdE<*=zaPL9tYp2xp>4Mqx#g- zSUO7}1wmB|6uj>ky)R{)u0PX%P{C={UKU~lOs@z?5q_stSFYF@c@oMf z6|9+4$`;1A^Aq4Pc}D$C@i{f*)5)0l?FUpxr$o+&m|tBqeu(qtfcW8uR5LolUWTBr zu6on6Jwu%SklrhacvmdnNgRh$ox5?HN+qEK-3s0TPioc<$RGz(omrS;1%h2rp+G+G?`9AfI0PiXYT zBj?0E)R8>iCp6-yH0G^wX1%CZ10 zjT)f5HBsLYeWz76m7BphcDNwW*XOtUwdI-Mv_egs17QzrDKv+?CWUmOlaGF{M^s@^4PPt*7@`71zX%uj^Av;^9brcMMbMX7HH<1`h;<>$_U zD^5rU!J^gM#gWrAE+N0P*6W44u>8LCGxal@`ivO*DQP_ophV%)hWvsMoQ#X|GrRgD z%MV^U;kC*lun3YmYO$e@1JlTV#Jum(x1Y`Z?7g7e@3;Vk3_Cb^XN| zS=}KdTp#hN_3~5QQEUUA2+jbX5G5mW#QHOIh;NJ%pIpvUgy##8@J-@}UqIWlS-koM zO)tL-IF9*lmVsTqyGUCUN@5H9VCeS24(e}*DpHEwi$euq*teRWd9s*o6PN#kW+z?X z=Voe5*63Treg6OlyIuV99~j#%VgHgQibG#g(U2XXLF|kYL(kF}aod-amK71eL$QcL zg<4mu@VP9LH`^)4xFd?~l5FtB}5g4W{j=o8oeCnSXf;^+TKnNtr$soJbsU{{r^!>-OJ z28SI7@Zfdy$o#_(Mlt-Ps@TB}%YGh-Vn@V~ugHy22fo5N)GoGtMH9sSuStzo?R%W? z5jyx4eLo(uYQM3$3fifWPF!JWyn!nEsyMg-#U!J+-!I7B>G%D@8FZ6eL3UcPBn_tJ;tIxJ4I$3 zA3f%XLW3(IvO)H`JepNS!`~<+=#S$+qu3f0sk#Tz zXAUaC6&jQtF({YN68Kc;M6XWZ#dvH?;2EQI`4v|*bDJ%+qXlrmScinwp%ywLT39WH zjOLTTs!Siv^YL(x=4mmVvW3;rtUI`AG#7lxI3R1ghELY5Yo1pyg?Z*hv?`G(G`2*{8zIp+0Sm=+kEN zbB=wm`^b(UyUi?dZjWZ$FZ|dJv!$6kLoMx&XbEKzi@xi^Mc;*nvFN)({T!Okmx7wO z()p;E-SXQzquJizx^#X};m=|N%^WROX7bu0`^^3nI9Q+gZTJqFM@peOFa-yq%}6eh zJAn`Hu}5g^vvI0j<@R_$VIfz+I^5YI39kS3XxbuO=io8EBve$|ujkK|ynLvZ)ct*z z2{~0dmLnW3b5Mku-3n0ygD>ZN^bW=9?sjFMy9Yzv)w1|-PegZ#6-bvH_=uUo&2%^# zCx>Zt_W6%Q(;P{OBLUF4uyGCu0dA#nU=ScFs4kH`cQ44KoL}URnw^?>EVO*bBbM)& z37ta-Iy^3+kv|a~GSaKrd>W*bnc2Yq*TtG_K1n$leg^}-E%DH|MY&nNl@erXb0iiq_tj^;*Y3Mid<8}m}uyf+nB(8~!NqiwEn+Qze zb3o~yoy3b|_VgrP&!cQ&VFAAaJLCQ$o(6LGLJ@~go;Y5_3$tTv)_f1M4a|28Y`mcB zeK0X2#gUD(g(dm9Ji%->P3$e?vv^V{<1FGW80t+$JmtLajIq9x9{NsZ#COuo@4y>^ zWyc;eMV=No$F-=eP#l@cZ=z}9r4mqvX`-iuUp^?8B}PmG;fw^x65Z3d^Sq)D zWKp5)U6P2O&Qtzxy13{RIJbC+=8dahxJ-pwwQ-en4h}_ZN@jySxq?J5Q}R(WA#l~!Z&0jxa5Ap8Jxr`3coYH0*U)mSi2wiF4D+;aJ> zvoZWoIfh&|=Ca1~+6;{CfH*yazm%@qD1LS)!~#aSxS$}s4+n}xdKpg;PnANE^|zUP zJRIZ)Vy$rpir4FlEO9jI?zTN*(&c=@GGtQYpVyazc9d=b=2ljrm45VJex^Gi#y{QX?*rA45`jBOjV z@Vk`@ut+*O0B*av-X^CODSqq-j$gpb_~@Oo^Sf*eKalSjb+_$+jqMiQ3pq54;%5ta z*6=}Ev%TWa3;DR7y|#X%l{Ac_M~*gci~m_0Y4TuL;B7%swk(n=2XFg6;0O@c+Ya^C zppK*Q^DRHHz{rk2D|>cCW&3P)4Ym%mnQ$8!D(kaRnaKjrTCiwQRsE96YbrqE`%p=d zwe9SHcw`Yc*4M?Gi+DO7pD*I$QeL;wyo$=|!pW1TE!Kf(9RYd7$=Hq8MP4t3Pu3V*0|KdcUZhx&7GM?2X-9jRC_zP zg=03#mD4uQgp-G<7+S+~t{u=#T5usXe#kbQyHfY)&F)6G%hx@yM%l0v1@w9ZlMI;b z=72(m4cC6_mAJEpk1p;1z{Llf-Q;e@2M~zWJuoj$j~SO?833CH$~9?i??fouK#}QO zjsCQEgyieNiqx=?9oL$44IY|h0X>4{)- z_k?`zwy~2oF$wxz(YKiYz2daZo*g#At!XciW{@g9;F1bTpb9zUT}RX#=;N|X);O>nb+`fqc%XVJx51JK-t}XY~KX)D+y9| zyaY7wOYu7Rxl=vuxD zITN5}1v;T?sUgpR>N$vsl=ko%d8~$`)TMsKP9;!KLVb?=G|brvnRBV6NmkLr z#lmwP&lEXzJW;Yibzs{Hg{zKFOq^_|vUxB^%=K7`O}}{|RG#d~D52Hy81W+hz&`iu zI=(B3NQ;&nXekB}iBHn1e@je~FR-TBmQmf=*;29Q1g3@JNGH}I|Q{JuOZI5W87_szT zKkPcXywWQ}6gBa280FF?o}N4yY-MK)mf7!zYf6T=3-6r~?{j4sTnIg(J#T_@o{YOS z#~`!g(Po^^orBtJL}agTpw?`ir;mwfvrHlZ?jZ9IfUMVf#-Pu(M1FRk4n)on$8?}| zhB&KpZDvGs{n5=4We$lR5qZpp48M>YMZOSAn$6i*)6CNbeO89nyAW(Ar&sK1#wnU1 z{?H8lO@=tv%rgd!QU=r2`&(T_^`Ms-;<6STwi%+Xg(u_D)nZP~{Z=k$<=(S$|A|~A z?iA~dO@0>)aE*wj^hNZ#+IkW2*5j0|zYwoWLU$3>qnf)JSK9SoIksZ(n+p*so>3W; zfO0d!m}ZfW4B>6%<1dM5X2HOGfGX9S-Z=xW*)(gzA8O?zsV(?nD_3kIJ3DYG5~go< zXrr@{V(e;OMWaO9YTm`;9pdBFyrQR$q|M0m{jdUY8(la-r9TKFaswJ}sKPph?%uMZ zX+bm~afG62L*xldk828~r-=!^QVKz20);$J^1}4S-w+BYUhC~_Ytri4<+U4NT{Oh@ zx9OU7M8f^VnvsA85BXMPTUf9gJLOBMEfD@I)ffRgnY=_j|ceA95v)YgQ2dqx;lccP7YW5WYN5aKM$GfxwX6^ z&1K1JFa-}pW>UF5-n={!CZe%jycYU8e;3fzjMf}yMR{v*fIKc^H!H+9UEm@rp&vIH z$0?J+FjnG}R?5MQ+gX)7uv2U7OYO_;b#~qEwzu0^jd-&gLRdpLzeF7D#)0-|H_xKw zva}R-2lHj-_xOY%E(GO6U^a;>ohrobP;ts;_1$)V)pI)%IyDUBJ9xSfoEcmh`qOSFWn?E zH}X5+qp@crf0!5CB#z$>jYsz#TsofYy@T)VFT4FtjI2cLxszAYyx_m?+E9>iIRMU>P|HfGvy?in;g^}&9lQXLY zXNQnvZ~Vtkf6m$Gl0Of>&1>C&U;&NrHe3vx!!LQ;mxa0u`dfK>;*S#RGPr09PJ37;mv6;% z>=&E2@}g18VGJn7HGGmK!j)ieV;yJC zGRB(3oev_A0s3t5z=M2h&(bBe+N=ugip3SUH)XL_JFk49c1^|NMd@rgX_d_yu6xub z!o2|so{8pF8!`kRGy}I#d{6gzb4>twr61HGxW&*U3(fFRMF6zcAla@)r0OMTz24Ly zZ@qBg_BDBHi%B+m0{IyJTAZ^!tEnd3K7gwR0}LU1ps2iJUn z%(c6&$8{TXyi2q-xO>a%%a>jDfSiFC%6^*{ezeOAAv(}A>wXtZS#$U%4xi@h(QzRU z?!46f*5~CdF6M1EI778gkB;jZ8*y2}?HDgw!yO7fc?*GT9A~@LDNKeOUOxL=o8=7z za9g6hzyVl6c;55)}kWYDQ4sJJzF|Rj4G;q3j>p}jfIH}e((E%z> ziNQ&NKH|<XFIJ8|h@ zvuPv^q0#@iWm+DkILbS*h~{5=Zh2>*)e9@WTlW(z6Nk3LYM=+d-Odpj*${P4@S*2% z6P%fP?gd`Vk$NV0=0%R6jlST9{kWr+UKKC&!APjLJ>s7uH zBR%vg_u)L5eSlAiIv904$|9h_2M+LRq7%W-UgKABm_x64oqwz1da|d2SN?`4syv#B z#y5FUbSvnP`jPnjO_5cM{fFQ4^yqd1;kZE@egw*+k#C{R{i5+L z{$n~LK7ETnOgqHgZ}ZRL{qy}JI4{2u`;PD{?YQ{t*NiAyjChBqNQ+i^ zhW3>B>pKv~az)x7_@k5?eC-cBmdpFm-VpB`<#SOo=8qiCcyVI&d;EGRwBLUZ#BYpn zzK>ezqWXPkK+h8WCAj&0D0-}%;yk*_Vm26w$W7)V-UaKTTAgUUnOqe6{?v{_UyA56vkkH8_< z2+v16TV5FVPw^AI5&38paXc z9*q5%Kde%>c(8Wyzuoi}l8m$uVTscwWH2GDM|NdJ`Y2d01U zDSrb<@Qcs*?^RqXlMvkSIpVEg$Qt@3zs%mp;RVm&%C+!I=o|Nm^_u6 zoo9g^SfWi|@yw_L(a=PR=fC1L6Ig>*-nJHgeITT82QaTkHLXsVDUYke-zr@q4hEfH z%d>84F!dY0iPO>G&;Jkns)6w}=eS2A!2W;ntG8sH#e*V#BHH$WqCqVZkjnC6U4a;+J-1d{QY6Ufl;A30cG( zj=w3AaGVtH*_CGdX^cX>L8}%|y~oFh<{0IAVC>--WlsFF3QeX|_(EFR{aLsOq$Zd% zM7b1KHHx~S%EMSiidB{&FzM=8C5jL@bKNjya@04`=c3=0Jkb>K<}l?x?1SrvE5DH! z`%Md$j8G8&nR9QPa&L5=4PV|P@)8xN*b}E@C^5i}_u`Zf5To+qNaad!N-?995|Xz7 z&Ine-D|hky<+e)fZsw4pIqdiNSN+)s?|hUjLviIl2b}k+=UV?A!-bNlG}3C(lBnbk zFZdc2>8wJVR7Ra*d!jM}dXqmVDmMU$RydXR=nb+%KM-ebka5^wqjWoSmb3@vEgf_q#90c8Ti~IGMrV16kBF-zk1GmeOh)P zY;Ig)1(2Yoo%1uc(5GT(8m=+Kr_PFR(v=L*zp>+#c}kpW66|#G<8ey7El!mKsT4cL zDOn(Z2gfM|*VL%y0nMlicPrv``kZ;*K(o7RNvG6(x`^Glz{HU{#hkV2( zjPa&lCb7_mwH|vMX;-v)!3pBFBk(6CeUf5bq*7KgV&E&>P4arBR>)Uv2)Kc;ncFX0 z{SDlZ)UL|Qj7{n$Z{2I^Y;W(@`eT%=TgwKwJ;dYBr#f_>jTaNgE0eKJ8^&Yb?Gat$ zm8p0CIu6(75f44=;!l-%e1xydX(*WGOYEU@vDW4izNftxFWYP4XxXIBQ>-tK0@T^POB} zK~Gbg-jF|7Um4Qd63et}a+Aw{_A1iKage#e2RF-W-Mj&>$K8l!Hno_3&0JWZfb8xn zb9v=m+TaZPC2o1{Ve!FrYo@Lfxbe7FDw$A;3?XPs3)(bL3zy27w#j^2r_xDP)50!) zIrep;EKkWaZz+(-A^*JsB2^5Ugli?(KcM%Pw+h?{Tlu$$_T3&2J_fJOlri?JDqI?Y zOan;sT@YerJnuEQRNz(oKZ(3+>~EO|Wx4pDf&cHpyz&s9PvgH0|7+3aVzfU!n)R^D zkn!Tf(jjC_C@tftOYy%C<$ZXrz_SvKe~23oE*%3{bnFv!;8K)-fd3ES|5Jc_0MDcN ze=q+3=9N**`SO^)==O<^rhE~-ZsLC~N@C8jB|}*3pWd^x*hk02Gw0Ji52rEbg#A}D z=bA47|G=C0^IWU^vlM@ZJW#U;fv*&E3EJ`6`zE z$CrN3vL86xG`2A7@KE->k;7T)hM{cAN0+B)D~k3{{7$o|Cpi-9A)(@&3{YuB?TR*LdlYJ09M&tT6k(qW?7O)@nV5 zU6)t)>C&42di|-(a&p#AgD^UaupJvaBy?PBy3;35kL(p_3zP85hC^5sUYP*)fKn84IYIhWv zC0D@e<#+p++Y2m+DljqTg;;g=f@~AQq`s&Kuahh)X*JAf=JSkzd{p$jg$b=|I Kr~T_Q>i-8yb#2lB delta 25030 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 Date: Mon, 18 Sep 2023 16:55:43 +0800 Subject: [PATCH 14/35] fix find_ws_http_url_from_output parse --- node/tests/common.rs | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/node/tests/common.rs b/node/tests/common.rs index d4d57d24..355f6632 100644 --- a/node/tests/common.rs +++ b/node/tests/common.rs @@ -257,7 +257,7 @@ pub fn find_ws_url_from_output(read: impl Read + Send) -> (String, String) { pub fn find_ws_http_url_from_output(read: impl Read + Send) -> (String, String, String) { let mut data = String::new(); - let ws_url = BufReader::new(read) + let base_url = BufReader::new(read) .lines() .find_map(|line| { let line = @@ -266,33 +266,20 @@ pub fn find_ws_http_url_from_output(read: impl Read + Send) -> (String, String, data.push('\n'); // does the line contain our port (we expect this specific output from substrate). - let sock_addr = match line.split_once("Running JSON-RPC server: addr=") { + let base_url = match line.split_once("Running JSON-RPC server: addr=") { None => return None, Some((_, after)) => after.split_once(',').unwrap().0, }; - Some(format!("ws://{sock_addr}")) + Some(base_url.to_string()) }) .unwrap_or_else(|| { eprintln!("Observed node output:\n{data}"); panic!("We should get a WebSocket address") }); - let http_url = data - .lines() - .find_map(|line| { - // does the line contain our port (we expect this specific output from substrate). - let sock_addr = match line.split_once("Running JSON-RPC server: addr=") { - None => return None, - Some((_, after)) => after.split_once(',').unwrap().0, - }; - - Some(format!("http://{sock_addr}")) - }) - .unwrap_or_else(|| { - eprintln!("Observed node output:\n{data}"); - panic!("We should get a Http address") - }); + let ws_url = format!("ws://{base_url}"); + let http_url = format!("http://{base_url}"); (ws_url, http_url, data) } From 61558d41f8f7329131cc62ef1f747657d97dab26 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Mon, 18 Sep 2023 20:45:57 +0800 Subject: [PATCH 15/35] cargo fmt --- node/src/service/brooklyn.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index 883455bb..c46c7486 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -23,9 +23,7 @@ use sc_keystore::LocalKeystore; use sc_network::NetworkService; use sc_network_sync::SyncingService; use sc_rpc::SubscriptionTaskExecutor; -use sc_service::{ - error::Error as ServiceError, Configuration, TaskManager, TransactionPool, -}; +use sc_service::{error::Error as ServiceError, Configuration, TaskManager, TransactionPool}; use sc_telemetry::{Telemetry, TelemetryWorker}; use sc_transaction_pool::{ChainApi, Pool}; use sp_block_builder::BlockBuilder; From ac5a57ad9d5cc170bf96e3a3d642f64f1c4d7d78 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Mon, 18 Sep 2023 21:21:43 +0800 Subject: [PATCH 16/35] cargo clippy --- node/src/runtime/mainnet.rs | 2 -- runtime/brooklyn/src/ethereum.rs | 2 +- runtime/sydney/src/ethereum.rs | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/node/src/runtime/mainnet.rs b/node/src/runtime/mainnet.rs index b480ee9b..f2ae1acb 100644 --- a/node/src/runtime/mainnet.rs +++ b/node/src/runtime/mainnet.rs @@ -109,7 +109,6 @@ pub fn testnet_genesis( let nominations = initial_authorities .as_slice() .choose_multiple(&mut rng, count) - .into_iter() .map(|choice| choice.id.clone()) .collect::>(); StakerStatus::Nominator(nominations) @@ -149,7 +148,6 @@ pub fn testnet_genesis( }, ) }) - .into_iter() .collect(), }, ethereum: Default::default(), diff --git a/runtime/brooklyn/src/ethereum.rs b/runtime/brooklyn/src/ethereum.rs index e74e6769..6de37c7b 100644 --- a/runtime/brooklyn/src/ethereum.rs +++ b/runtime/brooklyn/src/ethereum.rs @@ -228,7 +228,7 @@ pub struct HashedAccountMapping; impl astar_primitives::ethereum_checked::AccountMapping for HashedAccountMapping { fn into_h160(account_id: AccountId) -> H160 { let data = (b"evm:", account_id); - return H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]); + H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]) } } diff --git a/runtime/sydney/src/ethereum.rs b/runtime/sydney/src/ethereum.rs index 4185fb9b..64ce186b 100644 --- a/runtime/sydney/src/ethereum.rs +++ b/runtime/sydney/src/ethereum.rs @@ -115,7 +115,7 @@ pub struct HashedAccountMapping; impl astar_primitives::ethereum_checked::AccountMapping for HashedAccountMapping { fn into_h160(account_id: AccountId) -> H160 { let data = (b"evm:", account_id); - return H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]); + H160::from_slice(&data.using_encoded(sp_io::hashing::blake2_256)[0..20]) } } From 0544d4b73508e95d26954a5f8872e791411f4da8 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Mon, 18 Sep 2023 21:34:31 +0800 Subject: [PATCH 17/35] Update Cargo.lock --- Cargo.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dfc29b82..1b0e7315 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7756,7 +7756,7 @@ dependencies = [ [[package]] name = "pallet-ibc" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7780,7 +7780,7 @@ dependencies = [ [[package]] name = "pallet-ibc-utils" version = "0.1.0" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" dependencies = [ "frame-benchmarking", "frame-support", @@ -7795,7 +7795,7 @@ dependencies = [ [[package]] name = "pallet-ics20-transfer" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#fcc48efe6f3c24a1337cf81eb136efe1b35e81e2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" dependencies = [ "frame-benchmarking", "frame-support", @@ -14015,7 +14015,7 @@ dependencies = [ "chrono", "lazy_static", "matchers", - "parking_lot 0.11.2", + "parking_lot 0.7.1", "regex", "serde", "serde_json", @@ -14169,9 +14169,9 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 1.0.0", + "cfg-if 0.1.10", "digest 0.10.7", - "rand 0.8.5", + "rand 0.4.6", "static_assertions", ] From b1716787328fa60ad99994d1ef279c40e3bb87e1 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Tue, 19 Sep 2023 18:05:44 +0800 Subject: [PATCH 18/35] fix lock_api::rwlock::RwLockWriteGuard doesn't implement `std::fmt::Debug --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 1b0e7315..d912dba0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14015,7 +14015,7 @@ dependencies = [ "chrono", "lazy_static", "matchers", - "parking_lot 0.7.1", + "parking_lot 0.9.0", "regex", "serde", "serde_json", From d29205efedb7213107f363a36d978723b1d1f9ef Mon Sep 17 00:00:00 2001 From: Smith Li Date: Tue, 19 Sep 2023 19:09:38 +0800 Subject: [PATCH 19/35] update substrate-ibc.git source hash --- Cargo.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d912dba0..aca7d8a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7756,7 +7756,7 @@ dependencies = [ [[package]] name = "pallet-ibc" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#25cb5fc6838a0688b8a20d2905c8678b9431e6d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7780,7 +7780,7 @@ dependencies = [ [[package]] name = "pallet-ibc-utils" version = "0.1.0" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#25cb5fc6838a0688b8a20d2905c8678b9431e6d1" dependencies = [ "frame-benchmarking", "frame-support", @@ -7795,7 +7795,7 @@ dependencies = [ [[package]] name = "pallet-ics20-transfer" version = "4.0.0-dev" -source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#3ef0b0dba0000786b3481b281637ae360f9421f2" +source = "git+https://github.com/ibc-test/substrate-ibc.git?branch=polkadot-v0.9.43#25cb5fc6838a0688b8a20d2905c8678b9431e6d1" dependencies = [ "frame-benchmarking", "frame-support", From 903363a8393f4c63c6cfbd4d5e0f05def9519673 Mon Sep 17 00:00:00 2001 From: Obsessed Cake Date: Tue, 19 Sep 2023 17:19:25 +0300 Subject: [PATCH 20/35] Do not use hard-coded constants as call weight --- runtime/brooklyn/src/poa.rs | 1 + runtime/runtime-common/src/lib.rs | 1 + .../runtime-common/src/validator_manager.rs | 8 +++- runtime/runtime-common/src/weights/mod.rs | 1 + .../src/weights/validator_manager.rs | 23 +++++++++++ runtime/sydney/src/pos/currency.rs | 16 +++++--- runtime/sydney/src/pos/mod.rs | 3 ++ runtime/sydney/src/pos/session_payout/mod.rs | 6 ++- runtime/sydney/src/pos/weights/currency.rs | 39 +++++++++++++++++++ runtime/sydney/src/pos/weights/mod.rs | 2 + .../sydney/src/pos/weights/session_payout.rs | 19 +++++++++ 11 files changed, 110 insertions(+), 9 deletions(-) create mode 100644 runtime/runtime-common/src/weights/mod.rs create mode 100644 runtime/runtime-common/src/weights/validator_manager.rs create mode 100644 runtime/sydney/src/pos/weights/currency.rs create mode 100644 runtime/sydney/src/pos/weights/mod.rs create mode 100644 runtime/sydney/src/pos/weights/session_payout.rs diff --git a/runtime/brooklyn/src/poa.rs b/runtime/brooklyn/src/poa.rs index 09ba0bcf..e256e4d0 100644 --- a/runtime/brooklyn/src/poa.rs +++ b/runtime/brooklyn/src/poa.rs @@ -76,6 +76,7 @@ pub type PeriodicSessions = pallet_session::PeriodicSessions; + type WeightInfo = runtime_common::weights::validator_manager::SubstrateWeight; } impl pallet_treasury::Config for Runtime { diff --git a/runtime/runtime-common/src/lib.rs b/runtime/runtime-common/src/lib.rs index a0e20693..228a0738 100644 --- a/runtime/runtime-common/src/lib.rs +++ b/runtime/runtime-common/src/lib.rs @@ -7,6 +7,7 @@ pub mod precompiles; pub mod chain_spec; pub mod validator_manager; +pub mod weights; #[macro_export] macro_rules! prod_or_fast { diff --git a/runtime/runtime-common/src/validator_manager.rs b/runtime/runtime-common/src/validator_manager.rs index 1b5ca8bf..dc062891 100644 --- a/runtime/runtime-common/src/validator_manager.rs +++ b/runtime/runtime-common/src/validator_manager.rs @@ -26,6 +26,7 @@ type Session = pallet_session::Pallet; #[frame_support::pallet] pub mod pallet { use super::*; + pub use crate::weights::validator_manager::WeightInfo; use frame_support::{dispatch::DispatchResult, pallet_prelude::*, traits::EnsureOrigin}; use frame_system::pallet_prelude::*; @@ -41,6 +42,9 @@ pub mod pallet { /// Privileged origin that can add or remove validators. type PrivilegedOrigin: EnsureOrigin<::RuntimeOrigin>; + + /// The weight information of this pallet. + type WeightInfo: WeightInfo; } #[pallet::event] @@ -67,7 +71,7 @@ pub mod pallet { /// /// The new validators will be active from current session + 2. #[pallet::call_index(0)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::register_validators(validators.len() as u32))] pub fn register_validators( origin: OriginFor, validators: Vec, @@ -86,7 +90,7 @@ pub mod pallet { /// /// The removed validators will be deactivated from current session + 2. #[pallet::call_index(1)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::deregister_validators(validators.len() as u32))] pub fn deregister_validators( origin: OriginFor, validators: Vec, diff --git a/runtime/runtime-common/src/weights/mod.rs b/runtime/runtime-common/src/weights/mod.rs new file mode 100644 index 00000000..16cd951f --- /dev/null +++ b/runtime/runtime-common/src/weights/mod.rs @@ -0,0 +1 @@ +pub mod validator_manager; diff --git a/runtime/runtime-common/src/weights/validator_manager.rs b/runtime/runtime-common/src/weights/validator_manager.rs new file mode 100644 index 00000000..4862718d --- /dev/null +++ b/runtime/runtime-common/src/weights/validator_manager.rs @@ -0,0 +1,23 @@ +#![allow(unused_parens, unused_imports, clippy::unnecessary_cast)] +use frame_support::{ + traits::Get, + weights::{constants::RocksDbWeight, Weight}, +}; +use sp_std::marker::PhantomData; + +// The weight info trait for `validator_manager`. +pub trait WeightInfo { + fn register_validators(i: u32) -> Weight; + fn deregister_validators(i: u32) -> Weight; +} + +/// Weights for `validator_manager` using the Substrate node and recommended hardware. +pub struct SubstrateWeight(PhantomData); +impl WeightInfo for SubstrateWeight { + fn register_validators(_i: u32) -> Weight { + Weight::from_all(100_000_u64) + } + fn deregister_validators(_i: u32) -> Weight { + Weight::from_all(100_000_u64) + } +} diff --git a/runtime/sydney/src/pos/currency.rs b/runtime/sydney/src/pos/currency.rs index b26cc0db..a61e6cf8 100644 --- a/runtime/sydney/src/pos/currency.rs +++ b/runtime/sydney/src/pos/currency.rs @@ -37,6 +37,7 @@ pub trait CurrencyInfo { #[frame_support::pallet] pub mod pallet { use super::*; + pub use crate::pos::weights::currency::WeightInfo; use frame_support::{ dispatch::DispatchResult, ensure, @@ -74,6 +75,9 @@ pub mod pallet { >>::NegativeImbalance, >; type DecayPeriod: Get; + + /// The weight information of this pallet. + type WeightInfo: WeightInfo; } #[pallet::event] @@ -134,7 +138,7 @@ pub mod pallet { #[pallet::call] impl Pallet { #[pallet::call_index(0)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_inflation_percent())] pub fn change_inflation_percent( origin: OriginFor, new_inflation: Perbill, @@ -147,7 +151,7 @@ pub mod pallet { } #[pallet::call_index(1)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_inflation_decay())] pub fn change_inflation_decay(origin: OriginFor, new_decay: Perbill) -> DispatchResult { T::PrivilegedOrigin::ensure_origin(origin.clone())?; InflationDecay::::put(new_decay); @@ -157,7 +161,7 @@ pub mod pallet { } #[pallet::call_index(2)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::yearly_inflation_decay())] pub fn yearly_inflation_decay(origin: OriginFor) -> DispatchResult { T::PrivilegedOrigin::ensure_origin(origin.clone())?; let now = frame_system::Pallet::::block_number(); @@ -178,7 +182,7 @@ pub mod pallet { } #[pallet::call_index(3)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_treasury_commission())] pub fn change_treasury_commission( origin: OriginFor, new_commission: Perbill, @@ -190,7 +194,7 @@ pub mod pallet { } #[pallet::call_index(4)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_treasury_commission_from_fee())] pub fn change_treasury_commission_from_fee( origin: OriginFor, new_commission: Perbill, @@ -202,7 +206,7 @@ pub mod pallet { } #[pallet::call_index(5)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_treasury_commission_from_tips())] pub fn change_treasury_commission_from_tips( origin: OriginFor, new_commission: Perbill, diff --git a/runtime/sydney/src/pos/mod.rs b/runtime/sydney/src/pos/mod.rs index 948f6c93..10082049 100644 --- a/runtime/sydney/src/pos/mod.rs +++ b/runtime/sydney/src/pos/mod.rs @@ -17,6 +17,7 @@ use super::*; pub mod currency; pub mod session_payout; +pub mod weights; pub use opaque::SessionKeys; @@ -539,6 +540,7 @@ impl currency::Config for Runtime { type RuntimeCall = RuntimeCall; type FeeComissionRecipient = Treasury; type DecayPeriod = DecayPeriod; + type WeightInfo = crate::pos::weights::currency::SubstrateWeight; } impl session_payout::Config for Runtime { @@ -548,4 +550,5 @@ impl session_payout::Config for Runtime { type RemainderDestination = Treasury; type TimeProvider = Timestamp; type CurrencyInfo = CurrencyManager; + type WeightInfo = crate::pos::weights::session_payout::SubstrateWeight; } diff --git a/runtime/sydney/src/pos/session_payout/mod.rs b/runtime/sydney/src/pos/session_payout/mod.rs index a135835a..040da6ea 100644 --- a/runtime/sydney/src/pos/session_payout/mod.rs +++ b/runtime/sydney/src/pos/session_payout/mod.rs @@ -62,6 +62,7 @@ pub mod pallet { use pallet_balances::NegativeImbalance; use super::*; + pub use crate::pos::weights::session_payout::WeightInfo; #[pallet::pallet] #[pallet::without_storage_info] @@ -82,6 +83,9 @@ pub mod pallet { >; type TimeProvider: UnixTime; type CurrencyInfo: CurrencyInfo; + + /// The weight information of this pallet. + type WeightInfo: WeightInfo; } #[pallet::event] @@ -134,7 +138,7 @@ pub mod pallet { #[pallet::call] impl Pallet { #[pallet::call_index(0)] - #[pallet::weight(100_000)] + #[pallet::weight(::WeightInfo::change_validator_to_nominator_commission_algorithm())] pub fn change_validator_to_nominator_commission_algorithm( origin: OriginFor, algorithm: ValidatorCommissionAlgorithm, diff --git a/runtime/sydney/src/pos/weights/currency.rs b/runtime/sydney/src/pos/weights/currency.rs new file mode 100644 index 00000000..5da143ce --- /dev/null +++ b/runtime/sydney/src/pos/weights/currency.rs @@ -0,0 +1,39 @@ +#![allow(unused_parens, unused_imports, clippy::unnecessary_cast)] +use frame_support::{ + traits::Get, + weights::{constants::RocksDbWeight, Weight}, +}; +use sp_std::marker::PhantomData; + +// The weight info trait for `currency`. +pub trait WeightInfo { + fn change_inflation_percent() -> Weight; + fn change_inflation_decay() -> Weight; + fn yearly_inflation_decay() -> Weight; + fn change_treasury_commission() -> Weight; + fn change_treasury_commission_from_fee() -> Weight; + fn change_treasury_commission_from_tips() -> Weight; +} + +/// Weights for currency using the Substrate node and recommended hardware. +pub struct SubstrateWeight(PhantomData); +impl WeightInfo for SubstrateWeight { + fn change_inflation_percent() -> Weight { + Weight::from_all(100_000_u64) + } + fn change_inflation_decay() -> Weight { + Weight::from_all(100_000_u64) + } + fn yearly_inflation_decay() -> Weight { + Weight::from_all(100_000_u64) + } + fn change_treasury_commission() -> Weight { + Weight::from_all(100_000_u64) + } + fn change_treasury_commission_from_fee() -> Weight { + Weight::from_all(100_000_u64) + } + fn change_treasury_commission_from_tips() -> Weight { + Weight::from_all(100_000_u64) + } +} diff --git a/runtime/sydney/src/pos/weights/mod.rs b/runtime/sydney/src/pos/weights/mod.rs new file mode 100644 index 00000000..3f3eadfc --- /dev/null +++ b/runtime/sydney/src/pos/weights/mod.rs @@ -0,0 +1,2 @@ +pub mod currency; +pub mod session_payout; diff --git a/runtime/sydney/src/pos/weights/session_payout.rs b/runtime/sydney/src/pos/weights/session_payout.rs new file mode 100644 index 00000000..2103728b --- /dev/null +++ b/runtime/sydney/src/pos/weights/session_payout.rs @@ -0,0 +1,19 @@ +#![allow(unused_parens, unused_imports, clippy::unnecessary_cast)] +use frame_support::{ + traits::Get, + weights::{constants::RocksDbWeight, Weight}, +}; +use sp_std::marker::PhantomData; + +// The weight info trait for `session_payout`. +pub trait WeightInfo { + fn change_validator_to_nominator_commission_algorithm() -> Weight; +} + +/// Weights for `session_payout` using the Substrate node and recommended hardware. +pub struct SubstrateWeight(PhantomData); +impl WeightInfo for SubstrateWeight { + fn change_validator_to_nominator_commission_algorithm() -> Weight { + Weight::from_all(100_000_u64) + } +} From f8f427e3b2c89c49d81c84a1ea322f0bf95f8f39 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 20 Sep 2023 10:08:16 +0800 Subject: [PATCH 21/35] fixnew_native_or_wasm_executor --- node/src/command.rs | 2 +- node/src/service/brooklyn.rs | 14 +------------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/node/src/command.rs b/node/src/command.rs index ed9aed57..2554ca89 100644 --- a/node/src/command.rs +++ b/node/src/command.rs @@ -241,7 +241,7 @@ pub fn run() -> sc_cli::Result<()> { runner.sync_run(|config| { let PartialComponents { client, other, .. } = service::new_partial(&config, &cli)?; let frontier_backend = other.2; - cmd.run::<_, runtime::opaque::Block>(client, frontier_backend.into()) + cmd.run::<_, runtime::opaque::Block>(client, frontier_backend) }) } Some(Subcommand::Version) => { diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index c46c7486..e8afc3c5 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -99,12 +99,7 @@ pub fn new_partial( }) .transpose()?; - let executor = NativeElseWasmExecutor::::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - config.runtime_cache_size, - ); + let executor = sc_service::new_native_or_wasm_executor(&config); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( @@ -236,13 +231,6 @@ pub fn new_partial( } } -fn remote_keystore(_url: &str) -> Result, &'static str> { - // FIXME: here would the concrete keystore be built, - // must return a concrete type (NOT `LocalKeystore`) that - // implements `CryptoStore` and `SyncCryptoStore` - Err("Remote Keystore not supported.") -} - /// Builds a new service for a full client. pub fn new_full(mut config: Configuration, cli: &Cli) -> Result { use sc_client_api::BlockBackend; From 686f6cfc4e51f4e72f0c27ed410a2ce09a7d1be3 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 20 Sep 2023 11:13:52 +0800 Subject: [PATCH 22/35] remove unuse import --- node/src/service/brooklyn.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/node/src/service/brooklyn.rs b/node/src/service/brooklyn.rs index e8afc3c5..7c81ad8e 100644 --- a/node/src/service/brooklyn.rs +++ b/node/src/service/brooklyn.rs @@ -18,8 +18,6 @@ use sc_client_api::{ backend::{Backend, StateBackend}, AuxStore, BlockchainEvents, StorageProvider, }; -use sc_executor::NativeElseWasmExecutor; -use sc_keystore::LocalKeystore; use sc_network::NetworkService; use sc_network_sync::SyncingService; use sc_rpc::SubscriptionTaskExecutor; @@ -99,7 +97,7 @@ pub fn new_partial( }) .transpose()?; - let executor = sc_service::new_native_or_wasm_executor(&config); + let executor = sc_service::new_native_or_wasm_executor(config); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( From 906ba0447ad8563974c0be9ec95900ab7428a133 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 20 Sep 2023 19:59:42 +0800 Subject: [PATCH 23/35] Refactor redundant functions get_address_from_caller --- runtime/brooklyn/src/chain_extensions.rs | 63 +++++++++--------------- 1 file changed, 23 insertions(+), 40 deletions(-) diff --git a/runtime/brooklyn/src/chain_extensions.rs b/runtime/brooklyn/src/chain_extensions.rs index f1bf63ed..1555414d 100644 --- a/runtime/brooklyn/src/chain_extensions.rs +++ b/runtime/brooklyn/src/chain_extensions.rs @@ -9,7 +9,7 @@ use frame_support::{ tokens::Preservation, }, }; -use frame_system::RawOrigin; +use frame_system::{Config, RawOrigin}; use ibc::{applications::transfer::msgs::transfer::TYPE_URL, core::ics24_host::identifier::PortId}; use ibc_proto::ibc::applications::transfer::v1::MsgTransfer; use pallet_assets::WeightInfo; @@ -329,6 +329,25 @@ impl TryFrom for FuncId { } } +fn get_address_from_caller(call: Origin) -> Result<::AccountId, DispatchError> +where + T: pallet_contracts::Config, +{ + match call { + Origin::Signed(address) => Ok(address), + Origin::Root => { + trace!( + target: "runtime", + "root origin not supported" + ); + // TODO: expand XvmErrors with BadOrigin + return Err(DispatchError::Other( + "ChainExtension root origin not supported", + )); + } + } +} + fn query(func_id: Query, env: Environment) -> Result<(), DispatchError> where T: pallet_assets::Config + pallet_contracts::Config, @@ -401,19 +420,7 @@ where ); let input: Psp37TransferInput = env.read_as()?; - let sender = match env.ext().caller().clone() { - Origin::Signed(address) => address, - Origin::Root => { - trace!( - target: "runtime", - "root origin not supported" - ); - // TODO: expand XvmErrors with BadOrigin - return Err(DispatchError::Other( - "ChainExtension root origin not supported", - )); - } - }; + let sender = get_address_from_caller(env.ext().caller().clone())?; let result = as Mutate>::transfer( input.asset_id, @@ -454,19 +461,7 @@ where ); let input: Psp37TransferFromInput = env.read_as()?; - let spender = match env.ext().caller().clone() { - Origin::Signed(address) => address, - Origin::Root => { - trace!( - target: "runtime", - "root origin not supported" - ); - // TODO: expand XvmErrors with BadOrigin - return Err(DispatchError::Other( - "ChainExtension root origin not supported", - )); - } - }; + let spender = get_address_from_caller(env.ext().caller().clone())?; let result = as AllowanceMutate>::transfer_from( input.asset_id, @@ -507,19 +502,7 @@ where ); let input: Psp37ApproveInput = env.read_as()?; - let owner = match env.ext().caller().clone() { - Origin::Signed(address) => address, - Origin::Root => { - trace!( - target: "runtime", - "root origin not supported" - ); - // TODO: expand XvmErrors with BadOrigin - return Err(DispatchError::Other( - "ChainExtension root origin not supported", - )); - } - }; + let owner = get_address_from_caller(env.ext().caller().clone())?; if input.asset_id.is_none() { trace!( From 8e94c2dd125e2ca59070b99c52bd7102308bfd3f Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 20 Sep 2023 20:56:19 +0800 Subject: [PATCH 24/35] fix cargo clippy --- runtime/brooklyn/src/chain_extensions.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/brooklyn/src/chain_extensions.rs b/runtime/brooklyn/src/chain_extensions.rs index 1555414d..50afb99a 100644 --- a/runtime/brooklyn/src/chain_extensions.rs +++ b/runtime/brooklyn/src/chain_extensions.rs @@ -341,9 +341,9 @@ where "root origin not supported" ); // TODO: expand XvmErrors with BadOrigin - return Err(DispatchError::Other( + Err(DispatchError::Other( "ChainExtension root origin not supported", - )); + )) } } } From c7765c8e8abb90f3769a03a521292bc79976fe5b Mon Sep 17 00:00:00 2001 From: Li Smith Date: Sun, 24 Sep 2023 10:22:39 +0800 Subject: [PATCH 25/35] update chainid config (#190) --- node/src/chain_spec.rs | 4 ++-- node/src/runtime/testnet.rs | 3 +-- runtime/brooklyn/src/lib.rs | 1 - runtime/sydney/src/ethereum.rs | 7 +++---- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 967a422b..ffdba351 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -60,7 +60,7 @@ pub fn development_config() -> Result { ], // Initial PoA authorities vec![ValidatorIdentity::from_seed("Alice")], - 888888, + 8886, true, ) }, @@ -109,7 +109,7 @@ pub fn local_testnet_config() -> Result { ValidatorIdentity::from_seed("Alice"), ValidatorIdentity::from_seed("Bob"), ], - 888888, + 8886, true, ) }, diff --git a/node/src/runtime/testnet.rs b/node/src/runtime/testnet.rs index 73b85518..1db1aaa5 100644 --- a/node/src/runtime/testnet.rs +++ b/node/src/runtime/testnet.rs @@ -53,7 +53,7 @@ pub fn testnet_genesis( sudo_key: AccountId, endowed_accounts: Vec<(AccountId, u64)>, initial_authorities: Vec, - chain_id: u64, + _chain_id: u64, _nominate: bool, ) -> GenesisConfig { GenesisConfig { @@ -93,7 +93,6 @@ pub fn testnet_genesis( beefy: BeefyConfig::default(), // EVM compatibility - evm_chain_id: EVMChainIdConfig { chain_id }, evm: EVMConfig { accounts: { let mut map = BTreeMap::new(); diff --git a/runtime/brooklyn/src/lib.rs b/runtime/brooklyn/src/lib.rs index 9e476f97..3eb90290 100644 --- a/runtime/brooklyn/src/lib.rs +++ b/runtime/brooklyn/src/lib.rs @@ -514,7 +514,6 @@ construct_runtime!( // EVM pallets Ethereum: pallet_ethereum, EVM: pallet_evm, - EVMChainId: pallet_evm_chain_id, EthereumChecked: pallet_ethereum_checked, DynamicFee: pallet_dynamic_fee, BaseFee: pallet_base_fee, diff --git a/runtime/sydney/src/ethereum.rs b/runtime/sydney/src/ethereum.rs index 64ce186b..fc27644c 100644 --- a/runtime/sydney/src/ethereum.rs +++ b/runtime/sydney/src/ethereum.rs @@ -1,6 +1,6 @@ use crate::{ - prelude::*, BlockWeights, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, Xvm, - MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, + prelude::*, BlockWeights, EVMChainId, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, + Xvm, MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, }; use super::{Balances, Runtime, RuntimeEvent, Timestamp}; @@ -32,7 +32,6 @@ parameter_types! { ); pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_, _>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); - pub ChainId: u64 = 8886; /// The amount of gas per PoV size. Value is calculated as: /// /// max_gas_limit = max_tx_ref_time / WEIGHT_PER_GAS = max_pov_size * gas_limit_pov_size_ratio @@ -55,7 +54,7 @@ impl pallet_evm::Config for Runtime { type RuntimeEvent = RuntimeEvent; type PrecompilesType = GoldenGatePrecompiles; type PrecompilesValue = PrecompilesValue; - type ChainId = ChainId; + type ChainId = EVMChainId; type BlockGasLimit = BlockGasLimit; type Runner = pallet_evm::runner::stack::Runner; type OnChargeTransaction = CurrencyManager; From bcbca01f7a1a6c944c00e8cc4be0d937127650a2 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Mon, 25 Sep 2023 20:34:51 +0800 Subject: [PATCH 26/35] update examples/cross-vm-communication readme --- examples/cross-vm-communication/README.md | 8 +++----- .../images/evm-contract.png | Bin 67587 -> 168286 bytes 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/examples/cross-vm-communication/README.md b/examples/cross-vm-communication/README.md index 44d26700..970a0e0c 100644 --- a/examples/cross-vm-communication/README.md +++ b/examples/cross-vm-communication/README.md @@ -122,14 +122,12 @@ and click `At Address`. ![The image shows successfully added precompiled contract with prefilled data](images/evm-contract.png) - * context: `0x1f0700e87648170284d71700`. The value is data encoded using `parity-scale-codec`, which is derived as follows: - * `1f` is an ID of the WASM VM - * `0700e8764817` - is 100000000000 ref time (weight system v2) in the context of gas - * `0284d717` - is 100000000 proof time (weight system v2) in the context of gas - * `00` is None for the environment + * vm_id: `0x1F`. The value means call Wasm vm. * to: the address of the Flipper contract from the above. Don't forget about leading `00`. In our case, it would be `0x00b5438f6d98dc2e11c6f9686ff48h5777f4778e86debdaea812a822165985eade` * input: we should put here a method selector from ink. The selector is an index for the method in the contract. In our case, it is `0xDEADBEEF` for the flip method. You can see it in the evm-to-wasm/flipper/lib.rs:40 + * value: `0`. the amount of native token to transfer, used for payable calls. + * storage_deposit_limit: `11`. The maximum amount of storage space that can be used, in bytes. If the transaction requires more, it will fail. * Click transact and modify the gas price in the Metamask to at least 0.01 GGX (Currently, estimation of the gas price between VM is not implemented). The transaction should be successful. diff --git a/examples/cross-vm-communication/images/evm-contract.png b/examples/cross-vm-communication/images/evm-contract.png index 2aed2f753f5741b46ad95a7e9e5caf89687c23f9..d4e316793518e22f0f97633329231adea481649d 100644 GIT binary patch literal 168286 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%0D^Df%H_*MbR=xxd@TP8zxFAnri?UT zy8)R)m7LbQoQD*46%#(4hGbxDF{$VSku)-w{_v;4!MP1OTCBXOB?EbpuzQ~s>Vhj_?fY&sCgKbvV>j0Amom&r{DACJNom{~s-u6tK zN<3sflq&V&w_TWq17lY*HMzV*I<-}sq+1#5oo+qo?FeAN`q-5El-3>A3^qzOr)bL= ziXHpaODnvp*cQm=#pjr&)5bFO6vj%gY``|OcDH9Tp)DJnbX zZ`ES{h<@cV%^-P=W`@F#T{WsLAT6!_Mv-Ci6`I8)RWE;9B^s@PhN#1*P8*50m6$bU zW(mq?T+(ApA|Hf9*0Alrf0mW&9Z;G4-N09peIjwQ=8#PZ2Zr7{6W&tF&eqQG@$$aT zD9~a1(6=i_aIB)8fHdS^FhbuHsW^+o&G@`)pbGT=!L$DxK-?|DpM;7%+B#D||2yU^ z7l+m0tPtn>El0zYA_S6`0mnH15_SAX_y7vCJRt=<$tUlL<9>yP{<)5WVzMdXWB+{c z>jmL^z#LYTa57K!>@nvpXⅈ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¨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 { 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 OA7Af-Ubl(SjK2U=i3r31 literal 67587 zcmZUacQjn@7w$(F(V}-lhKT5y=)I5VB}DHndhfl9Hi96C9t6?D=z<`6i%#_3%c%GG z{_g$jIty#fI&eqX)-8I-9@i9cS?jqGu)u^+En zbZqOj8{(h}trCW>k5^J9FXsP!Bq}=e{6xEa(C9 zCn=DU(k5GTKSen;qKLjvPuEFgs#ICb$I_*R>2ShbXTC#VV)!qY(Yd*xe`goT61wRY z0)L<05@5_{vdF<9kzLNacb85y!U0$OG&n0)WogV17;gi#p}vkAvn76Pg`Xuwq1*Ij zdQ>GxWs&;JppJ*dEhgBJ@6GDjwl|(PwK=~EFS~)%G89z|f;1(1r=~VKI$AM4x|0C{ z<*}Ry4_E1Pj;eG^8;%U&kkHY;GYjFX z#sLn7I8lF*Yq6rnlW*SeIV_xMdY}1-NDxM{a!JVN{jRq2bUYmIRcX%DV;g8~ydXl) z9p9FQnGRU|3UaKdc&cDYf!XWK|A+q|#BTOEUT_0?Fg@Il$=U%F0(PMx#}8jUroabb zf|OoErN*K54RZ?)mss=xf5*mr9u5{lk2*3pjJ_R5!`q*ZP@LfFi+4hTHAO3=>m} z9;+ASZmj;B1C>O_SD9s7sK-t;4`oJo)t&1ZnOXiPTimewM6{a_pE@}z)FsMbJ|0;N z2_5~2)pA|PQE-nrhvv+1QiZ+;oLYE%q+Q?(O`3Bow>>3xGwIvg3kwUG4UX>ao|Dtl1o#A^ zz9)Oa6ZdS0qns4vAF8&%Cst%Pg3+a=Mwf3T;A_iAPFh+i5ZJ)m0fK{tfr8gR{c@=W z)=&0M$#ac=6xDm!Tbx6YrL6w6ltxLLEd8kW{?1dUJ0hHS|HdX%OuFH>a#=n*_cz*Z zrSj|&Qp*VNQPJKq z>@~u}IiI;8GAOuG+YlJlN6gR;RTh%iaMa<`-=l%LLE|sskY^_rJd`%FIRono-FaYf zY7C-iFg8su6E5-kuW=?qNHCf;BOyA91){@FYk;km&%2yuK1|Hb8|?U@FFA^idlx?|l~%h`BTk=Xm8M-pq`yq}$_h3K#` z!K@k64R40D!TzxDL*oKj=Epx~#s)=e zcRu+7=Um$+MMq%(wh@WMkJ;RmagF-*nyj&TEZCjVG0L7*sd)@e%&1PSWo~#(sk?vv zSTWywt;LqUfVl)Z27dV9YUej^%%wRw@ynDOiUNUE>#*I0q8YR-V78z%ZsQ2`MA z!`{*RFyO{sH0=d;UQ>~!xm`g;Yc?Yc7Zktxuj*K{|!CwW)NH6bv$4Tp?E7p4|P`Gw6r|BgP7 zUkwRfKHa8l8!o=@yt{CGC>qmfW#ujQ*5-dL8rR4La;-p`i;RB2XzQ8;smP zE_#`nr<|6=(P6fjB^~1jZ_qg;gNi6yIzS+f%K9Kkbhl|Rdm5+D=DL*_FH-W2^rwHL zIwhKnFUMAXyu!)v+P*qkO~}y8U{X_n5EYsxS)SoXuI8(Vd1y5q2KthFSD}Dp^ON$v z4IMb7%~{mUsF!?##8}35TSFIp4(kW@uP=u9fI}<2g_Do+9u6rfs^74p4_qrL?F6L` ztl`*oSVMuy0rr-usY$=P$>~06(?HLM>$ptbvbvH+8#8;6w1JlvsG!o)vJbnqu$Y+c zf8CP6^u`Yj%^kK`dH#*zgs{`&BonoqV@?q$qB zZ_&))DoZ==aZ=K7AR#lZ$RkXGi)iWpek(_uZ&)B`Ds$BZam9Avuf6TN8 zd+#kRjPC@FhO@|`wo;W<=#_2j^r;rc$DX~@q2cKhTv`7$`G z@6&)qgvlSWr$jQv;|tCHWrc-IX#?!+Y!&4d>!;rNqkk7?M1^_Arl+Yz_`QyAF)|?5 zFC_JR^_Y{roel%QgoGF!>mCHScufljLlqUk$@*vF%$o`?W~=FZ(Kox4HPs@GEUmtw zx!bhEwgxz1-Zaz#afe}_dE4D}rY37$P0hmewD!`7>ihM+?~W|}oFHQ-uS9T^wD88| z{;9B$hMwzbiykjx@bHxL&mhu2AbwNd;qvIWlk3}otI1<0ej1UeW&XwaF=1grNw_o{ zmEM;ef^f+^7A+rEtjNgg>l+e`_uB>Ie9Xzf$(U*}uujB$Xef{+m&FKEcMMz_`OPIk z*kSAx;K4x_m*hfYXk=75X^HT@dB;X2gdMJG14qxVc_osq&wF#$N4%6>smURbHB@!% z+|au)J5^u%gG7Me>ui}Jf7;W{9XQ0RX>Qg=%}Dm!UGy38De*8Ju_X=sv%uJ{HLkhF zTv-a;X3q8cLjyETjjdHRHOY$1r;Wn-Rz5dALWm|-k?e!)Y+x&?9WTf)bG0_7=sh+D z|7fnIiS6N1ba|)g=HZz>xDgi@m$GgV0uj4EBQBe4YCzoh`9y$WK_=;nm|Z_wgM%|> zXVpt;xy0J)t998(2FYp=)z!t7=K1K-?YZMeW(_&3-i;nv z#%xudGDi?-kbSVuy$%$FY;45xJWLy~py~C$5q)SqJYBkPDypw9th4a9A4IGhe9qe4 z*~z19Dk*UebWAW42y?fvC@e0;={;`AT2STsHokq0iAjSm$D9d7TE{)tg4fCr;yz8r z_bV=q`Ug`}Q%+opel*O42MCW{z8`$ z&DNixN!#O=HSTWiJh;j7zuIp9sYnEZwwDn?LhI_=Q@#y@mZ!@j%i362JI{KY=VLcH zvqb|KaZuZj?-oQdiX3MgU*l?M8*N@9Z*KyELStfZz|=Z^H#fQ9d5RF;X>Omp+;&i= z53d07j1tE|;505gOTb?LXS;rR;h&yM zh;^C$g$sv6JIBmHOOjOyIAr*kKfYLfdoWH(!4OBBo9lb$dV!4~RkX186~%16Q)1#Y z)K>_BF7ZwKHBR$vTtxd5bP$NSMn>-SXGr>=jr)#KQ--$ICK8;^5=cxQV$6(3&lgKJ zFDX<}5JM?`-Gw79rNA{*KM?gKh0FRl>@^`KCcWV2CSMfK#ylXw$~V2SC$ zogLc`zL_(2K+uBpqYIWK4D)n-sw4wVcgD4qeH;7MOuOfmh!%6Q09|a3IN=>S$j!}t zg`X~=clzDC_o*@_x%}}~Jn2>{+5Q)q!{xl0HF=$g^|;=Dz6eCQy*;ggfh*@m-Y5&> zQue)Q{^;jH%Z3I|ulQ+dTy}eQ5a_UH<9?A&Mh)jh(YVdheZWI|P`B;qHcJd+S!wR5 zv8%tC??Bn2?A|4kZ<^2N=4OaQFYEW|NP;vWI!{n3eO4>E%&3OJz6(MiUQf?J3_Co9 zOGk}FJ2jO$Gheem_l zEw0vh%FN)35+mI1EKC(w!BHtLmCSmZYB5tj$gYF!7XB=%@+nfXQL_^zXz!(*Kqfm` z*<{4()yYYJg<=}ck7zGOy4dHOG~YFc5>}n)8>_{iK}vMko`ihmqp;nzz4W+Dlp^i= zA&&BpXwE9RXr76n>sY8MI22VF=LoJPCWC~Zy zckyjJ%;au1Btah)h!7VYCp^UGBr5M`TZ5Q~#g_tk1L+V5(8HnKGGv`jtSkFsV`8XAmAgfgSHHB%Fs#1L;n{6nu6eu*tSOxnU^rG|^q zW9~2fi)6T5#=LscYPFx)F+)*k+dv?G{wNY0j5qWQNTW!id;j{50IQK;tC_JqQ%@0tJLg(cEPC zyF;}^>DRw*#@gsICg~n};5)=cVds%KYF@yy^l`vVD~c*4SU7gTOeAc0KC$ z-A@?PqY8)8-?Zyb!&Z_x3^z<+g=Old1BA+s1_2*iWMrOfR z_=lRg-bzEYno!|DrXUGC4CUs0E_Hcyrf;L)tn#tZ=*)T3L~h6xl|#akV1??@>=Kpn z*Kn>UgRl&fWz*D6g3c9Vu&TDv()3b8?N8O;q`Gsn`VQJ9I{HQit80@LDAyt@96Q$$ z*AYFK?!oeSVLQ$7j4vtn!(3winYd-Z-@^;O+ZAc54PoM>qGlj5s5@;FOCE|7JmGOpj@41arNF%=}*d88E(!CC&2{3-U=OToIj{Ku8OZv z4($j+QCwaLl*cVhS<_~YT~BCxNYfCY`%b{%bK9foXiD_v?FIlf^;kTU(yU1e9eePh5i!fC}1(f$Iv1TeOA5L?@EL7 z1&EI47WZeH1S7i)^|XP#eSM3CnFPoFyCc{M$UJe>4c{Bi%<^9hyzE8=RnO=%7#UN1 zE6dZmh_*z1#7Ha>DJI)wkV2r)LM2wlRUL)n>EX<6ATk(3mzls9#Cfme5d=C3Pvv)>hr zIoyvCg0|*a-j8>zTf7e+FxW1cnOo?$sKLyys%m5>6NsV-`jP)x zwR3cIw6-OY;UkqEjGn>PpqVxfvIZD4Y4 z`c<^4loVR;DWEW{=l^I8X>LOk^n>?>BQY$D&{#7H2D>AF|%%Oue+ zdueH%CxOZD@XRpts!DfuB6@nRdm;+MW!yhisK1O~70lT1&bG+iktdYaa-UpW%vR5D zHVWmYilc~l5|TI=Ku#sNM~h8W!BXBEls$=G)2DBMr`Ob4?{T^7Sd+e&)J;ZDNuAOy zRLjXAM4&V-o4g%H6uhG~8?qzutaV5584p7sc=>eKO)$UDyh;a%JB_29rTn$r-8m4s zLzN33u=PKJ<_AJo(&najYiUtaSwkiSwiYHamm?3a z7212ZYobb3s!7s)F@&Gc8+!W!jxCk($MUp&gb>QpW3tR%OX?#09o4wjZ!N{k&EB^q zghkVbm70p08`M=gQp6UM*Ham#YiamH#Pt8^eNU}e zJkZ`r1%Xm6ikXYO=&mmv7h5MsC!-}JNNZ)(KCPnnJRG#$`@1VCL5X0$h+UlA(nhiU zFp^6~|6{cCE$bYf!f?0ibvIgMD%T8rz z`k+rJN^VS(R^{|=t_7NI1$s6R+6oySj{Rf&7@5YEi6=-sWc@j{fWb)=6%;CJ5;3}p z{_?O4LLnQtWhtgfJrs!C>Z2a@Luudl@U^#R$8Y&dA(2QTLlxI^u(;TCEeOwx>FzwM z*>>Xp{_$oqB?Xv|rlzLRQMF)V;6Qm>9V_cN;#(@LU1>moi5hslO8%QP!c8x~6J*Xp0GBYzv%!y<=H(UjRP$EpOv2OUL_%O0LNpOIb0W=(ZgqfY+ zM~i_Q1eYo~t?c;3ydq&3kn0>?zEpOFbxvtd>*?wZlEwDnUgA}^*uMr|3tNmD-F&YN% zwr$~c9<;6NzaQ5g35LKBb3#vDPl1msS?u~|;CU=^rg0(5KzZsC2A|kH_rJS~8&pD< zz{R}?M0TeELA65zqI3Ov*@|9SMQPndfM)qX;qvP0=cu{)+r8WQFDL8*RCJa1dW2za ztZ{i3KuY&Mb#U_ps$^C3-g=9FQ=wShx<<-OBiYgM0qhsF>J>iVzCKGD+npDM0us*j zvas3iuPaNT8wS*ZY?Wd2F&o@2AS!VT%qec#xoo?+)Z}4;sk5fIyyM@c-oc8*~ib-t^zoX}YDWZK$(SY~$r`EYYY>>FR8TOHA!j{S92F&>{- z;vwWulHAT8a^)ATC_uQ3{F|0rk?kPQ0QxQXO!xz-0&5IPj-!Kz1Mm@VscF?@75VA= zken0v&jlfNwbgatq#~HY=+tQ$$zVhxQ>YG;9bT&zn7|BL#aj7M(}|p^6eGZp3Ss%l z`ikB1=Xv|#DLW^JGYyo{jKYIZRK6ITT%=o5Y%zfR8-Wt=Pjy#XM-ZwSSh)1pJGXk zCu?X|7}(o7Txe>AOXd2tex2UUB2_M%WIYXk(lm>1V((s;TUC``liyf4W3U}hBMpIl z|Nb3H5eMw!=jZ3eH`~%UriFc0$rPYFv^!wZjSzw!7R@?r3VGkmtSNjL0`mb`U~bVK zx63kTSTKu}y`25XxG`f#hfS8Spcn1cx>o=&U7o(1((Ident_ySBeQDR^t5~Hgv{rx)qI^3_r7|OzlL-XKg z*<-Nn;9#@86_$CthAr8*?WX&E%Ctmh`xrtDgTXg8H>fhG&V25El~dDZ(dMzF4($Dz zs2$(7v$d(HtR#q(?1Mo35ex5@{>rO;atst(zRaor%To7&j|#Oi5|lx_lYYE&379n^ znrId%%f~HpnHUflYii7lB5#T!=3VgM;Ghn)DBe-V6!Z4};Wk0+{N%>>Mbdilxui4)zjFT!5xeotdnXBlBGCS2McA-r>H8_t{m? zAhl0uZbgN1X8|A@s1X9Wly^2gEp>TmiLBoX7!jL^y}hMNKj(Nbm6!w}@6^`^m^Bs`4+?_;4{X>c|>-txc%b?3=PjdDPFmOKrQZ(R$&nVCY*mqTTyfS7hb}@ zf8TF)m?4eUt;3nIX6#U$5(mxOuKx|JRE-`iI@HYAC3(ukMi95t)a-X@JoE%_V`FELs6-qR9b@jja@TL#YaT-k!*$)Kzv)p8R7dvWhIa;aS+G#_Pp6_Si|=stgQ?kG&?r zg{DAosw|S3=Pp<_Sd^dZHG_L=RC3kxAVBIKXag*v?W3RC&Gj8S!CiO}<$J}ps#24a z%Cq>@lQuC-e+v{bH>X^Kv8^*ncN?evm7_mDes@UhSx-||3uiAYc|r5Qzw)ZQ*zi}6 z5?^fne)qK4n3))-^Xt>KP(jyeVnLp%mDJUe&!@mI4Y0MP_!o8 zf+LZMrna(EI*PwM{*R&MP1-=Xl!+!=KXGigvei2Xx!2DeerLBLmYr5b!7SxMWzD!% z{@&_QYfS+(0z6!IqkOusuuOUIR^t9=a125VuM2Q) zV(@&qlsEV!X}f75O7g^*UpVRTNS)_ZCA~;+VA+6nSK*K=qruC~LeF(2&;ESk$`4|1 z&+V60?voz$YTR}VFc zIU*t`qCFuxhy^D}-pk&dJ8keEKLb`ahioSUMZ9}$X+WXyW~pPP-)V7wkiOH2P0aeV zs6pt|IXv~Tpyegs`wD}6ZRB`sou-mRPiC3j>0Q4(H!go%7K ziGMwX=g-Wkm-IqCfJ-jq8j=*KqDBT?ct{n!J8U2Y}A#~!>5 z1{z7rqpp*EWJ>B2PwVDA_QV5xWP9SjE*5m_0hLaE?D=EgC6_1HZaC^>lePZ$0& zwm<+p7;z()tSq(6NfDgU6ww;2Rx{(W*iny^bg=g}=|wPLcY1p->fQo3en7|)D*`u? zqrl+bdFLjhFZVoN#IJ&AsO6bpL^6OxPV?eBFQUt^gX?;79qAb#_~ztpfObiD;0^ks zCHfcTh7RL3evYjrmEvUisuW0{HFSF7jVcK#&b2$#V8w+X!JrGIV~|0-^pZGCw$<_U zXxx09@am}yV6cUNQQ8OA$4>smF6^^^3F@z8iJ5$JuABy>qoz} z)Ck|DZh|~o!>`!8PIS@(2hhiVJN9)7ADjho@jTP~mdzgYQHMB%Rk-#Tc1Q3AVf3NRYInHRp3;}be zi#dmYUzX}~WKCG0M4;e;jG>uXqzpQgU+be)>HTPCyYS{FUxsGURQE$@FaMl?i|FE5_)PLUVrq zP;~yRfU7+8$gl8CcU>jI$e{K=As{VuZ^8k5Jel+$($caZ@hsa`!BEC78#PX4fl*pp zZu2KHPX;BmUcT6A(!s?b*1>K6w2^;;zobPP?*KcQhvgm|yfzZkXeK_-{&qxx{$$4s z1bTzN^QSkiTiN4_F4y@h)IAFr`{cIdr}sfP0vfZY{o2##S%*w8Mp$*3)z|zof-bHv z;1L}X8UEN|mUqe!Y*VMJ{^cXmPbkYLjQ1hmYG31AAHd*{PSHe83)%b}Rm;X#&rZlE zoDcXB%UKP`B)bGYUfws`ZcRXn?$Y>O{#8s~x2cVTeGf!j-8@(I$icyxrr2B@5cAUi z6g?WAPW&Xe=NIRx3Weo^<-{|~fHi`PDFqm$j7iwnX#djDWCG&AQK?g85hnEwo;XNh zkT|>`q9;NjVN;(x7_z^=-)(k0em*rZVq znj~Q98ZON)0*1lHwQR0xBBalVpT8SA(vU>b;X_GT;U`P84>Co(~ZfHmQsh@E6 z-?;@+8MVG3lh1Se6(waB6cJ`K@{oU*NRT88V*6cOIuC$LfZiH1WdrnhiSEv@yE3R8**_Ov95m_#^4jYLaNTTe|*f>2sC=kn$@ zS{hZZhNNp}cUNSRPEEK1#h3yJOv}oIdvnO>@Y$0~$`At$heFtqfXOeSrPVtFiC(?Z zWTnJK_s*6p|5i~^@%?0Pf3HZrWc5p_(AIc^E|81k$v(#i4L?2hnr~RE^=D%vn- zpm_mFbvI8-=Z`3Hol11>Qz`auU^)i#lKyh4|z4kiI~#~4cE`K$Q`1`C+^D9eu#uKXEb z=As0GY|?#sao2NxURU>9BFy4FG!RaD@e% z@_q3*UK}o97%}{ce|n5nR9uvwBrhY=y?^PrdDE+9oh!wJL@Qu|)?8=$UR-LEZE}6v?3`3nGLX_9 z2K_n8PyEqm*BEdbs-WUtrDIHCX<>u!@4$`CBO)j|I=Uc7SkS%Ub-S!wf?YhB{^M4D z?L&7F4%jBd|K4+;kWRC70K99iFBsFoD_ukP?X3YoQ*E3xM48Oy)SVvi02-IBlS0 zfCN3aH8SLA-aYmG`h=teV zul1-i0j+ZO*Lg>7hdzgpm{7v%&l$T`_Z!~95tSU_nZ?-(C$0G={~JI^OjopYH9P&4 zrpVrQZ78?9c(W|xX|aAgKR@;lK5Cuu)7jt44U(eF$-&mC^`_Q+`NsDKkZnrpTv9Eb zEqM!PztXPc!M$5v^luwJbU`@IH*pJ!W(-=^^EP0ISRY!`(@@1oGkUgOv!)FK1Ojft zNBtI${UL25z-pN=%44}dCJ0nyCcaXmczK=rO-AeBWmW~ESSUq-iRg)W%*(U^jbY{% zJ;Pe{`dPcK{4RT1d%H%z%Q-|I7>tG*&~F_oO0ZA6&*!*gPGM>9?(Xhgr^yPKc8jfx zsrBz-yRRc3t`hXgDvUuO?Fz$fdKyA>6K9h?#5#b@;53xAhpr$;rscn)T-F8uvoN-D>L^3gLZTY!SLX zL-G-(H03p<@?V+ckP!OffCiz076l3bh>Yrbw`?_c&4v5+m)Wrn$>ehwW7k&TAAbk3 z*g;EAoRF{Mqf*bcxpDR0XRPwao1EoqGtUb7I@9zY9&7Hpxs~V$6C}`w`hD1?s?cw< zubTC2rq)oQUvqh1hZEh}=O3EykCxA-m!0KZUsdlWxg?-+{d(M)Mg>9yOj_W@v0T0x z(5x^GzP68WgTulazk`o0D^c_(g+fI^0O&BF@@9Im`Pr8 z*;|4nf0RYfGDQs#@QTOZKzVoYA~@Tw#`{ljB24;HH~(h>7X(g{ zKMFaT+02=ooCX-3;cgsvl+8EX#h5Qdfe4}LeAH7I$tUJ@IAlA%+ZrCMOeQ8 zkdeHE<6E^9Y^)bXrbZpAbhAahn|}UafvNMPlgJ#Cx82G}nXT4)X6Ais4ZimieKS$@z02urP>BpEP zZuw7|F==>R^sak&cV{;@(M2PLXo4@&=pgA?gbAIP4;1(gV+z*_TwN^rKHN>!Pj%$x z_7c$dJx#hEs!-0}Y->Cnte=i`1F)N&h54Pm9b9zO$TO@=^agrWk~aYse&%*iy4VHe zjxv-;hPMJRv{Tnxf%gnu@488Y-CUbYJ{mpNEY3+jEDy;3|CA_R^Qy_U9AUME;>GFL2(bc?R5`8Lv_r-qSz&|uM&YwlIK+mF0!yxf{|g6G z*UMm|S16z#`wQ7QnUzjjAB|`|8}$JP$>QvqeAsBu?vM~&jWvagoSYV4&fY#Q!~12- z&cXgm5}Y|bIV$dUg>E<`I?Esn+VwS;U_XWItz#hl@Ug0z2)!|kWKL*~QltjaQd3>s zS#9UIWO4~Eltl(YkCs)ol7*T-O)-w!ySlovQN_vR!b5tN4u%|)O`bMLX`Yv}XVXIfsu}qE-9SR{l9fR&W{lzf+tG^^}Tm7iff^&w2 zUVV87P@p{T%cpdpWVq<6U86gI#{`7VF?kat&vEj=MnJIE*ZeJ}zMdDiOW6;Xa4)h2 zLtHdxmH%62jzhH|hAt!{)6PSWg+fmvWU|HFY*9eExl5-(N8NVkC~1wTZlIX;Bm$UmUG!tV&m8cBUbhsmjgmaA=Ui z3O^j_j9v9w0~5u`0$_c>wJX3&KYR|*tkMD zb5McMoHuh}ZXveU^!G4K3eBfVllA2!Kn5rj;$nto2a~fVuksh9cIJee=Boafwfk0S zB4!G&>6{sxHHD`4ue(5r7G@SjU1{+^PK^tIk@<3t=95CwBsSL1Fo}Fy701d!ho$+y zVO@%SZabJh4K(;Mc>om{GfKbCh;16^$eE=ql%hb z%bF{2__eE;>Ae62nVe}&)XU&ey z2Ahmcj7QSw9Z=J3(^9B?=F1sw{Tz^?*j$S%tZ|^tj0ysB4FI1n9)Ay1fG9HOh6la;6CYc)u)wxB~*KV5?+VB>=To?*XjK+qVP1|5|gAm=D-lSTMP9 z^#0S+)1x(@-P{%k0gI1^b*;=TsW2ypfB|buTTA==>|D6{;po?&#-B1yJgeeZU33F6 zY7|ICX*CFTh{*m?wY_i1 zA-S($eEZBts!?C``0f=64g@ylBU?F53~{S2d5zty%9?7dDI8q(rvIrfa3i`J8)-s` z28oO^KGDc7gJT}2zP$kuD3KP9GgxVAYfra09v&PXzV-o%YZOXV$v(B|u*~jz(3Xb= z)4&Vp?tahAhMv$=`XRw3Y7>7` zjE9~kd0_s!w@0MKurl90kEQh_nKP<$>#vTdV}h<5tdjzBXIa6$S|!K9 z#wM2~OVFUtY1H%tZf}aBg^`(0Hm+>$TYx#s;BHrtjPlgO9wh*8BTA=&CM|e0kjp3v9>*Cw zp7b^mRBi`LyO#<(7%S${VBp@!$F~YPw0%K2ej1}8$_^@h8}W~6W}>s~@LBT?U9if! z3qiiV8c8sOosI3j@&Wm9*Y$7}2_Qv4{&sUWC-}R21mV`%%h-mZ#k=+$jY1qxph7#F zafc8n=L5F(M<46q?%_VL^{R{hZJ|1VLTRg9Mq@IrxeLScmnYqslYVL`pyk}J4>QR(+LcSP*PIb1O6>bvFEbjDewLOe$5TD5R9ja4*H%o7 z&$o}Zesr4(VAJc^PeoG`197{qT7WYR!PRYt_}7xgnSGDL!^3I5i8;IaO08o|g*Z@9 zcsK?HCpUk)tKSE`-FiTl7S)6-Maq_HwJGZTL&!Zz%xbWSwAXN3fd zUKC@W=m#D|kBx+_@yAbXtD2McgYYuYp`S^f%AApcVMG{T06RN*#%*;YPR##UhQUaj zi3GGot9VTnUd^r+t37DACm8D9U(^LCu;pH`z2jTMD|qrT;PG7eOb?6zCK21OsIqk&TKYZgOB3TyzW6%&fg zQ)o8i92`0HKMJt7-|w8i>!Q~AYMCb_hM{R1zsRMlc~*`rbCv|tz?-z+v9T0PSbmNdCC0* z2p^DF$q9%4zA9BapA;g)0n*8R?S?X(@YnbY6@WgT7zDtt!n*b8wmZE3gguILyz`IQ z5{u2_>-yIuFd`dSF&=%Q)ZXuG>C~yNkEATML=-3@6mgnNenI5)7Me;x~(;4@dB!7hD@tI4{oSD z>}=*dY@7}U;5|%COl?^k02L8^xM@AbOCp>yB)` zo*SR0#tCl)@cYH`@|}#Gm1h(Lk+HhwwWIKVlubs4ICy7;Xs@j>XaeUj&2utFISmM327yogKT=?mTZ=_bCP_5co3KE^c6s zlu=m+OX@m~Sk+J#$T&FI0jCwnUOtIjzWtEkNEo2VRG#|RYVCa-42bGa>aenL2BK~% zrJ|UanDKCymxTLvshh~zSt_Py3sHGG@88?-Wa^|UF~jZB*-3CtX6un>)&fcDY$S(E zEqr2pKoQJMhaCMoEp3LuB289?E;TdP@o4S%De6dd@zS8(yfhAh;i}IeU`;J;AZH^+ zADv$ElpGKp^7KAjTPdZdL@bU@zRI~r)2aVxYR-fkdh;Zr*Y_F|cEUuu38fPwLbBcp zJ=rHPDeO}HeFp6B-%jrZ6y2Jbc1U1w03`+#t<|clGss8wOh3W*Y-EwL5r9Zc5=%FK zR#%m-P*nP%)c58Fs9sr@*|L6zt!uyxGPbZ0F#3&HI5@A1b7Jwcbi|wI^u(7p~MTp6GFQpat6XT-0AZv1k z7V_>|{Apz-C#L9zT)amML8k2q6@iHQ31ZJ@jP4iThyig7Nnf<8JNrns)P;Gonr`Xc03OMl`~T%M;zs zG`+4QGC*uyXK?f5qKk34n56WG--L@Q-sWJd}mBPa}aO_fYLYclTnQjupmOn zo>z~HPabGOy)yw?w<0+@+s7h>rJI7x8|6>6RV_0I8i(TFPG~or?eI?dV1-Lnc$Qvl0 z`WVyVQYeX^E_sSBo8sMqt8{sBZu$Cs+frbMEkML5iu%`AH&-{|hW2oPjY7b-yF1@` zcduu!=VNCkQ@TF5d%N41*c>3)WYqBD@NDtUnm4|>t%-#l-|~wFSj_Kx?7B70HZ^6p z8iLyY-R6O@-<7$$*-2MU4=XBRp#dgga`alLFR=Gg)6$k#l#|JDQw3|QII755y%-#^ zjBRxM+6I*0yJKJ?%|KUo_g=z4MV!92Q7_lW8N2MC+!C+7euL=m!bSH2F3G z?uE(kv~dAvGt_0{KmgVW)jd7h`aQX;UH`*Cn?$1d^oD}7Qp6AGZze|1VJ)k5uxYM>f8j7T}Amq!x2O-(3@8VfC)ypEQa!Bo*v zdDdJMFB}%H_D+X^zMi}Ig$?XeAq15P(dSV;?VJS;Qq`-Z;Uwmh&+|}EW zcF$Y`&_~Y5A?MZI;yi4bM>MkGi^|eXZ z$)5@6EC-N8QXV1q@o#!_0_G>?!*GCNV?e05S+{DlJ+#)=r1XxFcsQyl9%jx_nzgGZ z5WD_SRh0yeii>jxgiC(V&HjdXXXbPqC=w6uVLbPh;~-y1&iD|xrQwFij# zxAXk}dNsC}G2`FyKLKZ-r~5;XnfdFTKoH=oiSbw^1U^hpe@1ybk1QX!fqp~x+DF0P zITdnMKBWcA-~X%8{Ta9S_t-g5$`Ydot$Uea8X4&s8R|+Y6m(L~S&VLAYlroih`Bwu z$4T-$BpwzomQRIY+=?l=Qr(ocktW{up%xcZ=bTNK`p3JDjD8vanVf678frjVW^Y*; zNL#M==J*Xd3vulKG*6W)0wg103BL+r7mpsP5C*e_gqAdXutDWK=8c)}k(b)yX z8`VnoACx!|V`U&g=_3=h!JIk}ZC9yiQDT7b=p%q#@X9aCkA>t8U6=(`oXGk ze6TGy4F!=G#qU^0ak3&A{6vh{Gf-P;8q7Oq7wRR1_o&lkewc7&FURz#(NLZ_c;_Go z3sBaCJ0E2&Pdz+AnU6hnVEwR9V|4FGI45BDh$6c*EsQY+q<^`s~G%D7C7jJ~M!z`N-$q&3lOm=f|d{ zE=J@m!iHgX^ffGwZUu~`?^x-d^eG4=rc{EqpZ$yCVhfK3&tEM9Srz*1J$Y4cg`BS$ z9*aUG9%e2#eh>wMPq{)hO2Z}@y5^diqwPMF3TMGF^%PfoOAX69(~9c_C?(;Ay&vvX z9&wO$JGSQ}iIsd$&f{}N?e}qD?K36)-n~JKYS4mtp)ZmXSn{#>n?U0#9B!ZF>wBf6 zNy29Xq0yOd$<-k?vvbX1d=#zVfjK7K!4@5iuj_~`qiVNtWaB~K2o(l7YLD;Ey&AGrui zNEmbj=JIJhvA4$vlJjV}$4bit9xy}OP7h-k4Ne!RwpurdRlj^aTw*yYo0pVU_(?#P zJsEB$SZV!p1rz^ck}J&{l^ua}qK852xt+dfj7dh)8(u-g=!o`{A@asCTgjnmGo@L-^MH2EwfL(=H{pf{n-FE8Wc zJ((Lz9j*K724QMR9meO=cbA?`cDuu=M!6v_!#HvH8DvbU2pVS~2_w?9v*x$0X)9^7H&Bhl;gu*Y7hy=P3 zyZTwbz5MjcA3fl3v&4UDyto#YE)dS|7Ssu)56P`7A26u{lAtSJ>1h=%aKMHK2V|QD zq900z5QO1B_m`YC3!7Y7h)DFy8@@2jph#*~9`tx|b2b0@#c0|p5N|HRP>u%Ii~N<} zk4BRZm2nQV*R%~aAi>Lgb$^JHoUBkPPlIfTSM#HhcGOcAKOXH{b#rrnF7?h96|-bG zESuMqk1-Q7ArF{SlALA2d2xMV^7-)Td(d+!pGTd0jCP5}v{CH%kr`C1+*UV}`}_ON zXktQ9j@w_JgWx5veK=uuYGx*7-j}mWR}Hf892f;m1?my z-7MVYmRKTsn}q%IUhb?G|MAzvX{oy!;S4N6DZV! z{2HWzT$@r1a`>p)8KNTq*7;MfCDjN6hWjPGGbLXiHt#m-^rR zN(aS3^EvCa9!>??`A34fzF(ey7JmapH;>3*)@ivhguEf}C|Q}+_vACU6ZPG@PtohV z>g$Y0+BW=msX|oQ4A|yQcTNCmiR)&qVg7whHRZ zR*hv-k|m?l&d!KO^GAhOi2wjUIonuHh!)4tue(X@W<4j)DH+yEyH=rIueb7^i6WslPEoKAf{h za|RQdD;!yPP_fEikYjPmP{!eWO*EZjIU-2LHx1WuvNvNnqW4;Yn z+lnlpk%70{NEBpi!CdM7U7MNs;|Eb8q+oAmv2wPF&TnJRFXJ{}NrjNElYhp zPm&)?LL{}<_>?MQp-X%KxMr_E6#FcLox?MwAqM4xbqV)d_bO3Hs+u&7VfEmjkoO)4 zQO!b>+Ua!(65)v%8R_Yy88ivNUyR?ixu2UqEj^`(m&B|r5C1KCkm|lFRVe7KS!AI~ ziK7lh4+4%djjT_IJ2c*^b-{=9a&M|mt5{>)Rm!#2*H(212$JNU zicwciOw5c4y%rEiWE@5VKc|0JE>{Q#Rl5n)*q;@0SDMhJrDd&@l+&{l7Q$#ky=t|R z6~2m^{F<_wN1`LNp=#>tt~=hOap}}Qjj4Z)jqwP)jD~_HEdC~bXJ==euF&8PAS%i2 zc%HqELZM=`2yyXod0+FG*j8y`OTB-YVU@nSwbRvr+ecD4@Cr0Rebp+PSWcU~cp9I4 zd8j>qA{kMsE8PzX!3#_vyncvI^fD-esf{jIgE85r@Z2m8lBLvOu|t}@+$+@!o|0OL zev89S^$fWf)K4Twsd&J!h?_JH7*=I``V_gl^E_08dA#%x*xiK*^$2xXteVt}>$or;8%6nOf5{$_lVJ}!Wm+d84Szkx!rVx@S_ zdjpch@lT^jj|CYOl_jm6nwpx8&s455{;Av9r@^Am)q!W>VB`Hr#C2*&Rek9bB0}T8 zq6DfmhLsU{G6=)K@fgsC8m5-3R>pXEBpp|F`nA%BZx~WGR%&HXWS#z=aH14{6}-Vg zS2SKlzsDw47V{Jh%WVvjsyJQ0cxGqD#{T?zgW?efl;OatOI=;PB+cV6wI=uJl)>$< zD@jQQ2M1O*bWC`{fP(>&t^qakWVt$zo2k4d6HxH?Xn7pOmkqq*7~*rR?5&@o=YDNf zAl%C9%{UdH&1NAj<%fi*74!VnQPZ?RmjcU0s7uB``BJ+IiGEWHDWD zdX?Va-w^~@I`67xA17lK@)t4b#c#N4waQ}N(x7n+hbHa-r7@kPHIMoRVH3H0y*68@{?Sfl30XQLda&CwvM)Z>4n9_si5R_rSpw3@0C<*k=lHI{iRhywho*yI6YU zA?vLBXaCnXo<<%2HlmYRb2aaHoV&NMZ&a}aLjp^}HiDw|RA7y=4Brt+6 zc(-jHZ#?dWQ2r{m7T{)aU9T_z4>_EoE7$lZ+_(>kj#%a%t7$wD}obpE7ZdS~sOvkcI1%g}Wm2}y86p4aJ?YcNxE!8ndJAFJ7p zajlWSsV5xXF+@JFU77_xiwWo@GAqC&!yk(@o{Z(nOr{0qhM%xxL0HhoouFV)~Q>(W@6Fb+>Va5A|j>+>euv; zrEaX8i3rrg5fk25x<9K#DzyQ}{%Z3t!lFhN8fu+|vN|dt+!-sUY4(Fn^SsE56`>V_ zx{Y<$@z*~X{}-ki&>bqy=9MrR~zFZhBEoDx185oL&3OBDpJeF!a3+LM$gGd)Gzapg*j{j)SS<8w4ET+di9kp%K&qKdPe#rWPtJ0;GhD+@NO~}364Oy0lBNIt1X)?uic}`HgK763WPA? z^!hp~DhlK+=|$SfsX&)liqd5D9ZyC@<}t?fJQ4PghMQ4C_Z57MyX`E-KBGfeAENQf z`aPC}+tm47*-uwBs?hZ@lBBE(ObOcBc2hDcqUv7NnXj4)dhQ)x_yI%FRX0$fxDHQO zVH_JBYb|ZHyMpa3FE2Z`UuX^W$Un8!+WS){L0V5U36YPYDj`#h&i5u%^cTTTp?j9z zQMrZ{CO*E-@kOH)KAJob69WKV**I_+3#P8Et+jD)4h{|$Y7r)Z*tqM4s$}pOf!(vZ zI*k=<_tkOb*E#_uU?{y2sqBUtwqv#v7sTVHEt~(s(@&dkgrUn_2Xx<-OgL=|frXB*K?R5F6G{7nG^*p|7#sf63C~=dnx@ zW}@5ac6!OjYg4Cdx@?l4_zjXP!?)zb2e#}du8)TI6VlV8Cs-AflwfhNNj3YfF1*wv zbf`M+#s)@yka<&hvrlv$JTVb`7t~6qsPNH)tE$!(7ZLxI16iJBTUl!Tn*2MjmT*WZvdUinc-~KTph(y#!i2#8TN*^DY50baZB7zhtd@JK@~=ci zwVm#iaJln#Ppx>`isp3AhS#z8doswqpbLcsi>N)n(`R-M&_HaSaY4(e^gyf@eYg+) z>t0Zy#Jz6Mjc!t*hiGq%DIecE$dc~3r~WUJ38266OI7;Xq5kjPKE4m|At4Uu!~grr z|IQQhR=W4xEuR(r0HI2kO95U15%>L2s3OV-kWjM0jrX4@WSFX3U`mbfNCrtE@v#2G z<)5&qLwR%!taVnSM_uBixL*ss-b8dJ{P)6Nyt((h;J1}_vi90kDmM-R zfoTzAY5f{nZ?%zhVD5SgdIg2kWAK)@UVQlYdE{?D^Y7Iu;GY?li0@3qqNr+`kC(k( zp%*CTSIJB7ME(!+XMLcC2xJ9l_UL|Xt#08_?A3W96YTFAzxmlSC4Nw=Mb}0 z`p&rD4o0OEHLGxb{P?Lrqtxk^*Kl;cN;QHSVuS^a+|%xSnEWpqJwew>N+KpI@6OVR z&YM}TaMkR+x@wk%XF9b6cYJv9{6Ow56&9xq`c?92yIed>*kg@LC-oV{{=JYCqWf`L z5jD7UvaonTq;}T#et9UmxVWV+ix|}W>DCFx196!SPMf;RGPL0AJ?$45C;xuqHM&sZ zE{XbAt{-%#-bivP=vC{XF1K^%Wa#u$?1xJPPo82+YOk+`H^&&cPjRFr8;A(XNaY%T zDx4PkA>Wj*zQHYTfeG>bcPS@ys5pj1Y)?8L|01Pl+)ynQLogdwlrC_N_##S(BURQt zc*!mQ#?SKQMQbRXY@IF}M4XTOMeG6_3Ryn48 zP8jtKUCeKs-#_LaMdLj{5a7}|sr$6C4#;i^LqG$O=g(E~OqyIqwOo~-+0>!$QY0gd zNz$ohvk8o}#o$TQ5awh!@OFNKBS9O=2h(Qmc|iMEE7y4CbhW6W`8joW6}cpkchfw1 z?`>#Ia-f+8c`U@CE03y`D>UiBkMK08qd0iHtSk7L9C8n&kd|n?hJH`6EyhciNb*5* z_z|(qO@OGRYVZd+ZT5zDOAqPx$tzVj2@48;-y+<* ze%7Mzkio{!%{|V&v9q~rYiAc1_iA#7-@4umPSeutW4o1(7Q{hiw&HDAIZ@8Y9^23j z@Lz1400ph7qN2U=x?<@6XaOkWQ;Rmt2T}?P=+YIrn3!bQC(gfr&d<#?cNyij3|9eL z`#$x4GS-aoL2~v?U!Cnh`%SqtR`B_FrO`RkNQ4SIjD=<3_9W+yor`PnaJAxn@6V#R zzaiYx;D6nhKy2uT;(7^8``ZtGBIpwn8c!>k z7keh+gqBf*DPMWs=L{q54-|(*~!To zVy5Wky}6r)+4`vEMzR4?-T%VyPjm+-WGXczy@;LxA$r%d_oO@}IyyPrDJ%x6?NDrFjuh?`uwLPGT8sja;LkMouN{hxn6J$ml8?KS=gdFLx9 zr}kcKH^VWYZo*7K@YOXI`oH5N>^tu6#S%9c&g{JCdCZ+(MOhgy7uWlf%~2J`V_?~T z`*#F|{SY-Ts$pQj0Ab{2DR(nh; zjs!j~zm#+qR?7KdH9Sl3wRTeKf@G*%q08DzgbrUPJ2<;PeAlLNTJ~)_Kju-)5%#Pq ztP^Ho$)b+TT^w0vKw^kLFBI=!{1h+BU+sxJjg1`xYvNUdzM-b>Tez8lfx7E}c{$6)IH>oI+Z5aN;K ziDa?VpEf&x0PjG<=(=}$5!*o(WxO^9EhKp4OW@K0rkpm>$r(Q4B0^MA$wvovHRnm$ zFbQ{lr6y3tv#yw#^!g-Wn2o*id$4~Y$t}nb!SN1g09ip`nC{nf6Cvu=Z&P=SkK=zn zVu{lwbp1=X#nZk^ST4QD$oIw|zSp*a!}mPbw^rBQ-``c;bvpKTjkShkZG~2H#Q!FQ zHeab+>*$w+C#sfD{S!4LPKvoUWyAQa9M3XmP$c`?b z9JYSeDqC7MDLi^E22C}9qF3cLsuYh)&El<@;cKA%yG3I(-nMlXh`6};bwl>0l$hA= zO2K-u=#7r@-Wz@W?ey_N(c2N!gAj>zybh+i6b)pH^b_vC!b$+~?AMe%pw%?MGqa#Y$PW zR(3a~7Dm>T|DLb$#*@a5C6=50gv)89P_yj>5!&N+-`%=WZesD=eaCZoXl&yS+jm-p0i!0oML`vV0K8ExKLN*aDqIQ@{-BV|? zG~Kgr`$K`ARu<}Fa<3OmXn-x#(+i1Somt{y-28}3#@w9_Txh%Ta`f~BO3SOi%U#~y zll=TT9JjaY=we>2A}Oogt+ln6U~&hQu+Qb~)!xrRg)6GSD@#qyanbV;qxPHO2#>3m zHT-Ls^MTdX)!U2GZ7oSgO-*j?0t@`mb02hvZ|8uY)L?EkymLjiuemhMUo1<*Q<#); zN^VmFugslQMZ};7&Q<5uh>D5>;=7AXrQ&h{b+-2Bv2-QPmqnI$TTgS4pw~Mz;%8>X z!MyNUI`#g|O^DaqiuS<$i~0843DCKgadedGf9E?-_e-;TVkg^cW3|D?hBWZ9y_>(4 zi7Be8%A#^&&nY(GaznLUbpJ<2VEVCFOw6IF>5xcHWqp009ZXh1;Y+!_8Y2m8Ip8)2 zi7P0DLfMnX0d8qZCREt#FP|)2QqluqXrw(sH~+lNkb1%Dznn0L>`ufeRE3W`VUCBj z?NaME{XrqtsENtO>UQ4WfmhF@{7hSLvX}W%p3d)l)?og2F6THF2YR|sJbHv)4I`py zl%9}HR9;-&9S|Qzt#~j-yYc-9INfVUc$Ea@{geqcCz&$-g^31$Y@Q0Um7E>+x)ZLH zKPS{o2S(jZhtc(`@rVV2HsIoe(8_f1Gar?t>$It}Dc9OM!(6}>eChP(9#~~SOwf8h zd^5vaKrb#+uGQ0%ZW+xX7M<8Pvx_CGRy-UoILpm4ARAw%`$DPqV}PLUT#S4{!=2x( zs#ufae^=Omp0~C)z48C?DE$gE+_Jz=GU6Mbl)U}1NA17_bFaHa^!6b9?{8y(KtYNm z81#^%?cMu>yr@ZoFvNec{6b=(Xz(aYbT<+si-`SATy#hCUKo~xJ@;!s*+x_<>A zs5tAup^&IF$iLSiHjlLcXI8Eia>(BKD_FiE@}43pSH%i;`N%p#kFe0&N%!y3a0vAW zteEI~vhec=&-JCJk$d`#Y{LTQsky|(jtftrjgshVw{>U-2+8NcsDDM+S}ah6-8m0A z1J7@U1{7f%AVQf$|M0mYc$C(?RIQ-gyFdgWJwkF}u@-!a)gF9GUhsB77=#&c6Onst zX!yndjvecN4}9tXa}VGO@QdE~IX?E{V*{U(&j6nqg^7CMgP6%ib8pEv=6jd*KlCy6 zj~?*2?(hY##o-@4podPW^sibsN)IZ)ps!+sdF z`L`;{!{CI~WsxTZHPt;{^mIvrZd&rHve{F&W+bq`INRg1KBa-TE=4f41=mLOd+jRb z=7Ti*eoUq5r~XNH<8_+~EUDAoWZY*`ydtiZe$7qiG5GNgDk9gV_tQPXern{$H>pgxGOXLq~p`B%SpBB?m%CZk+rPE0XXvJ`oa}!`3(Q zs-^|VSfYOih5w2-We(wU8WJ2Aa)uUKaF@Yyg>(?OxsHA$^a;8c=w?pF4vqYFoXeO_ zw;BSOsTS`D?Rwml1nlC}nC_Syf3|ysbmQm#{*r_($w!VA(d7a?kbM^3u}_=e#CUvR z7z{;zfs24aGry#9M|mVw#}H?82_KE4E|sE%`wyJYEORI*NJ(=UUotT{ zpKNLZmrmA!@d;in?Fm?H>?lv1pki9uMwxc%_7eGWnEb4gprS2AW zbxnQx^y$j_I+l#p7a-8H+uhlTr>BSfH2$?W=bu3h3A|p$@6@*d`Qsw1zuE$_9y~{?+74Tvlew z2SZu$fYDtn>hQ$o7GE&xMNfBXe-S&3hL*PcGd0oyIlkd0EDU(wabWSV3{9j_&;+9z1BDkB9dElqvhdID|w#!U%D9k6T9?Wo8~5pF^Iv2sh;A@dyeI z?08I!jTtqn5MYPpNpPdiD|N*G5nYbK@QUNft?zS{5`ex^VXU{C)@^M4R;bh3SegH7 z=I8Gny+_#Cp!jSqn_gJ5b^Gl3e|m-Xz_aCeQ9I7R4{qOBZ-6EdO;gi~j*dm0VHqfB zaAMIW5WNr4WzIQlvX;D zl9Q)w8{LFZ2^nbBza+%osGS?!xIXS@vLIlacKF_^5=Y{VEMDjBoA<|A9j(4}S zNTH**y1J#)!nxx%%q#-~{aSdq`~cU;z%`hY!R8P?{24?cSg%u_5-)m-V}ruixll-?Oq}W;72X9@%S+ zfIVO3)FeV#(sFj7r)FVs=aT~8HFs@u9jp8RYa0kFXCJ7#P&m)$8ph-7b%H8hpif ziS)-0%ZQc&E;T(BSwge-c&LqbltZClW=2@BxsDh#k3%s1Jw$Aw?GHgW#j|S(FPM0G~)|E?)Xq%}myI0~W*ZzF1f-pY2jl3nmKEOfMs3vXqSi@$RSK{7Hu zuk65`x`u-JfpnYP)>a-Cmi(qBFil9WP;F zjfq8RM%POXv$F_7N!cj``{mY4X8+3ss?Y%G(j zva-tNyOzfAyR!0Yr6UL$fEfF?>VfjR=?7DE?CzyOvqpsAtXjLC-R40r)#yeo8=HNH z@h=A?;%L}ED@)iBak2|I2oH}R;IaG9`+NQ#f7PtNY*AB^pT7mpLcCsxEIi|N`8>k+ zDqC0(oW)k@h7AsNlXka5jsf#iK56EYNl66^*BE7DhZ_r)1sytqK#UHc9V+3)OR5lU{HTw+qS7Pq#JZMZG& zVOM}YsDDE2$$9Qrv=$DC)$)%zd?6=f6ajGLMPP(DtPhu4Ti37W1g(MHQ2LT@2Vo|vP)uKvY4f_|2MQw4f3yE15D5>S&7;XP7X zDQ>l%WBRS3NAYB@?RnA^9^BjvxVVCuIAcGBgQ@lT0!5gZ`chJS7H7hCE7*0uR-zVJ zBA$ni*%Z!ZmrZQpQwZo9&C8%_ySPjm)^}!_+`)Pc4+p~xhMZZIM3&f_eC+tl!J^mnUc%heRGu38u{jYtSn0g1q zaUDl~-WUC2V@cqZU;G_O{IgwAksThs78NCXEldoiy+yU3%?Xl(9{@SLp;}&7o(f}g zvrlR1FgFexBp9{P3^p)*A{YG+5*!#Pn0n6NEQ}UjN>lQGOiiVw1zxLA$faL^K8>}G ziI&!7u0*e{-gL4YSEPmOpgae{(7<4T(*(-R%?)-b3kS#g@kR|ui&pj*L1CMKj;YAg z+mMl+z4qOb44jh`my3%_skp3kb7rN$D$vO2E`^P3`&7Sd{N?L4kaj{tySqbucbh`; z7~AKS^*5*%vV(w0!bUBQ#K77jHv2>)xjMW6WF;J8(DCtCAt89-j{`{>!R4A<$HDmr zf;z*LdNwgRtYk|JieC2W{c67nNa9L2Tj%#U7{6(2BpEhqcrJBYH~6YS&m|&YQ#(z9 z9(KYW+Zu+36)T5LHI_(e8rI$@UtkY7^c$3@{z3x6?8C&X+^_0uk82-Cbb%T^NS~@} zuC6f0Y)*bClF=?Y1>Sv-%J1tRj^^s|yF6eZ*u_F9rDnqIV!2>4IfQz02hmGd4bxoP zBxGcorAan*Q~UxyTr%g^d3)16x2H_Ir05H*IrsAZIv?KJ1H% zf}O%N&C9S;iR-}~oSkG0f|XsaR`TP=4?Y-Ruu02-qE9BD*Qle8qr7y)iklnN`{PGJ z1(75wj|K-9H$r@Ia1bZOy!{MOEG;D!c(b*Rff-S!yF;KX)M}wPSytJ0GHKaM&mc?{ z=od*>qL}f!j{$xeH5quK9SBSWL5ZeM`S!=&+1)`rl@*Uo4pNkdXOMF#Ec&C0o?cE) zPGXYTQ}k|5^?Z=g+D}$pM15&gcRl2U!WAv-fO z56Ll5;}vZzE=L6z53Z-7iKz0aL(!b<6=*_qM zeEGsB+_@n0%2fe&$;HLR%!JXuf1myx5y~bOJfCiG-1z$!{_@EZwVu8{D-y^7*k0>Z z8&-l%uzV03%V+IlGZUNl1?--w9sbJp+tbZ)bBqv5(KpAZr&oRfW#jO)G!d@nA`o!p zo*zG6zpjsk2{1(iOAIQ%eJ0Ab7^S_XE@vXL=b$rnw`H#ags8Absn-GR9iNfI!){G8 zrluyeY9`W7d{TZQfl5lh!KzftPBJEO_ELw2ej>?NDt3?T!U`RDB_brG_Rb1?>3hjK zI7z$Tmd#WB-QDexeV1O;;5eU|n0V6968NXlxm=v<#j9ZIf}*MHfXk8NV-47{MDBjr zBjQ39F~8u16X0W!nYj&4n~I7#(_SSm97Q-?ue0T_{sNx^GMnPCht~0DuN?0LytOs6 zVa}(ariKiE=SNRZ+wJA_=*f2|I%;Z4gpV&XEe%|$<1;VmiKgZ{&Eu355da`uW>Vt~ ze-^j3;X>!P7Q>;{g;RDV^}7|jNIc3;)89b42beRnEekl9p0{rbI>({RWsH^Y3=$F( z)%|lx@u}irv3|$55sOZIKr}XOKke$`3gkHP6vFkk$lZ6Y+kFHK|0L7v3#VNbj_A`yZT_IjXAaYtkq4o)SRPWapN0BOw+isvE zO1DrgEh*`zb0$wUhgLD;==u>L-e11#jv$G7aa+|(34~dKe&>y#(G0+;t%~Wa;RA3o zd3c^>3%KvX1W&)dt7 zx_f&s{o0J3Y~DrX$y81dV}~s*FYjk!lGAMHNE;ZojoK)B-QC3V!wAsbz{3p=ZWX;d z+T(py2YP<<^2Fn$;v7{Qr(0aiN80>bl(L0fPq!alNX0;3lHw{0pIBK~NNJAqN0`#R zc;Vd(E9dUzw@#mH@r;nl7ja&y?Ojd?dwLdQK2;rZh@mt#E@Gfr~!FhQ^RdvPiS31#xEd16cw6}RagY_?rD9a zc@3la$USo1aw*alW)lO@mHnbW`d_}3`WoB2N3_?{y;Cp6I8GrVtD)Iar$>!-XBcw)eosvebK>;&spE)J8GrYH7yOwh0-6=^wqE4uVchJ) zCEqL|>u@nhSl4@<*9V;Ga)kgAdih~#FFXXoOnp^JlbKgA29jt~w3XDonER<)oU?SPyFXskGg zlHdQ5b=Mu#`2o>HVQ;@g&bLjWh`Ku4%d_6>42$XNqE#D}0Ohw1V=#9Iaq_#xvGqWS zk6g7R3Bas86V3PU12o5*rXA(D8}D z>D1KVIbKVP2wzW;vl;oru3lC<@9gZKwPZ+LC z$AQGdMQsqijPY2!rzZ?BJ~`9E2fy|9may)T#`#QC*jrndv|o6(Ea{3IOvvMw7ErgAY>~B9nNn0X5pS@*UpnF z6;eEOb9+|lH&^x1R^RtQ@lSxu_S~99uD1UqM@O3XOz+p~k;?5 zZ3pL-L>iqem~_Ih10pUECi8vaQN+9si0>sJrcy@nkVQctX@m61a<2qlGS9oN##tE< zR=NY2i=CMc!3bGWf83i@QtA@lQVh4k>2h7t1OVW*!yF*gq@<;QEE>dAqf(-rH^ro? z%ud81bUgzUR4jq16}{6OloD_=KJsT2?nTALix-{n`RTy#k#w@zb#2`|6I0~0LVN) ze~EhZN8Hxs6($~q!06mulx6#YP-<#w4Pe?XFX>ZO0lkex8Z@~``ua{p5oq#hD#8nT zm))CY(1QRrKOn^xgHBDiXjQT+E7Yc>RQ##6Mo8sPBChHI(e;Zb5e|Qg8WX+lnh!Ya zv!s(vAL9DQyEM5jbrFbvsi`UcOkLU7$jQwOX8JwLkv#RE!azQXiuyfXHUK(g2qL%$ zV9QccQb$LwKy{T(7edfN8t38Vg)W-C9MuPi2gURvL$5_P>+m{0)N5K=#OLn;r`s0< z45j<$bYf6I@%io{Y6=RxOiWz5!s|%mECBZdg1IFLJr`FHT_0d*_vQlcOj*0VWbr(t zw>#eYdu4O54jR=IwKg@CS5>{RL8dxl2Y)l|)v|7z&Aq)vuE#$@Lsoz7c~Y!a0;YtO zP1=oaxqIC_+PwwnwYJ{y2fYsK!MR#m(S(shhjs~V)gPRx14r)bWBVl^7h133SKb3=V*_xd)Z@VZVnA?T#y4(y3EZ# z(vAP3RzgE<)y-e8(E^YR%I#Kl=`DM6IdC{*U=Ho$*Z&k6Os0Kj?B#@v)pM3SI@GwposO(MI zFn0gtRm__gfcK2AK)5q1Vaz0cun@YSr7Y9Q1K4g~06KwS)0m zjGsP{&<<4F+wa814Sn*Xqha6g+KtR7zIgyIT9+xIbY@$Membz)jb_MR6>tO6jGGS3 z90dghsR1f+nnW41&EQ3E=U24Do{MIZT3S-p)>XaB-gh_3EAm-%eNkA-%F26Fb!C96 z1x+vmQgZUz1%;F88G2a3B%u4{*)u@WCU$(rkDw**EjKcHMrPX`d&={Q#neA(pX9iP5Rwej)od8l;$ z?DRrQbT!uko3UzH%f(C z5Cv}Lfkt;t+?K$g;pF1c+PkA7whZv^p4y(^FVOY5+(r1J1q1@Mp02L0l!X-C6G|XN zFLQML5&^Yw+}qyW?KsN&@gp-V>=YolN5t%LFc@eKxw$$6$xy&j_r`j*uQ!s?x$nFG z+3d-74F@`!Sj-D{1_r%+RR(%pz#KUrxRh%xJH_^+R9BBsJpP*+pxm_)^uUuTxnG4* zUtiy>itF!3ob)_AGB0n%2=5-8JPe(h+;0qF!J zt`H?KFPDzbZUkUtul;U!Y6>HN00-pfOoz ztL=+u3&D(E=zRVq%}J&9Z=S64j=2^2^rs|5wJcByU`9T}r9 zx7u&9#DS>K+0U=Fy1KPJ(AaJ;?UU7Pqq9M6=h}){rIC^MVsNAJ%VzTR1Z?a>HvxOY zxtHk{qbPMyF`^qP*oB03f`V9eH7Ekztft;U%cpo0@o{l;1l&&-Bk*VZ&u&3cs7|-Z ze%d14LgeNcw2PIO=Yv1t>Xhwl#`RwwIbt;fDj)Xt!jYBN=9!*k6gxWsIUJzVHGd>j z{Q3GP)CM_$*CIeDzu%S_R<3)^ar5*468%st;pXWHT6=On)f2R|3n6m^UA5#+V_04Z zO!Yis1Ya-Fz{ACpq)9*(E1jI3ki}vYiUU{5UV~-42wE<#gR!VY&>Rb37ilr6u*b@m zNjuov?%wOufgR8=#`ym5* ztI4(!L4g-BQDK1a+#60wsRziX7Yx3`|21KZv%+buo-|7 zsUZwX8aJm6?Y+FunXc%kWK=c4@Y_^FpXCv0s&nx3zUn1gs8S~1Nk>G^XziaN9#UM8 zl2Ve82)M2Ry)-P~k_defaH*hT28eyF3RWTpIm{5pwu|2IaQd+GCn5WoRDS=Dxv%i5 za*g^V6$KFxDM?ACkxpq4=|(z4x};l5x&)-98>B=)LXa-$E@=>uZkWyeX4d=#v({Yh zy6d96hjZR|p1psy%{h}H+WfoS5+Ge)tr|S9KGG`i&&jdlUW zWMFGFH1*U}8l2YJ^=^)uECc}OfAA4JUtfr(q~(s_A~@U{D`8DE^tzay@0qoI{U+%i z-@g|0GQsQ9Rv>D^q5D!Q0D?}}bwxIXI>GPhkvSp%egC@%(^I^<-dCv?JM~L^^R7cn zdqeCdECf?iQ}b?Hvx9@I5Cl}g)_5_S_m7)VI%fWSZ0UL2{&cdXPR)rt%zgT4QB;l%CI`v`VI$yt#TR^5oMUcy$K-?sNZ%6g<~g zig|pXSzTxh0ss<{S)rRV8#oid*m7Ft6BF5|@H*ak_`F*MRhS!qT*FMqgViG-9+hxc zj?Q&GkNQeWNn@xeqdSAhyx^K0Z%=nsq=@_kY7`Yo{Z9Fcn)TtGThYCHa+nCVtiy4) zj1{w&ZhTDgpL6z^N$m7C6h-+qQ!%r9#A$U9XGz_r>Gjo5I7mv}7G*B&J3mXaKNM2U3vHb4fz0l0zCIM|*oE4-fv1 zau;)RD6yFieqcQ^`l|JaA^!9w`TF}hs8|1u$Prfn>^`C4pshUv|1&MHXdAY$A<3IM zX8zc@?H55u$E@|qa%U$U>46FzuA0RMi7XK1hJVxh7P5A>y!>lIBlVQ!8N7U=GacXMnKgKy8$WI7wXGVZ`qz%B< zBv_^2mJ&4!@WIZ3k8jGEtX;Y{I9O0SjTY=`3rPOdeQE!w>FxHVL;(7^$6y9(I1doB zK|y8vO4uQpmfws&ki$*!l~2i=|Cyj}Z}Xp68X7I?$accO{!Xb!CP155>M&)KL?kz>A1|~e(IE9_l!$$?|O`87y@IE2Mc1}^{iC(1lUVgA-a?u8m1N` zxa$-|(uK5FupPvE=k$*>Rp1W_|59Q)6D+CYX4Jy0di^+=Yg^o6Ke}RXkeW^YS%sAK z@hfF@1G)y&pr)ALpUpAk@mp&g((wP8(4^D386AJ@A^wFK`bjlX&}nCyywSn5`n`ph z=bld8-)0AL+XqMv_wXG9N$UmsrX~lG1q)2 z;~DwaUtqY>h)<Xf`EQkuv>>T#BUJx)9~6CH z2K(ilb{DM|yaW1nIH1-0zlZ35Yvq6VyN@F>lkT&*lLNNsmP{bRYmPT;8P`)0L+mAL zMba^sQ;fpMa0#&3Wx?@vKfom|9UW7OuQy=mPjQw4-Ah+|(|13M-iY~ty zZ^_lkgl$P>=gK(9SWm-eKi9J=eKM`zd~0SNuQQR#TwoS!Ip*;Ni@?0*|}$ z*ONdjEEGhF!=rh>YYx5Kh&ZWdo>(HM+gA?duWrSFBj%4GKDh%M1=|zADU8;9l~*y@ znbW_@3L4`t7aM@WBn!-tj=@1OAad}>q8!UYG1#0AZL%DaR>f#V8KL0kWzEDsbl|JwOpg z0~w=X@~fQF`@BR4xYN2}`N5IXm zApKpGMf7nT5i~uV`>2%VxX4cp6`tGnnOWv>wAt}X%jxLzGqdzsVq_t69dy?guDn3U zhE}+rAzc%xX^}Iw>jx8sG@GDcT6U-1_~{Ju&XXO8ZQ&KDwEG~y~>OgcSMfDU- zMA+B!XtScQ&;f*J!!yEY&qf!`&|ab zlv*V;w6yhKn$uEK3GW9$>o|~F5BnY6s}bvP2_22kdP+*4l9F)HP?D410M!l?0a!dB zDdyX!OBj=$@)v&laNYpSrAtg~^l zUtJw*Z^t{U0OK|Tvz}Sa8n6->8H=I#7RgCk5S7U(f#nac+akhh3x#e=XjyoDd){I= z=f#$d=)lR=i_2XLM2c*c=Qh)|t!XwkX4bVk$uGX0*10#{WswC%05j@K3L(2% zPlU!1O9WJ`TVvs_uD3m;cB$PYMsXfA88wYZ+`>^%^ppZYI+`Prglm`(1U)uArblUtxkQt_Uh2h8}S)aK9+U9Cgt){bYIV z>1jlV8!;DJd+&pSrsnn4uD1nXiuX}Ly9XM==k)X-IEjcTom>f|3a(c*zAW@+&DUtrKHqjYMh)*loz@J)!2WTXsM&ox%bp( zPglOAQ2Qg?qj+iTD@EgXub-22+Nyqbc4;F~!1MUB-t;(Sc5>F?xOZpL`#hb0mJ}w= z`^-+X&$jy-$Ht-|VN)seFJ2t3yjLFe-i$w_KtUoh`qOYMd{UpWS(3No3ICZZtPfdo ziJes8usQzWS~)$A($J%4(8>Z?Kc z@Ww5W2*V~*Z{ZL;K#zX=U}T%~Vxs_uVPd*dA8%!bzS}hciimk zUQ4T1b6BW>e%kBms1!gNv8RJAEtef+dJXS4TI%W!0FhleD>^S@@3U|hmoB((q^+W| zescGl^;Jr|VT=DB$PYyv9Y@QJXfp>VG~`3))|2$SuU4dEX&?eDzQOz#8pWsh`193d zq5j_2k!^-pY)0XzRE#k2i2>+?;idM+*0bkl8^fj?vh;MFZ@$}lnVa7i>3myhHSsmK zsK|Z#+cpT785mQ)yB$?PBkz4Yi4P6LYVSrem(W4)3;Dy7CJvSbM{dhxP61st&S)Cy z9(!x+{*cEq#cK2&b`ER(49^Hp1|`!|c^zqp!dF*U`7i!HqE{CL^})~n{vG(V&~@Jt zIURe`WMyTw<~p}lUs(P_$<*0;x6r)ap^NC*tSdN7&QQ+|itxW{GsT;537nybtREIA zmoS!SPHGO*)01G{Mc^jDNGlQ8+H=7Yfgc34JXO%KuA#)Lm}^s>Na@SPN)CMD=Ogh%5u9M{%Z6L!WB2OQXL*r0w`hy?$~r5WiCrvMN5e27SUqB zQy(q5Y zpa_5FvcbE;fSIv!^70p(MXBy5r0j`enriH_$*e|G-|Yf2=`XLrB-oss5vV7s9-T%c@v_ipgV46dl+d>feMem96f#N?5t8bD@|etuqP zi)jKE@eBo|LSEY9;%D&OnV38Rkccxmd4h%DN^eHy3`s(9xE7&2~an zHHTZ-On0~{DM^{n*^AHa&*^AUf?k&d{tmVDRMU-uy81w-_(7h08G&m&-U~Bn7AXcr z)#?iS&0oRPru`{^a|vzUN3gWEE-9-2Qdrn!Y|l&LRDabOos=bMA*PtZQ8cuM{&&{> zOL=+l+SzU+AISJBL6P|PZ!aLPnVBtxg_Ce1FE0)K{yD6Lm;t2MPD^B&b|S>`0rdpLXxcGfui{LN}&h)4V5m}UkeIC zh=RrbI`Or#489XnRFRGWy|j9%*0ZG7z*i#pd}wKbh?-eGXBf)Cml^>aPtmBoX$+)L`~Pqu63x3;#p5?=$zrw!{c;~PN|Vqz#* zfB|^JLhz^S4wLpf5Kb}Db+!@k5j#O*`@aQjam9`Alc0x9_dE{n?G4L*sH&}9WjTpc zKighm3Dg33Duv&?QF8c26Z<(i*@`onJzT+o94i|&uXHSidK8u^>&gADI>#ae0wPvX zGypRY5nR&3#&UA&O#2EU5GGm*7vZxMNQ}9;xcG#G5*k~fHhcDL=Mk;>T7T+M?~7z& zOeOpq(5)r>6rOkA^@MFhO?CTlqYi__>DDN?vAsRqvG)~*{H?^{=e|x1V~sai>5N{& z5Djd5x0G$B^)y;v^Nz?ztXEVxa(R?oTx+L$%D{ov%_!mp{{jOBFG(z|{QlXcmym&Z zXxk6FrMdw0BA9wXrHb$t@&9N6vLhnoo_i?&-rxTi%H?YR>~TSVTEjnBgWMW)(L_f~ za<$^=LZCE9MkWoUxTB&zF#X*wwaqXP>)gY4{>oZLwACcg09Smn_Fx)D1jfa&7V-pP z0g%buH1kY)KZWN-EE;VQxscFF?OGZvjZ%ySB?2`jJ!1vRJ&(mfQ;AaIIhA{U1)z}k zUMLsbyn(ERrKN?%DO2!BaVAqs$5SPaPOGY_ie|73I1myN@(4qYs;eCn6AAG`#fPhW z5eFE(5U;=KG5LAeJgKYqq-O0;p6#)6N zaaEqnOp>ETo?QAj_q9@GTDeiZ;_>+^`mBTbVe2r~fdezMXFv5dVgjke1ARfO5FZCO z7Ci2rr~mdqF$ufGYU{(AQjPNWeMyhu-AG1`eTtXUCm@KVWtYv`iDT#q$y7KV^n8F7 z+U95z;ZhvzFIJXq4ICOee!r0W@g*!$fc&rZC0|vhHynH4>N+#_kEE6?`=K3|&tDXI5FqtX&lsIqr9zx^$f{lg~L33*wo72_4f!=hXlioxJ;9EcyQKTjSV$^~Kg8SkOcnz{jw zkB8ct7hcc`xpKgLJ5!4ew?EXhsHnB5sIIUT4Z}J$a&tX@!~5a|%fCL<@O#!Z~a z?+S_q3ot)u#BXdpIXzt(h#(UxpnIh=dsgdUdfle?!){UJs@cbRs%jqs@{g4DWZ zdc&Tlb+L1*njVkgvndFN+i%WCc5{$7qpy)*m)zP~wGu ztEy6v&#ugRfrB}1$yqu1m++s@B6l+1JK_hpS;R@N)l{Xu#|&AeV-EYc>Kz;^$=of= zyNr`KEZmfpdu+Tfgt>`Vx%Yoihklutq0A&dGAR`l@2B)9^vojU;HtS^61om?3OCU# zfakX`2~q$&P$@>@v@f@7E|7h{OmAz|?w70UT~&HtcIZJ^0dH!AY1$+%rX)zi1YP>D zzU4+Egqfy$wivR$fgzC$FfBa)ONQCh!WTW&Q7C=F!q_90dfz(0d6A;p+;ag2EG;>C z$#z2MZ22Jo;jm5c5<7*qRX{ZeTN*d_dQW$^Mn(2{PD0wv{LRHp76n#G$@Yj>pn=zZ zELn+Gb=YPau#SnGC6|&yQ&22oMbfSgq)(5J@7nWFWQQvl>NoS5yqf$wIs90>T7v=9 z#d&%1@g~ApW2HKSlaoi_z}T%41>@X42rpE1s1cyFE=|bD&@}Be_j%qq4Xh zb0)YW_nD>fhsO{U+FmEK50~t^EIDDDb>;Vq6l$E>c+a4#Jv%m5ZaN@XKl{ymv;r6` zaFT9Ml;`CHpdqdG>zwx4%;BR9l_Uyz@4)Rsj5)pV#k)Ps403s+r9KrBK6_>z=qnSi zlFn^+zVH*gn>lrEbD;R1fIyz9Dbo7^$iDj0(tBZq!yMr#mSS1utE+0Nqn5^%Q> znJIK`HA&t5TqL(i8ZW__x&73?KfMW_D(;A1QKa0q#)Fw>nwpvfeo!e3xF75OaM_qB ze^kMc{F)|gFNuS`yQc?KuAEkG+GHyi+2!Sv#!tQWI>VPH+S^w_&zO!X{8ft)wEeg3 z1|M(T@s2=LZ0wb(_pzm<icYkS?fvrDSC6xQQ=L$mFP~%x?ybXz`eJ5h(VaZf!DMZmKtF z!XpuYz9#u}5G+ov4Swv04-kMXoPr16^ZHC3uHKhcg(7w4=^tl=ksVO5%hHrr!jRYo z*qu~WpAa#17}_C_w|+G-iNy&PlaYDDfQK&*Sc>{Dg~$1YT56noqw0FN;)_=&LObtv zjS1SVX{tMS*og1f>g|oh)sZ0nb`1jYKX)n{#H!Nrw3_YZgTtY&T_Qc_$wzVml zbcaVr%Dx=L5eoAuN{rRMQTc_rxw#5=?;Am=B?I1z@ahr2zN*7R_IRsIOnayy$p8KP z5;Nklv?n$MlObR(yz8Ih>Z&S$-+;z4eVSkBwEnvsM7fE5xxtTQ;+aZTT^sA_%*Tpf z#hYw9C3mU()4SR7o~quOZVi%d)}+I2w9P;?!m(f8!;nkYWp!AsdSSW=UAVX+x9!5e zxrVzM@vQ_pKU|*C(^talKz}JMv#zf~j&*p3M6d)>etirGLM!-MUSV(UBt^Nwc4Qz)InF&8@A4>81IFt0#9sTJ}sj2G(Noe^422Zg1bfW@A|XeGbiR z&*e|kRn1K{{UA2Nmt2aecZyXTxESVfg7nL;zLI!S<&Ob=a=1j+1TKK<P*;7|t6IZDi8T&H`UJVT{8eTU2KA zr9AAsc|&!00!t);iR0+-kcZgGKdNI%r|x~mto7FRHryX|-}=YK#!!)jV}pI>VG+Uz zgnhlczyEeG(wPk);X8I|Xk0|Iei6Pm@y!af9wY4U|4vAw`O@7F$<*F{I-{FmV?VC? z^C?&D7`JB`whvYer&c^8o{Y71DNGJS$tcSkFl1Hl&wtNN0z<|Or&MCQmXF*Xi$7y{ zp2F#=^~$`PWLXc*fC|Ur-MjboI5w`nRE)+gb4fwBITKMdoCilZO6x@-@ai+ z7+G-^wHdx8=wu0NGlbl7{(;B%_&lkYp15epFLN;sF(4bI%lMVF-SD~q#6pag4HSxS zCadBLlqn$lvyeu*^ZTJ?+v3rNIE`pj$4LiYPAXD}mZtp0b8xB{j8G*d&|WPjtoSv7T0c zd1xFk=f1mibJTP_-*h#tcb$H7aB{QHYyP1s%PB`ZoiQx^R`!PdC?Gx z&7OxpR8-w=32;lc%BGgWMHT2h&dkiWt_fX3b+da*L)Z;jHf7NnayV9=I!vYp2D+4`R*QQL0161*weFMsyGQaw0ybuczJ z1W^|Q-hta)*7ipt@k)51Gi&oAweMVnPVH-gM0TF%|lzscf1yFO=jA^wzg7 zT5*{KCaAwJYvy;55v(V^JM|^4aB$>ZZ=}zCz+%#=>jW>0klyae-M>!LfB|U6KSnY5 z^J}k2jZt1!))PQKh%M?BX17#geo+Oo$3W>X&t&hbwQ%qr-8Mb)nrKDPQWDQ z2Ki$nY_HpsmCiTUqLBjMzGr1!*nsYeSQ;&{xIx>^Db@?Jli ztu&p7J;CvTUGz>gMa^^^1P(x*CLX%V#jY)AyYLa}Oz?Wb)S!o?8H?pHRI-UmYKn@a z!D7lvGs=1KWx5TP`ppMtYkGkq86bp%e{H!9*|5DYyJ*MrvcH4h5ImmeYu?vWxw2ch z;yt~u$%GnR4p#GEW_shWBmyA%*&03}1i@yL4K>x(o|mU~ z@QXs9+C8CtO};k{@kRie1EzTIPHW{`S!TLUQ8ZAxcE!>%YE_Zr1Q!;bPgyYceP-Pr z%4wHLAgZja1clbR$xnScdU}WR!~3z)fC4;wRtgXpoF$g%C^t7Z*R*s_t5*gF*CPeW z@Y5cRK0pg;Fu+JHIk%BKq*Zu1Mn=ZIwFACXr-&ty4BMyCpLr^QIsgrK<)pT*Zr!`V zOIvRH>&rH?;amXaDjAG8lV8cu3f^1}S1{~O9qD-AywuX#++PW0)-mUIScQ)Y<_y=f z6?}p~yZYHjG`MA&mG*#1dY`tc)5?t?z2r59=H_5+KowV9@-x4VT;5Vvq~MXu512s< z)ew0|3VC*39+>k1MCN5=gx77{+1!k#a@`!+hpQk(m6VjkW~CJ{&gbG@QO4T!2UB_O zDwepFH5ocfwBwmiru~=1n z-|dK}=jQengPOeI-Ckb~=*d%2#Y*!#U!JV zeSMnM=815BUhURwPdn3bak-BcLd+rKDmTCaRGU)e2<*2gD8mAJIHocA~X>aFT zK>oeeHiZ}|VKnbm?|rsU9g5c%*|7uwgK8Y~A29h(5lXZtZ$P>q z39_ve-fDgVjKPVygEeNa%e}lkmzfp&p(ySU#-0i=(U5t3Jz7afzZC?Vu@iA5_ob%J zl6n7N#0e(%7d%^z1k1zz6Pq7@PVO?`^#BG7_b;PT^zf^{Gr zC{FnVq~^Tz>p^3jbl11a>_o99lZ#(vVt`n1(s}-q%=G2f67eQZe@~AA8iB-gfRuWAn4A8!KPg*}pQx{^dq~Rvyl3-b_vShPKW*yA zS)vAmHD~gNp9>(=a)X9D+$)0!&9Mj;pCq=NzkngcWTSNK#ZY;ktweZUU=|d1R~Tm- zY>f>t;`M|w3qA>#Ko$NdVFc$u)6}$vs!PvfuNok>y*5*kjE|X}a(OTCLY4ola_{V~ z{|^C>;YR051Z>w%xuP&E=mm{}!Z29HM=C{%~Fy|hj ztQXR~#|XjH7^GD3GSQ4buYK=y+4;^ldQ6KUz8on~Lf2{5^Z8#q+~u6SJRahRpTc_T z>RdVxDF9fdr7fzdDQlV+bop+4o|o20vkoWYR%eAavbTRVvc2Ffh-dFh7h!sQBhb7XqaZ z?5F+eq{J}o^#n=>1S~riX6A&Y&ZjtC<+8HFAtCp{g-e3z&O$&$@b9;#G46c<^QW`c zH5VS&fQ|gM#32EPSpZi5z<{j0ykou2;Je=4hk&6_KUVUO(!K2cg!_~k$~k?OiOETl z$PP0^csU1qdu=Au+eGcdHw>#T{By&@d6hWHsi|>kX|UkHV*olXSWsuJ)t#Kw>^bk3 z7zX+R2;k|NT>!H;fV(m?6HCo&b!%ua{=?l<;r4@E#!u}%p+BS`K`B#F3}ce-JqmGr zPCF_x04Bw`IYCwGp8>Gwo0NoW2&KR-V`UB-+fKIYWf*O#lz4^1EJ2UUN8uev-n zEQ4{$qIey@?WDk<`&w2uybbLYyl%7AXJu*~2JSrh+ zaf_#c-2de>wJw8RD()^GU))CmeEG~6oGQ+4$ORE~isQdElgiT6*#s(DSwv5i3X=N2 zXN87SGiD!SB&7E8^?;zcNogg6kdF&#tOT_=r_jk^S27KT(;8g@(Hj~f0Bh*Fb{P(?&aAW%m zee&Bc+lN>zohPI|*2ZT4eXk!?wukZm_E&kO8%rmgH_C^x_Of8PaASQx8t*2b56Wt{ z$-_Ngb1d`lK5>d+*F>pH)>AMF_Ek)hpOkhP*dFAmkT?TESDL7lUFUHc4aBtG?;y& zmJkP!19S8+y)}BwKJ~m@u%_@q9P-K3S4CV{{g5Wy=v<_`Q{=%-nq(Qp!i=%r%_yz^*>1Faq1d*RyQ*bG;c^|IubcX)kM6j&b++$=PdPt2Uk%57-!;OT+ z!hoyUX~#{}67t>;BkWz!6Q2XDv=7AI90!8_ChQ@`L7U5(y<}oCyYgc(PM9<1MIIGF z7~wlHzL^y_mI`-n>}CQM0=rit*j8OQBJodps#!a^f`=%-A`=Q^JFgq~5U@sFn*KTy zL~^vj-McG^AQFb{$4V6a2xU2^{`zgy?vb4WN54~q1NdETO-G~AbV zZ|TSFU9R&||Fys$re)9FN|)2m&Q!S%oi`-nM<%$iToABb{JTyR7jh*t!X7TXG5u^w zj?kI;y#4L}-1OwONT%Gbew{tpW@?lj{4QF^SYu{+NC?)gWsMExFXzeRCgFAIJ zc0sgVB`X6JM<}bEz2w{M>DG+}0t*sqUv?*0V7T1S$o+wcP8D!h;2KxGewUe_;x3U!Cblz%+1_+79y+iSu3I~W~ zE|!Ii<&UgsY&pf5hWlNyrc65KuW_hF=$M&Je|~V~Onxl#5%J&IC1YO+Oom_DYhSt- zZ-OlXr6=Ikw!EqD6^;C1^h#MlK@MaOV4;bi0SHj28kv)w9rned*>2|S;0T~kCdO12 zn>kD2h1h@qtioH6Y%n)B9&{UVF)?fv&p?Y>Y>7jC5`ARySEw6}VA(xuDhO)|9ON}` zzG+&0qfft6J1Ah3-ilU~6f(H|9p-V$eb#vT&%<3ZZ(vOZXRmXH+&_~}DXne?m6G{d z@Pfcd5m&v`=;pEr*fWB_@6AB*0#`S(b|9I>+HH;XK}>}A{klelHgSi*(MVu-w;B8c zq!gM#cMRGhaOObKI}mRjof8C>YxH6U>8OrEn+#>BTx3V+ZNS|$=yD1Rb$7`{G_d>u zRgCRYQFhp@X}W6OBB`1zmWgNR?UdTx-j=;z%|Ea)o&|lQ#TWy06uvL%%qT?G|Fqpf zXf9OkA;xsqn|~RTge_uSv&F<7V&rQ>-1PAF`ILzJz-s;OJ5VZEL%@@_pCTQGD-pP2 zQczK6FQfD9kA$DFHsckU47QlpOgA`;TYEQ0stg^FIF4hn3J;}{Id1k}tEj@&n2D7a zoEx3If_D2Dy8eU&tEnn$=%vA#78B+woBQiI+Ty~(0+81H-0PK~A*?9^Q)*iXH4hKZ z&7ph~;F`WBnwz-Z2Yp}+cQ2ucJN(s)q4@pIMvmmx2g|S zES;arys5eNHTW`X4M;{Jhs8NG@-T;I&g;V2&reV%K;PVAtMT;D6HS1c93VIaApN%k zrGMAgPuH^s-YW|`I}d=9a{BzPM9^={JEFuLB53TgeD>LIL6st%_a@JtY}A04x9)m- zevXhcn4rm^H7SlhLDw(XZedUyR;VYV0`1>xb5`t)C=sHTCX9m;Vmj#}p0ouXG6+bW z5C&qSAQ~0Z-G|7C0q82&{4Eer2%?v&ruz^0$GE!1RE$U1VONbe5LXPduydnsW#J#7 ztT5we#zLoHNqmifAg)MI@zeHq5G!TKTP2lKPa)MXRxFf8I18^{b@T0d*e-Y41sY6E z^P!_3Brv|=x7MbhRw(pRGDt{@_LqrS{`M_mZq6%^;(piO678M4clF#h&fo)pHm$P) ziDHDkq^zu|pdfB7Hj>VGl7dk+!S8MI>pzlYp8Hv34csQ(%jozYdwA^8@3aE!h=8CI zC=L>^F5K{?vj3w6s9^KHP64*p<6_%O%Wu)Ps-{Lh#u(uxaQtC=$u`&D^Yis5RDf{- znpu)YCV)hX38wCijC9+nXB%jdRPDX9wk8p7RAM1`N|wmViR^2D5+i^74{>RC6zyZ? zJGR7+!_TFYa)r?t@z7gYg2g^K9TX5_4|73rGONPA%*_-n^;@nEAkDM8n}yX{i~A_D(FVjoq4216j?x8!Z6gwVC%mUrbz$}>AG9Yv6p_-OmHn=a8) zKk@git?3_3HSQq&JvgHJ!&*-{YQTnGjLwE}s$0tXO{2K2O1CI_`pi&ny2XVIBB1}kdAo>0GMIhP)y7o+{2$( z9q|(j8%3E+E3A}N9lJkObj8X%AtJIcmm5fY;qdcAEl~Vb)s9rD3Z63=C$9M_&D;Z0y(mlU1 z;@($edPx)$CC09Ir#mKv3hhBb2!o80_OVltk%6REngI2iuM-4;s8Mvdl<4mCut*Cp zfD{bb7t6|*ZWz^%LOdGs!JKw3zkT}#nIx*ZWhVebz4>Oj2jn=ju4R4!4=Aik`;bKF zq?IfzE`W}lvBq~iL-l2*Pexf(7)GL4IyeKRHnp@N!MDszetP<)ROdOM6Q*l+f9qYZ z$kWOZ&kqhdTK(yw#6T8E6OQaiPEYSSAYPd%E)Gk4kq7<_+lgGcR5qh_aQ=S-nZh6w zCc?zVdo}feCvyI$8$il}v5cM0aOQi<=H_!=vj-vs;q4%wc;rU8Y0JIZn<)K~rVkCf z80JG_^f?nqFEIxy048^KE4x zL}bGF!*ari73A{fm7avwMO(-y%Qe&8)n~^GZ!^5QLWcP@6K=Bezim-I5J$SyGX;1G z9DlM*=8L7}?cRRxuNlvgEDPkqaLf+pClf*n%WADZd%upi`6?ywz)*8JU_Y zEu32E=>vSLNWBa$Aqhrcte;U9Tjo+!xdy+0KzO{?aMi{zeRnsF;p(z&=Kp=2) zN_G>&+lSSnK!<@49W1G7a_RBuc3)hr_KtJTcMqXDPB4fd=5afJZ$*deRGUJtUP717 zUkjqfg5f+fD#AOTO$aL6JaUi!E>cPgkVcN0rwV#beLy{+O^6e3iO%YXkhy0@=N`i_ zCggdq;N6${QYyo$vZkA@GUw&h6~UwBN11dZV`;S$3S{>rKOz;It1LIz5thCWJZcc5 z%6}!s_ANKtA8Swi5vcp3OrA!de^5~6xG3+y6VDn1 zwCk1lB4mV}%w2qp#}>(_GY4$y@gELZkZCP1wsyR$C8sjk-KCATg>zry4EncwqXOjq zAaMoVEZHuJ0ua7lZRy6aj2vY)t zs)6QH5U10H-!CL{$P71z%D^M_A4Za3`-JgRidOcigot+qg;OIV_Lry6((*0^*&Tka z*fZ%him5_8?^|^>xqzsj1ezscXPT97#jUJ#l$^*+evsAi0!$SqZ-1W^A~&{sOLm;@wY{yJ+;|TtR=J9LAjRI}LkZo5qXI;t$L}co`3IEyd{Jbg z(C$=3@9>g45U=wi@kabw7nL{{Gk8Olfb4#N;d1xRk1lN$)tsLM2naRP z)z-7ONt3C3P4#ZS!w`68Dx&aEMKrXv*}X2mLzM>wrK33|Zh_epC;-~S=|8g=c<9W! zCZUT+sj4$3-=K3<>46k|M&T;iq`UEYzlH$9|=u5wPU+MI}pqexYh=qL{D5oSX;Rj0J~O&QV1 z{h(GDG0pHcp~uxx-s6-r6&t&qe<1la)z}BR8Y#-_Bvf*p_7&GO670oK+3vE#-0_cO zpSEkLs>B;nEc8M&H0hVho8S8!_yUlAEHMfXzCi2fZyy_ zlu|vUYhmt9u6)@SDhOW%fd@=nt~BaMgHCNQ#xM*Z)t(+16HNn630zr_>T5G~fExhF zc|p#PR-A8?Mst=z{QMgG<#-qF0FwoXe@vEnQXn9#ATleVG}At#qtuVu-5$MuH#M|j z^B#jy6H(tkS&XtPpN3A_o(^{mD_AEBPr)<_lPj8qp|i81nA!77*Zo04mZ!Wh@GM?h zyHF58YD~h1D#bD%w=gqikJr-*vAYQi$@vvid(;w2;3Mm@s;r%%y9rZ5=j+2l7nN&X zpa@;s``%{A;|)+uygY17e8fxjDE;V-z?iwbxiQ1o_nc^&kP zv)}*nVEQ8X>dXe%iGLUnUVA*wc}WV*wO!98{CTnX#zqsleBAu zfjq7iV@rFV;$)M!%TXvG;oD?o1e&nA&ppb)3qVhR#z;&(C#dcz6iI2k)hSNcmYhYI z`4ECJ(dbFr7H=@o(((aX5Iw3;$jE@-eSM@ikBE@;Iu~|k1}%0Wvy9w~nt3mq`9{B# zM(SNQCk&L*P{0Dl16KNp{js=pr|H6idYv(}hU5{Wivf*}kF#1tCesR<=i2=kEp|A;(iYFj-FzG~l80-uv@! z(a6*DN>h{2seX3t0C>)=0~#rm&Noe7kn;$HL;6yu#|%V%{Hx!^6w4ZXN&aunoeWgc zNi?edM&&LtG8PQ+Un(DCi2z>UzS>($kD5JZ^!McM_4V!z@RUV`ZjO1rFHg4gZpIdE zLBf7j;Z1@U>IgAr5O3-3PP?KRW@l=8!t8y(B^=paylBVA56#317NgQ^CqNOU(2Q4BR)SG8Pov-ZN6lI@lXCTM zya#zq_Om?=5k-|js@&Y1`#-*{BOg}br~g5L$_on(%7=`{1ZM;lwh^yt*ks_m3%|7S%FjobH6I^AI+ZS7*x=70ZX(ukZ?U-R|Cna4p(TpBQwjz7`cF zjv_jUoceK8XWDLL}It$W%*wFLYZAvT{HOj35a7hre1*M z3f}1J6c$7TtZ)gK84vV7WW01~V~KEZ(5A?(Wd}csXV5I}*bch>*TD=4YGJO*<6}v7 zzg{j}OWs!7BZ>e7Km-Woqru;IDL%Gk&U@Aj7*+Io9;cfQ<6($mwgXJy${kN|Dnb=FmSk>(>o-UAeXxKVC*A{6oTfweuCji<=x zxT+hLB+*C(bqPOs2=1o}>LhEgzUB7!#b`M^c?hnm=mnPeoUQn9EgEgbPcjL>X<9CK z+VeaYF`m=%zCmbzr^1AcoOa!a7(sUKf^zjvWay63nxKRa3T13moN7+ddNs?5)QGeta$+i8{Gb}|V34%m=61$!NcJ&1|JZas1L^RjD%Cnpo;C zsZ*Blc%sCJa_{-4?%n;N9eDP?i5-sH^E^IkL|_Ww^uMo9VWVo*s+6e3xV;D#w}enx zQ3p%^?ZF1(3yRe9lBP;KS;|8}MSurSP6HGw_|i@3q*m*~;ECjqb?;iG9^X+_Ithncix33Pq%IClc4-{sP{ zT3s&Eb+_pZyPSU9sVGLXpI*R;<2?xhJ<9mGUjWB}!)#xRx zs8GUv=CcC#yI6=H5x?9RB48sB`4j2mHs>Q0MhzaKH~(%zp`InMAEzsdp|_YPp<_ju z%4eoF-_+0)np)=5HbY4b3iMw`c4_#dFa9Bu=WN3ve9?HW*X;hU<>3^7@>%X6`Hytg zi!_ehCk!L>(exo~$uJH=)%cZ!n*X*q$w%S_9}%bX=JVZ;$o@_|6_Gq2HKfeAx|-CT z)>~!nsjun9P~K5Meu=Em7AA5X@SMUh|7JkSM;bu_Nt>AEUS}Hueo!$I0ScNVWy_R* zAGXhVY^0gN;mML#CMmMd8@@1#tcoA)VdSd&gW6`r^^)3LW7LtIdwkm1C%DyHtjw;i zxP<1<7f!S7h+1`yimBuY_#!!xcvrBQagdsksPtuSC$>qO)z{y%KJNCB9cr0Vx!S!5T=Qk zq%&^yK^GOo@F!oUREQ#{MV9a_M$tg6csH?>Id}5zVyDwaw(b7e*r_8I>^A50}aG4fmG7$wXsyg%l#$EDX;xKDjtehe-=2xWufY4z52u@fkpTEUqx8P zhYT^agnP&|A9;k9uU;OCvSI`fEN4YU3hO@Ael6r1#n4eQ&Cwnw)mqL%Q2)j(YL}o{ zAUjB!mJTlvul{G#L$e1r_u7bfmMQf6f~oOiQv6MG*gr`j+CNv&dHLdJwjqK>OQmtS zpg=MO&j*i`e{O~rL%5m#NW}(UVo1Iie*E}B_&Se^hQzAy=0Q>Ouidc|Unc8yuPV9v z!&9kImfEs65`Q0&V-=ug>nN1>e|S#LN#~=;5=P#BcS4x_^a~4`EFxXZ4WTmbzE~Ck z)1VbQ4%M4fSDP<9QOA_`qRJ0GlKbRvzeG#267wdPe>Rd{C7FE~`JOcvc{d8J`eR3D zKn@13jN~4Bl+^!f?JS$xc;7Z0f&~wr777V2!QCB-OVQ$5pt!r0;!g2W3KS^ruEkx8 zyB8@=aro!=;`s*8zR65>BD0yx5OcTEcR`J4+|QZ#*QRe{Tj66|wD|xCDQ$1cNC= z+6nAr1og=sLRLnOSsc+d3z~_j$F~0&_By+of@&+{XcMO-WIK_Jt5TxFJoh$%av&;H z3-tns5n$4^1749bI+n}#n)k8&!g}5KCM(Da)fP=;JPmf%%SjsDFh z3)>w%0kf>+q=gA0%K6NPM$EuDjks`E%6$KXwBE+;ED zxTzDr>;A#`_;-!{!f0YJwaScAjhW6DO)ZrfP4r1PIP2Bh{(*{fp&=+SvL-GQHsJ@8 z&|vkjSWbhlQ>ZATgEV>3gCHq?r;z?^vTrRj3x`UAG?pd=wH&>JGyq&Gt~vPIdb6=Y z7_)3hm^Y5=>pg}dT(aaVC*l}$h#dQNcv%|pV;gweTW^EA{d$`HtUtp_j4&1EI-(pa z(b2t;pD3 zy&%OflDU_Jb0Ly`6bR3`Iw2(~YNRD$#H)y&9zz42TkV7SNkWQV^r5On@eL*vFaVBh z^@Eu!yGBae&bcpBO)070)@R*oVW?n@)hei8T;7BxI7LQ3vQTmmhodv(r~S58X)jb+q!fz|w@W|Fr6s{#iWWo-lr)(6Jk zKx=}>$gG&rsbQ|co09N_TT|$n2~1psi))UlEb>kXzFeB_uH*T$vz!#oEC}+QKt4DT zh0bA%mXPi8>#!@+0Pa96PRc{7&=?+xN~1}+N;*iAhBInV4#@<(MVz9eDWR?G-1kKd zmDqVnjSnc5*O_ji6q=o$1pd+VxiRDO=Yu~-D#<{|p4E0FVx*8Phom7QC21fNK$-Z+ zr*lqTUb10SSnrHHTF+b(K;KX+L7LTJZ=22t7CHh;g|VJH<@nsXY@cd@pkay95}X)d z)45#dC_05G0a(^{$#?5E1>JOquV{A8V@Z?bA)_HpIrv!#eaO<+VZqX2d%nag{dma1 z=%`49lbEJ{m}J@g@&e=y;$2LoZE2`@wTy~~vA+-zuBiPkXXlQSV17Zyi!0z1YMPj`3uuDOA`6bicu z`<7)NIX&Dik~uHtE%uojlvB^AJ6^oKJ6oe1XYe)3W6E7<&u|<}Xa#Jx{Uf-`{}UjR z1{sPv_-^rxT$DF>#ts{UWfrHG359c@m&NZlUGHcf9CWKKw|bgIASxav9t5S%kRGCu zJuXR4DCZb@oic_IJA*DD0GiR;u=;&&uu(=(ss6WoAqiTFZ8+tl>#1-O8$DVD?-B0) zSg{Uyvt5P=I!FMJp+IhYS?#l51(J5;c)gnu(fsnw=vh} zeF%Zb;@>vuDW!YsnQ+ILV`%->f`W2C1$%!@#UdovmP(J6Vm$zo?fBj>4Gj*7Z#3XL zAzR`S8nA>h$&3x*jujxXINB1i@BnHdN!C&!!!B}Fs=k=N71Tj6O>Y(6Xymf0%6KGQ z9x3=?HXcQ{CJAX(6yaNZ?4BV00gG~#p3C;5Sqnt0;*1^&KpI4g9N>R(;V|k&7KA~N zj;GETGuF%bR10oqS8QrsMuIT&WYOs3%~P6bSuivZh;K7Gt6uLlGi){^j;E% zf8AKZC|L5Xi=@z$NZEZgtJR|?<|Mhi1)^zPDlxhlg+02y8*0Z>r%80g&-Ivo`6nR} z#45*5(XV~^tRTU4G#U+{nCz0*6D|=HtkR?V*o+<9B*L)kLv*a9;Y8hl%OKfGQn8nx z>^0WSP97>Ftc#pa^6J&j1A{QO>?=xP6evK3y(9Bxf`})Xb(;y&SmM-aCr}^&ysxPX zYw~@W{|Go6NNhDGA=#QFm+&}q(dBxCy*|MIssnvIy?wWL0Ct=BSK0m&sTx z;Ae%BMe6zx!Mvd(*w?C~Jf`|@_dYRH=_*-N{a{i4K$!>OtVufOA)9Obh)afk!Va8A z%?W*4?@pTbT=;@6CV(A;^Ye0XLrJ3HPtPuAzdPsU=VQTWa0Q<@KbxW?r#Y2d6Pm9l)JjAG%-jZBTVRWsQl71Oh$> z?U~WGDZ~`j>>z)~dkjlRP1aXy_i7$HnXJoAk5PlOG5^c~1~`(No`WQ^Im&8@nSC2+FNLHAz9a1--IpOy5X3xs7NOYr@V&Bn6Zkv-ab}w9;v$-r z@9Pcr6^m|NncXn=`uBa_-W+x4I@QGuN$P2`5ZWZ}7Y*JMgrDOhr17T`ON~q{e#0s9 zk-rBU+IQqE)t{+|FH5gnkuK<;+7%5kiQDGZveb>+V31Q~h) z*gb1#cV;o(5^q&iCx(U^gvifz?MzI%j?Tk+HpzZ74mj_=E9^C!YMA5IOGT75b}lXu z8QH0|3Wi|@6$y}~r6n;DNga3NtzQQjO*DrrC^6pT$aVv#;!#4?G^W<|VsG5o&Xb>` zAG^mS6cT1C5XY--k+!ce!bGDNB}2_vd|(yL^Ex($=@utO8Uf8Jy0Bkn_`fW`E-6tJ z_EQ5)`YqPyZqaoUexeSN9x@ttQWcz8tk5Bn`vxv|iGqY#6#w?G5VU=*836C9hpp$M zY)rLv^}dRJ0tg+AHD_w47e}Y8efw@*HY9yl*?XphN9Lr{O(AamVUtqiIoL+L0X@l& zLl!suqn|wEz@>k?VP;|TyXh6i;-T4G9%Y=*K#%bJw!9?4LGapm6`u1EJoRoCYnU#L z13SNj$pSjyf>H( z>s?^>(_Z#LQqweS`F)}f zcgDSs$a2D~8vB-mYotH+QM>(32b_3T4~=7jp%Hn|e{LS+3$0uf@ngmBxf^ZOF9MWj z#=i>BExBO;OgQxmm9m|WM0Ge3iG6E=eeJO<4Gzmmp@r!c@<{2cD$JYSNJ7l$sHNp4 zEtvwsmGSp0DMhrv%mZb|%~Y!JYzN-VUH<<46wf{x+DA78TD zZV$0f&e&2dSxEG|PKEq7^ec*&KG)%EyO-%0XlVU@3Xz#bc^;nL3d^gMM#N7!yf&%$HB zO_-JWnymBgFspiL{G$UEx~!E1igCM?Rh5ZMjw36Yr&TSd-9Y!?D z%Sb}CideX$c_XZ4=^f0c_rqH4^bn_fCX5@0+C_m~zrY#q!@ zEh&8K_WFC_um$DI%U^#RJ94=W<2U|FHwIrfM-#Z(R1@=P4pZ$7MQMC1Nhu$AqgUGi zcoGT6$QLk-vydIBAOKR$ARQ%eM=IpFV~2L}IL+U;eYLT{veN!8p{%E&EILnGov6<> zOvJf4QISEP)X8vSC-hmo?BSTNVlpiaq|@ zbt>1GAC51}jJ>NxEZJ07SCu}Y-rt>Q?f9}`nA7;0*AoR|o`s-`wb&n-iN5TSIj&^3 z$uRD&vg%QEiW)J%g;Y|!@nuW$-ly8=HR{)U{%F|?Ey`GGXg{f?MF)li)kihl3rjsW zRmgV>1*vIib){Dv9X;N6sW=yJ#u3ZGLQ@nF90$&R6bS{M0`u5NRXr4tLc!MH?no$@ zj|T<@*)2BkWGIA0&(hG!6VS@fb4$MUXXff>@6S~m@LTM8nUZk%MCi(oKM_9#OsgUw=K1%pG0Q}ZR0P4Q6tZgI2h%N1>L1=FjZk!W zIrrVBeljJ6r(usg|Lok$j^d^T7K!EZPxx9J=fAbnm@R_ToqyTk`VA*(zpJ3A@OEK7 z7pun|=C2wsi!VR!!&)g{3JD@5XmnGydKc&O$KDh_|IH)7-W>gQ`i!N>MruXR`ndYi zQqDqg2BV47VrBcB9}6n?AmaV8`!E1Sg@r)GbrQ=0>0Z)5esmUW6@-Nn^3l;bs?6zz zfnCh~$XnXhrxu&tms8(zN8y`ckB*Lh4S3PaRr^^`2Uf7Op6b*c-=p+FG|tM>v1;u>*O1SI+6MLLiBpTP{VP&=p%!WSm(!^ z3QgB!=vg5=ZKO!0LySwL)}bTkW~db*@8!9yRt)q@DWCXK8SRSmb$1u2N&=J7YOq_K zUY@6yCy*R$C?82xnzhkDgz0o@4u5s>HN5D14=R>-#z&0769SN z`ggoc7~O{-l3AE7;`(oHr~Femp8JhcPiK4nlW*WZe}#kUG-Jeq*Q&^Bk5EH+2n=M3 zr~)Bi`W~XC48v2EB3J+hI7<=NEBMCEnzv4=^#es9d=4VlJ06phD7S82h;$oL)wNvp z#D#R*Y(%b7-}n9jDw#xJdkp#hg~*B?Vwvq5Ul{%m!zD;Pv)uz%yy=wk(Q>9RJI+!! zC6C;}T1(QFJK*BwadLVjSGwiny6az|Z*?r$g1jV_0uY~BPx<7MI067mA^hv@#>dCUNoTWh5 zCqQhCPRKRzkyOjEv9Wosh!OZ?ZBT>V8-+rRKC>y#a%(BKkvSH`Vf8!h6>%y0BAb^; zk9&gX;Of3NfD?}#DA5rV`!KvyNG{&l%SGfd6#9}FB4cA?(Q)4xyf;8-f>Ot3RTYXY z--p@!X<1vHS)H9RWKF^P98yw($UL0AQ+?jr@2pa~q_A9I7vl)R*CzT54nZv|u~jw3 zGgq47W|hFU4+Et{(Sl6hxz2p^_f11+UE&S#B#xvJu z)eMRnbjkP>gsEw12!dVr6awL($dtlFte9#^`)&vs9k1z+#0>X#?D^*3Wzx%N>NL5e z;@`E#fviNB-XXqJiTsZ{$&T%Jg{FVvO1IxhD);>OqNadY%>5?d6RO@&RRuL!S(+;=-n;h?mP(FB+S27wJq$qp`8J{#o1V>fq6#0p|vcuB`C^p;76;gBHW=@YxXh zm;3brA+)&1k(bOIh`{v>rPhUOT)_>cPvY|JufacLVx1TL6ZN~~wByHv2m1T#+5Fc` z)hy~5qBoV#zLy){t~S=lisGAVK1ng&-SUZ11in~GXfy;|PN08#R%vSw{C9C+B0T$a zJ72_x;NI81{9t24>8>7cpCGa7k2ELVr+54+$m@K+F#VgSU;L=yDg0$CoJIfNn1LUj zsm*fEqj^2d`PuX3a+pkvKK0e%er zVlB*(k;_7L)0nxV4Wm~SdLuWrQgB6r?sS5ZqxT|rK8#WzmJvb!L+%i3+bF#If|-NU zr^TDBtSrgRNqhg<`);Q~Yum$g70vGPH=2D~>*)$@CM zRwI2iP)u~ZH!BYd9dEf^{*7kX@jjGy-jqw`o_TgYW$!zvGo>IDj^#u8sWxa*xsHBE zSuEu&iB4XdQ&3|7L1b^Ts+bI;mKM+Kmn2JXE33V|-Z2AK&x_unjDrlbY6RtX?@!|9 z-yXwNL-YB5$o8QcLaMuc%~x1d$WY)S?(x9P=VnNXvRNSZ+?CbUu8QY^3v@W4{7arCkxH*2>Q$`DO%kUKhF44E_>b%^%NKW-WiiW z^a)d1L*O8`ELgMbKRPBK^-RHMlH~uDtc)({k za74e$M4BJQ6(J#3zx8tSgg65%^Aek!zs{eT{xHf?~Qk z*W5U;_QXOPr^Tq86X>{ca2ooqTvGhnh&O~NqW%gvJbbqp&GzCLDg%GJyE1x^^RzGi z6ZX}%CxoHcR92on5g!>A;auXm{5b2nO>fMr;MWG@^AP3p_!gfrkQ7rY@g=>*-un9W z`6r1uL^Dk*s&6Z#BCYMdCGRqm^*d&SYKLdvIycJ}SaqUZdGN9#_X{fHVC$*Euv zhc*yNHiI0IMc%pAm{)#n{&m~}0O0E%K%5c~Ua0X80|OOB8jL!iREUm--j-db;UGnm6e*=j z5e6Pi!iGjjcN^Fn-!2NiR7pWXENc@4iuH=>6y~@Lt1O4eT8u-Gf$R;z1ra+&Q znwq*^QJCtVTO@ssPf2YlAwaEI6SS%1zn+Z(4UNiU9|jeV-#U>GxV0Ax%jedY|INss zK)C6o__&pmk^OoLJyb7Wm-EYkB|VN;nm?>l$R{DpM!83isA~IAb>>ScjHa=3z4@%M z@elEx*Cezn>Gk&dGu$U<=%$K_BZTNT^vUugHB7rv@R7BL!BR$ZJC07>%a*_EzdKLQ z2PAV7P69Nw+&SD%Ujaa{FbA(hmXW-erPMwKWXKudrvo-?q=7-)z&1kD#9}KdCe&D0 zr!>z>(YsB}fJtRpSIkK47;`xoGp2+vLt37OaVzz3vN#fW^r3v%xod7@)>Nq2xs#YdybtmJ>l1VDPA3#O^!i|7`?a%?|gK8x4-^zt&R&Z9(2vDAFR0U{8kM_ zOtM*q@gj{+p9A0PeWesTf7m@Za%nPsh!%5N4iTtGik5kW0if|xvI-6K$D=X~qKY);#| zcWFjW%bD~CQQdhA5q>|`{`$U6is5Lm7wW7EV#jRmFWcsi%H!sB8HqT>WR1$seluio zfmhis>f()JdbO|}-?#0&p#eDktNvOI2$CFdmfTePpd-f)dAw!|6yXy>XsNm6a%@zJ zPSx|#&j^jhd#eAY@`~~wh-S1=QQShXiudZa7jn#eu-KSTQZ4sLFTTC2y>XEN;Y<4X z_;O~9{uxZ!c6>u0N-peYZ9OvCQvV5zYmc~FA+3UN_MG&%<}n0p>#u8mD&4bv8uk>% zIt{*NQoHHOEc~Tw;pTRAoKZVie`=xUK^`vjw#k7V$uj{V+;l#l=fsyRQq4wOnVsmZ z*T9cj;#Qs2E6dxbB|)x>#~&*x2vJ}JvBLj)35S09_uX+cr^|r~QP21pC-g3`Z)=q5 zorKOj*w^4Fnr8Z?J2hqmT(UD#zCFtJmpWoTr*L`BgZuO+UsT48A)?fQb(B4(nJ0A;zM?ZX=9*wK82-?SbExEpJqjfP<8 zSMD$B2?_*bWcqQ1oPMC9BKTMEC1nm}vs;D+le`8E!DlcIHtz4#KNc|=VN>Af>wnkh ztX!}{1o9_xt)nB7jBn3spIdpk&3*8l-SX1%!~Mg@zDv5PuSN&yO)rK^uQ>;M=%O>th9t+CF7n=WZ3 zlE9fwX^TJZXiuK8o!6&WW3R_7huxlH^^&PLQ`3FE)eW6UD^fNei8eu{sQKVfB*J~F z4VtD0!$$iw6=rRY*t#!;D%u%No4!AXeh}pF_aAu$~9?y~T1AUNt|_h907yMAR{3cq9Ja2ql1fi*BEZ;c= zY!lgS_w%CWsgqP;YxT$4A7OlA49)^+Bz!yP`CE)7yw5Nv&D^}Uy4Gd9poM+ba~`rPMtGLC-R0bOo*8eevN zC+qv*gGV9wr_Yo8gNKKQgGYrXlVOXO%~3=7M8IFYt{~IbaoZrsrT(uP*~*xcmG+}Z zWL0czhx=K!0E8IW&FkS`kLnu=2>I>q`s3E|0axqIiNM8*`hbU9#D_6bjp)etcb1l(s78Pc0S z*WmZD*}W{4An7ossbuqid&?V{B+VE*K-eR6qq5o};JlrALomF%2OoL-u`}Y2TCJ8P zufDDe%0;}Z@C81FW5T6y5c?Vm)h)!VSc>rN-38=wYjW4F``5m`Vu&11U;vrZ%Z}81C0GX7{zz$(7rd+ssjAny`!J_hP(whx%VHSV-|D;T@ z=r@uJ`bB8?Y^~mi@;@NmjQ#oh1_5#CE#2MSjV5IkA0#$~Z@fQe?>AgUuzvqeyWu!v z5E^GRd2^{slbv?^o%Vrb(Jc&-|GX(OeHDS176_AE()hO|)EW6hs8Q@i6#zh-kuux; zma>jFhCtxFmD|2*&p@HG(e=Q+oEOqs4I=5{uQ}1Yo?diCI-a4ZmGQqG2?ip)p=S{}`DWn+=&kM_>bhv&xq?|tua+b8Q!1pw*huX`J+7^FhseckjQ#7hKuaVYLiHWE)$FKa8G|DfM%oJ429BEeD8 z1QPYRdBoD8J|??*)sq7}{-9Rhf4|q~Ji|~E^%Fh61x9>WiF{EG&j}c3zrs_=+1M@z zUvN0gk7R>6n=HMYtd~Esy;xoB#b#b#9bg{Yv}P#LL9kK31nv49@4GbjJrV%m-x&}H z@Xfai4P}zKPz8eTc2-vXlQ=S3f`URJxd}E99odS(nw7OFMA3k|+{JPy3W}NGMz;h; z1+ea27Fr^Rjd#s=h$0+X6RFd?cgZw}c(`JiDKEElsThZ75C2RO;#yQ3GNv*yJ~~?0 zP~UIH5rY^-!#OCG5&VskFU&a=9XIV!&6W#+f2@TQ`5&HJ{mS`Iwnyn{n=^Ujc`W}? zie5~ipXNMl5E(~?_!_v@K6Nn8%bA=&wcfcVYgZtk8LM|&S0sVf2#PuiFtd<26>IZt zlSZ-9YNpG1b8myC?j~LsWuX#i5fN^9q~R( z#Z)h5WHe_qn=qvBH7cuttF@=n(o$;{;h|OewS+K!AufH^OMxg*t~4ipbf18cY{ZTE)6v1Z4vx-TfSS;DQ>IgXoahrY$$B4eq^uCB^6_Bp0mIpyWC=tk|3<_j zMnQpLR)~DeO;N$=d~Wul+fJ&mG`&5g6Hy$8K?s4iRwL%Q{oE#Hb?k;i6LK@z(R`Kg zi5PUUnXxPn;@afq>PtT(@&a3U##&n?w^%bf2M}U^yh3i{pkpo%N2}|*E6|_6NY)Xi zZOkp8UlbvV=&j%Ve9;{P0dXqqRep1g!7QNpovz~Ms7{uYm#0m#e@Uo=S<82OMJ})M z&n~w9-%zeKqwmpNvuC-&X7XC{jZ9c)Fm%x7Y=Cl8$XAOBrM>Ekr<(ovM5WtUfGp8( z)y69LlPZP%(VuCi##(G-r6gdSedptH4ykCoB~82KyEaDo6KT4Rh?o!L&G)1-5a-jv zl;%(0`u7d{NIgB}y5>Z#lmKiY`@uW3N6H1RG?$! zDF&{MR%Du953F$HaN~wL9i3HV`+j40i#_`spe^PX2loUftp!}po>!|^j+TlACMBTP zH!4lH%&$f!k=`}%UR1Ob(pKWPH@nuOwf|jO#%-6qBH_KTph8SVye|3)6UJsS>#!IO zQM99gwkhC5)QwBo2YEKqQ|(RrDEuHbBnvU4=P-kD&|_a8V35$KJ89kHb)jBRg=HLD zl3!^GEpI;+0gBGQ-2el>`l6J(U$gviv8ai7nrAZV;QUZk52wXcRkn)g3FFlU9A_TX z4t8$Z3i;^vdS6?{OU98HQ}v7A`p?>70Q0Gyo=fQ78l$cge8#=f2}jOIToh@keG+Ab z;%BG*e0!(p*pT~B8q#-Q4Qfi<+dibkp_3iEtZE$j4x<@fUOL}U#3__Rz_wM$3Mm&VfA-@1@RDo=>~bP zqTH@R<|P|_G(o{W%VyKqy!Jd2y-&PkhslMZJ!IS;FSKt3Zs2S6boJ4^rPNZ7tVJ;t zU4LVl#aL$t6~pADukR^ojuq$`>1V>uYi7St|E4Kxf2(_|*mIuhgwh`$BrbYYWO#e~ z$@jy*pqOai5BGzQm`DuBnlhkd|K=zeh9mgaTBVY?_- zfYImXRpN5i)d$XJLn`3~U?s_9@*7QYAN5`5Tw(b8>Xgk}OiRk;TOOhNT>@8~k&|#g z6hD*|!_GBYoXp5?R=X65^57`&zo;^Nt(FA$ehj06UzX4c-7ZlJV@wnXfZ+QpYwYa{ zhp9i{bnHaA0maa7)dhTi!?MJGRr6EAI|c@_)?DL3&#Iz8Q6L@&2^54nNuEp!BFK0n z70R{&`W|9}Hlt$43-}ao&G9uZr~!2CLEtU^`8>H@3XTj99zinDwY*?*i3kChG%W}m1PsN2cwnkz>XmGph>oCY^ghw@YT)qM z>D{5=0oY+kGf^Z=)ddPQ7Il&&(iP#ffYgs?9p=N80@e5=yoU|jmqVUCysgG(l@!22 zW(g&YX7P-{uh1PPc9b^rQqJ$XnzQ9Wrlwmy9n^#1i-pZn^x03994HCuQ!XKy_=Xj| zX?5098aPqSWKc(<@M>}-%B60E+rxi40rldrf!pEW5vdV<{cQlQC@_Z*h;V~#5Mk}S zIe*R3AhgR8vbg8r*sMc{j1(=O`lf85(89XpCv(y(FpK&RJokawiQ<38sTNT41z3$G zx|`xGybqe!BhdIS7aOkOF-9Wl@&*630m^iX3M1Lvz#czRXucJz_^@oqtOh~rX(C_rJc$Mx13MiEaIi@!2x zJ)rwwiu9U*6FCnSEh}C}8%(u>&oNJX@)f)FSHkUM^wBTit4}c)xce(XrbA(b>^l6O zv=fJ=xJd7$TbPu#yHp(*yy?7!gex|edC8|XsHwll=Rq<^B5zgH{eRmf}=J&rAoaObR$qp z4Pk&c0Dx{QFD;=Np&|WKch^9_hJ1)BY3#5b)zJs`xvPKji<$s~O^F?&#u`aY%t-Uc z43F&PnR&l?q&~4->Z(mJ6l{Yuq(Q`TJXlz6t*usT5gmam#q2_3A?^}%tX8Ox+W-n{ z2!dmf)tC(Bv6zH#;DdjCjp(F;8`L^gOQA?sOVKPR;^^<$DOUBMbe9m)9G+mHHT^J; zeyigolM)+bp-AQIss5qifuJh%!=vW( zwyTOrl*&Sp70Wj)tB3=H5`mk{((NXhCdn@`4KI0PSzI4VOQ`5QZ0ZnoCzd8^rkesAxE`=jvE04sDD zzhi&*+5VXFnN~4X0bgt5Up9-rL*vp;7zJf^{)$}eyLd%11A7y|y9#{d>@%KB0aE0U z1ZwdR*snqSgq|0l*Qg$6Q5K^&CR??*C4r@kE#V)X40jK-O5Tg;luJED-rIUJYU#}q z7q_#&jBxGcu@n*s5xF+(ejORpm*mI|>0vKs!tgv~YGXeUiZl-b$V?J^XEbGv8wp`N z4_0vL#DEh=13Z5<^YBzqcpcSg;rU${;!(YPjqeJR1V~odbwwfPr?Z_KteRQa6GK7` z5)-6x0LNfEp(H7qkyIsmla_BKp|Hl*zw%#a{iO_VOm_hIY9?Cmb_%OUl!+uTgN2L+ z7BfuVa+IOn!Y&Gz)jegD#?K7M^S;X`_I9*I5gDV+|BZ;Ob7&zwpoe4X>a8 z(60~&zy-k(3ws3*SLd5S^lRON3n?)2sK2O6mozqD$BSDokkt zc$d)jPg?>4(ZY$Rp9ZQJ0n;g>LnU!~TrwgBKyX9N^3T>Cu||Qrw3as>Xach?hTS}& z-Vh{A0lmwdrpD@#wnrV6;BVE(6q+Ke!tbwYoEB%O4JK5KIa~xvwTY2c`OfN2ZH0Uy zEA4+1tL&4A1Zp)Iqf=LSDlR0U>hB~0e?_z)$AA0k;&^J^uiNKRBjai|1!0q(w`y8T z#M(8~w{B;Cbp7vN&{!6c*lWR2Rodn+VK4HtH%dUM8_v98uK5tAW`LjY0Q2=no_7x{4 zTylhDa0v(XbyKZ$efl+0j^EMLS&t}?j2H>!S4c3Tx)l?eR1OngVUax{i_};d^%0SjKSfFN34^-2ixN;dmw!u^9uV9wsp(_ktX2h8T*Sq+RxG3S6Jf1 z212XtlVdSAn8HWPA_hYTtf+d;DC|LSx-^O3z(DxreTCHxaQ00nJH&0v}hw2*|KK_wAr04(w66xjN)(azDcrW`P_^xntN zONZd6My;ZY0oX&a+IGpO_t4orMgI-}gJSdh{bIM~Fadt&vOZ%gVgG^jgQJYg0`P;Y ztTm7sKo&HC(xF&SF>bSd;m_an(0mWFlSY9Akp$5tqzVrJbjsXg`I(TITx|COQ3qeP zmPk1<*fG>1(SLSLAot3cbm->;VGHKno=6R)?luL#sig zK`SGa-fe&d^2v{*U;6L-I}O^7NXF^cV{bvXmjCd*(m}r?%4F?{#NU{#y2}5&a52Pa z#`~&R|5$l+u@PJC{Tel1_p;mxPrD5&%=!;*j47-Uwssue^1D=8pBdXzxJh~bXZ%wE z#>37-femIS6!GJ~LW)oPi0$=3>-LI$JelXPgKOA-+)Kv+WY(^#yprR8@no)cv5okA zkRL9{&u8t4obzRx*4gol d|9^LOy`Xa>$)}}5J@NpEO Date: Mon, 25 Sep 2023 20:40:01 +0800 Subject: [PATCH 27/35] Update xvm.sol --- examples/cross-vm-communication/evm-to-wasm/xvm.sol | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/examples/cross-vm-communication/evm-to-wasm/xvm.sol b/examples/cross-vm-communication/evm-to-wasm/xvm.sol index 2079d045..7b95d677 100644 --- a/examples/cross-vm-communication/evm-to-wasm/xvm.sol +++ b/examples/cross-vm-communication/evm-to-wasm/xvm.sol @@ -6,13 +6,17 @@ pragma solidity ^0.8.0; interface XVM { /** * @dev Execute external VM call - * @param context - execution context + * @param vm_id - vm id, select the Evm or Wasm * @param to - call recepient * @param input - SCALE-encoded call arguments + * @param value - the amount of native token to transfer, used for payable calls + * @param storage_deposit_limit - The maximum amount of storage space that can be used */ function xvm_call( - bytes calldata context, + uint8 vm_id, bytes calldata to, - bytes calldata input - ) external; + bytes calldata input, + uint256 value, + uint256 storage_deposit_limit + ) external payable returns (bool success, bytes memory data); } From 6fc49f0f859f56ad5c82207f9612cddfa929f17d Mon Sep 17 00:00:00 2001 From: Smith Li Date: Tue, 26 Sep 2023 18:41:06 +0800 Subject: [PATCH 28/35] update wasm-to-evm xvm_call params --- examples/cross-vm-communication/wasm-to-evm/flipper/lib.rs | 1 + .../wasm-to-evm/flipper/xvm_environment.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/cross-vm-communication/wasm-to-evm/flipper/lib.rs b/examples/cross-vm-communication/wasm-to-evm/flipper/lib.rs index d2b532fd..17806660 100755 --- a/examples/cross-vm-communication/wasm-to-evm/flipper/lib.rs +++ b/examples/cross-vm-communication/wasm-to-evm/flipper/lib.rs @@ -36,6 +36,7 @@ mod flipper_wrapper { 0x0F, Vec::from(flipper_address.as_ref()), FLIP_SELECTOR.to_vec(), + 0 ) .is_ok() } diff --git a/examples/cross-vm-communication/wasm-to-evm/flipper/xvm_environment.rs b/examples/cross-vm-communication/wasm-to-evm/flipper/xvm_environment.rs index ff19c531..080143b1 100644 --- a/examples/cross-vm-communication/wasm-to-evm/flipper/xvm_environment.rs +++ b/examples/cross-vm-communication/wasm-to-evm/flipper/xvm_environment.rs @@ -14,7 +14,7 @@ pub trait XvmExtension { type ErrorCode = XvmError; #[ink(extension = 0x00010001)] - fn xvm_call(vm_id: u8, target: Vec, input: Vec) -> Result<()>; + fn xvm_call(vm_id: u8, target: Vec, input: Vec, value: u128) -> Result<()>; } /// XVM chain extension errors. From 1f91c87f9ebe4363e3400b0443e843d2fe8d9b77 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 27 Sep 2023 16:53:48 +0800 Subject: [PATCH 29/35] fix merge build error --- runtime/runtime-common/src/pos/currency.rs | 2 +- .../src/pos/session_payout/mod.rs | 2 +- runtime/runtime-common/src/weights/mod.rs | 2 + runtime/sydney/src/pos.rs | 2 + runtime/sydney/src/pos/weights/currency.rs | 39 ------------------- runtime/sydney/src/pos/weights/mod.rs | 2 - .../sydney/src/pos/weights/session_payout.rs | 19 --------- 7 files changed, 6 insertions(+), 62 deletions(-) delete mode 100644 runtime/sydney/src/pos/weights/currency.rs delete mode 100644 runtime/sydney/src/pos/weights/mod.rs delete mode 100644 runtime/sydney/src/pos/weights/session_payout.rs diff --git a/runtime/runtime-common/src/pos/currency.rs b/runtime/runtime-common/src/pos/currency.rs index a61e6cf8..6bf56b60 100644 --- a/runtime/runtime-common/src/pos/currency.rs +++ b/runtime/runtime-common/src/pos/currency.rs @@ -37,7 +37,7 @@ pub trait CurrencyInfo { #[frame_support::pallet] pub mod pallet { use super::*; - pub use crate::pos::weights::currency::WeightInfo; + pub use crate::weights::currency::WeightInfo; use frame_support::{ dispatch::DispatchResult, ensure, diff --git a/runtime/runtime-common/src/pos/session_payout/mod.rs b/runtime/runtime-common/src/pos/session_payout/mod.rs index 040da6ea..e77fe099 100644 --- a/runtime/runtime-common/src/pos/session_payout/mod.rs +++ b/runtime/runtime-common/src/pos/session_payout/mod.rs @@ -62,7 +62,7 @@ pub mod pallet { use pallet_balances::NegativeImbalance; use super::*; - pub use crate::pos::weights::session_payout::WeightInfo; + pub use crate::weights::session_payout::WeightInfo; #[pallet::pallet] #[pallet::without_storage_info] diff --git a/runtime/runtime-common/src/weights/mod.rs b/runtime/runtime-common/src/weights/mod.rs index 16cd951f..ccb22949 100644 --- a/runtime/runtime-common/src/weights/mod.rs +++ b/runtime/runtime-common/src/weights/mod.rs @@ -1 +1,3 @@ +pub mod currency; +pub mod session_payout; pub mod validator_manager; diff --git a/runtime/sydney/src/pos.rs b/runtime/sydney/src/pos.rs index 7bba783c..b87a18e4 100644 --- a/runtime/sydney/src/pos.rs +++ b/runtime/sydney/src/pos.rs @@ -534,6 +534,7 @@ impl currency::Config for Runtime { type RuntimeCall = RuntimeCall; type FeeComissionRecipient = Treasury; type DecayPeriod = DecayPeriod; + type WeightInfo = runtime_common::weights::currency::SubstrateWeight; } impl session_payout::Config for Runtime { @@ -543,4 +544,5 @@ impl session_payout::Config for Runtime { type RemainderDestination = Treasury; type TimeProvider = Timestamp; type CurrencyInfo = CurrencyManager; + type WeightInfo = runtime_common::weights::session_payout::SubstrateWeight; } diff --git a/runtime/sydney/src/pos/weights/currency.rs b/runtime/sydney/src/pos/weights/currency.rs deleted file mode 100644 index 5da143ce..00000000 --- a/runtime/sydney/src/pos/weights/currency.rs +++ /dev/null @@ -1,39 +0,0 @@ -#![allow(unused_parens, unused_imports, clippy::unnecessary_cast)] -use frame_support::{ - traits::Get, - weights::{constants::RocksDbWeight, Weight}, -}; -use sp_std::marker::PhantomData; - -// The weight info trait for `currency`. -pub trait WeightInfo { - fn change_inflation_percent() -> Weight; - fn change_inflation_decay() -> Weight; - fn yearly_inflation_decay() -> Weight; - fn change_treasury_commission() -> Weight; - fn change_treasury_commission_from_fee() -> Weight; - fn change_treasury_commission_from_tips() -> Weight; -} - -/// Weights for currency using the Substrate node and recommended hardware. -pub struct SubstrateWeight(PhantomData); -impl WeightInfo for SubstrateWeight { - fn change_inflation_percent() -> Weight { - Weight::from_all(100_000_u64) - } - fn change_inflation_decay() -> Weight { - Weight::from_all(100_000_u64) - } - fn yearly_inflation_decay() -> Weight { - Weight::from_all(100_000_u64) - } - fn change_treasury_commission() -> Weight { - Weight::from_all(100_000_u64) - } - fn change_treasury_commission_from_fee() -> Weight { - Weight::from_all(100_000_u64) - } - fn change_treasury_commission_from_tips() -> Weight { - Weight::from_all(100_000_u64) - } -} diff --git a/runtime/sydney/src/pos/weights/mod.rs b/runtime/sydney/src/pos/weights/mod.rs deleted file mode 100644 index 3f3eadfc..00000000 --- a/runtime/sydney/src/pos/weights/mod.rs +++ /dev/null @@ -1,2 +0,0 @@ -pub mod currency; -pub mod session_payout; diff --git a/runtime/sydney/src/pos/weights/session_payout.rs b/runtime/sydney/src/pos/weights/session_payout.rs deleted file mode 100644 index 2103728b..00000000 --- a/runtime/sydney/src/pos/weights/session_payout.rs +++ /dev/null @@ -1,19 +0,0 @@ -#![allow(unused_parens, unused_imports, clippy::unnecessary_cast)] -use frame_support::{ - traits::Get, - weights::{constants::RocksDbWeight, Weight}, -}; -use sp_std::marker::PhantomData; - -// The weight info trait for `session_payout`. -pub trait WeightInfo { - fn change_validator_to_nominator_commission_algorithm() -> Weight; -} - -/// Weights for `session_payout` using the Substrate node and recommended hardware. -pub struct SubstrateWeight(PhantomData); -impl WeightInfo for SubstrateWeight { - fn change_validator_to_nominator_commission_algorithm() -> Weight { - Weight::from_all(100_000_u64) - } -} From e2bd427645c11b1aae17b2883c294efb72893662 Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 27 Sep 2023 19:00:36 +0800 Subject: [PATCH 30/35] fix ci lint --- node/src/runtime/testnet.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/node/src/runtime/testnet.rs b/node/src/runtime/testnet.rs index 244d44ad..e6283770 100644 --- a/node/src/runtime/testnet.rs +++ b/node/src/runtime/testnet.rs @@ -116,7 +116,6 @@ pub fn testnet_genesis( let nominations = initial_authorities .as_slice() .choose_multiple(&mut rng, count) - .into_iter() .map(|choice| choice.id.clone()) .collect::>(); StakerStatus::Nominator(nominations) From 82ec4316b740afa8cb7287a906bd08dfbafb01aa Mon Sep 17 00:00:00 2001 From: Smith Li Date: Mon, 9 Oct 2023 19:16:24 +0800 Subject: [PATCH 31/35] fix brooklyn load chainId from spec file --- node/src/runtime/testnet.rs | 3 ++- runtime/brooklyn/src/ethereum.rs | 7 +++---- runtime/brooklyn/src/lib.rs | 5 +++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/node/src/runtime/testnet.rs b/node/src/runtime/testnet.rs index e6283770..cedd7ec7 100644 --- a/node/src/runtime/testnet.rs +++ b/node/src/runtime/testnet.rs @@ -54,7 +54,7 @@ pub fn testnet_genesis( sudo_key: AccountId, endowed_accounts: Vec<(AccountId, u64)>, initial_authorities: Vec, - _chain_id: u64, + chain_id: u64, nominate: bool, ) -> GenesisConfig { let mut rng = rand::rngs::StdRng::seed_from_u64(0); @@ -140,6 +140,7 @@ pub fn testnet_genesis( beefy: BeefyConfig::default(), // EVM compatibility + evm_chain_id: EVMChainIdConfig { chain_id }, evm: EVMConfig { accounts: { let mut map = BTreeMap::new(); diff --git a/runtime/brooklyn/src/ethereum.rs b/runtime/brooklyn/src/ethereum.rs index 552e4128..70736eaa 100644 --- a/runtime/brooklyn/src/ethereum.rs +++ b/runtime/brooklyn/src/ethereum.rs @@ -1,6 +1,6 @@ use crate::{ - prelude::*, BlockWeights, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, Xvm, - MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, + prelude::*, BlockWeights, EVMChainId, EthereumChecked, FindAuthorTruncated, UncheckedExtrinsic, + Xvm, MAXIMUM_BLOCK_WEIGHT, NORMAL_DISPATCH_RATIO, }; use super::{Balances, Runtime, RuntimeEvent, Timestamp}; @@ -32,7 +32,6 @@ parameter_types! { ); pub PrecompilesValue: GoldenGatePrecompiles = GoldenGatePrecompiles::<_, _>::new(); pub WeightPerGas: Weight = Weight::from_parts(WEIGHT_PER_GAS, 0); - pub ChainId: u64 = 888866; /// The amount of gas per PoV size. Value is calculated as: /// @@ -55,7 +54,7 @@ impl pallet_evm::Config for Runtime { type RuntimeEvent = RuntimeEvent; type PrecompilesType = GoldenGatePrecompiles; type PrecompilesValue = PrecompilesValue; - type ChainId = ChainId; + type ChainId = EVMChainId; type BlockGasLimit = BlockGasLimit; type Runner = pallet_evm::runner::stack::Runner; type OnChargeTransaction = CurrencyManager; diff --git a/runtime/brooklyn/src/lib.rs b/runtime/brooklyn/src/lib.rs index 1394b7f2..1b3e46a9 100644 --- a/runtime/brooklyn/src/lib.rs +++ b/runtime/brooklyn/src/lib.rs @@ -41,7 +41,7 @@ use sp_consensus_beefy::{ }; use sp_core::{ crypto::{ByteArray, KeyTypeId}, - ConstU64, OpaqueMetadata, H160, H256, U256, + ConstU64, Get, OpaqueMetadata, H160, H256, U256, }; use sp_mmr_primitives as mmr; use sp_runtime::{ @@ -600,6 +600,7 @@ construct_runtime!( // EVM pallets Ethereum: pallet_ethereum, EVM: pallet_evm, + EVMChainId: pallet_evm_chain_id, EthereumChecked: pallet_ethereum_checked, DynamicFee: pallet_dynamic_fee, BaseFee: pallet_base_fee, @@ -885,7 +886,7 @@ impl_runtime_apis! { impl fp_rpc::EthereumRuntimeRPCApi for Runtime { fn chain_id() -> u64 { - ::ChainId::get() + EVMChainId::get() } fn account_basic(address: H160) -> EVMAccount { From 0402690491269f44a41203de6eeee4cee03f1c2a Mon Sep 17 00:00:00 2001 From: Smith Li Date: Wed, 11 Oct 2023 20:00:44 +0800 Subject: [PATCH 32/35] update web3 version --- Cargo.lock | 2986 ++++++++++++++++++---------------------------------- Cargo.toml | 2 +- 2 files changed, 1046 insertions(+), 1942 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 471bad9d..bde5ea0f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cipher 0.3.0", "cpufeatures", "opaque-debug 0.3.0", @@ -94,7 +94,7 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cipher 0.4.4", "cpufeatures", ] @@ -155,7 +155,7 @@ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ "getrandom 0.2.10", "once_cell", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -164,10 +164,10 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "getrandom 0.2.10", "once_cell", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -200,7 +200,7 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -457,15 +457,6 @@ version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" -[[package]] -name = "arrayvec" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" -dependencies = [ - "nodrop", -] - [[package]] name = "arrayvec" version = "0.5.2" @@ -500,7 +491,7 @@ dependencies = [ "num-traits", "rusticata-macros", "thiserror", - "time 0.3.17", + "time", ] [[package]] @@ -516,7 +507,7 @@ dependencies = [ "num-traits", "rusticata-macros", "thiserror", - "time 0.3.17", + "time", ] [[package]] @@ -585,13 +576,13 @@ dependencies = [ "fp-evm", "frame-support", "impl-trait-for-tuples", - "log 0.4.20", + "log", "orml-traits", "pallet-assets", "pallet-evm", "pallet-evm-precompile-assets-erc20", "pallet-xc-asset-config", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -620,15 +611,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" dependencies = [ "async-lock", - "autocfg 1.1.0", - "cfg-if 1.0.0", + "autocfg", + "cfg-if", "concurrent-queue", "futures-lite", - "log 0.4.20", + "log", "parking", "polling", "rustix 0.37.23", - "slab 0.4.9", + "slab", "socket2 0.4.9", "waker-fn", ] @@ -659,7 +650,7 @@ version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c" dependencies = [ - "futures 0.3.28", + "futures", "pharos", "rustc_version 0.4.0", ] @@ -670,7 +661,7 @@ version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4057f2c32adbb2fc158e22fb38433c8e9bbf76b75a4732c7c0cbaf695fb65568" dependencies = [ - "bytes 1.5.0", + "bytes", "futures-sink", "futures-util", "memchr", @@ -691,7 +682,7 @@ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ "hermit-abi 0.1.19", "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -706,15 +697,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "autocfg" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" -dependencies = [ - "autocfg 1.1.0", -] - [[package]] name = "autocfg" version = "1.1.0" @@ -729,7 +711,7 @@ checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" dependencies = [ "addr2line 0.21.0", "cc", - "cfg-if 1.0.0", + "cfg-if", "libc", "miniz_oxide", "object 0.32.1", @@ -760,25 +742,6 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581" -[[package]] -name = "base64" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "489d6c0ed21b11d038c31b6ceccca973e65d73ba3bd8ecb9a2babf5546164643" -dependencies = [ - "byteorder", - "safemem", -] - -[[package]] -name = "base64" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" -dependencies = [ - "byteorder", -] - [[package]] name = "base64" version = "0.13.1" @@ -818,7 +781,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log 0.4.20", + "log", ] [[package]] @@ -866,12 +829,6 @@ version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" -[[package]] -name = "bitflags" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" - [[package]] name = "bitflags" version = "1.3.2" @@ -884,16 +841,28 @@ version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" +[[package]] +name = "bitvec" +version = "0.20.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7774144344a4faa177370406a7ff5f1da24303817368584c6206c8303eb07848" +dependencies = [ + "funty 1.1.0", + "radium 0.6.2", + "tap", + "wyz 0.2.0", +] + [[package]] name = "bitvec" version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" dependencies = [ - "funty", - "radium", + "funty 2.0.0", + "radium 0.7.0", "tap", - "wyz", + "wyz 0.5.1", ] [[package]] @@ -936,7 +905,7 @@ dependencies = [ "arrayref", "arrayvec 0.7.4", "cc", - "cfg-if 1.0.0", + "cfg-if", "constant_time_eq 0.3.0", ] @@ -958,6 +927,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ + "block-padding 0.2.1", "generic-array 0.14.7", ] @@ -1046,8 +1016,8 @@ version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb5b05133427c07c4776906f673ccf36c21b102c9829c641a5b56bd151d44fd6" dependencies = [ - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -1118,17 +1088,6 @@ version = "1.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -[[package]] -name = "bytes" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -dependencies = [ - "byteorder", - "either", - "iovec", -] - [[package]] name = "bytes" version = "1.5.0" @@ -1241,15 +1200,9 @@ version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03915af431787e6ffdcc74c645077518c6b6e01f80b761e0fbbfa288536311b3" dependencies = [ - "smallvec 1.11.1", + "smallvec", ] -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - [[package]] name = "cfg-if" version = "1.0.0" @@ -1268,7 +1221,7 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cipher 0.3.0", "cpufeatures", "zeroize", @@ -1348,7 +1301,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "56ccb671c5921be8a84686e6212ca184cb1d7c51cadcdbfcbd1cc3f042f5dfb8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -1402,15 +1355,6 @@ version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" -[[package]] -name = "cloudabi" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -dependencies = [ - "bitflags 1.3.2", -] - [[package]] name = "codespan-reporting" version = "0.11.1" @@ -1443,7 +1387,7 @@ version = "0.8.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3db8fba409ce3dc04f7d804074039eb68b960b0829161f8e06c95fea3f122528" dependencies = [ - "bitvec", + "bitvec 1.0.1", "coins-bip32", "hmac 0.12.1", "once_cell", @@ -1496,7 +1440,7 @@ version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f057a694a54f12365049b0958a1685bb52d567f5593b355fbf685838e873d400" dependencies = [ - "crossbeam-utils 0.8.16", + "crossbeam-utils", ] [[package]] @@ -1505,7 +1449,7 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aa72a10d0e914cad6bcad4e7409e68d230c1c2db67896e19a37f758b1fcbdab5" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "hex", "serde", @@ -1566,7 +1510,7 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eeaa953eaad386a53111e47172c2fedba671e5684c8dd601a5f474f4f118710f" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -1601,9 +1545,9 @@ dependencies = [ "cranelift-isle", "gimli 0.27.3", "hashbrown 0.13.2", - "log 0.4.20", + "log", "regalloc2", - "smallvec 1.11.1", + "smallvec", "target-lexicon", ] @@ -1638,8 +1582,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64a25d9d0a0ae3079c463c34115ec59507b4707175454f0eee0891e83e30e82d" dependencies = [ "cranelift-codegen", - "log 0.4.20", - "smallvec 1.11.1", + "log", + "smallvec", "target-lexicon", ] @@ -1670,8 +1614,8 @@ dependencies = [ "cranelift-entity", "cranelift-frontend", "itertools 0.10.5", - "log 0.4.20", - "smallvec 1.11.1", + "log", + "smallvec", "wasmparser", "wasmtime-types", ] @@ -1697,18 +1641,7 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" dependencies = [ - "cfg-if 1.0.0", -] - -[[package]] -name = "crossbeam-deque" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" -dependencies = [ - "crossbeam-epoch 0.8.2", - "crossbeam-utils 0.7.2", - "maybe-uninit", + "cfg-if", ] [[package]] @@ -1717,24 +1650,9 @@ version = "0.8.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" dependencies = [ - "cfg-if 1.0.0", - "crossbeam-epoch 0.9.15", - "crossbeam-utils 0.8.16", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" -dependencies = [ - "autocfg 1.1.0", - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "lazy_static", - "maybe-uninit", - "memoffset 0.5.6", - "scopeguard 1.2.0", + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", ] [[package]] @@ -1743,33 +1661,11 @@ version = "0.9.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7" dependencies = [ - "autocfg 1.1.0", - "cfg-if 1.0.0", - "crossbeam-utils 0.8.16", + "autocfg", + "cfg-if", + "crossbeam-utils", "memoffset 0.9.0", - "scopeguard 1.2.0", -] - -[[package]] -name = "crossbeam-queue" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" -dependencies = [ - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - -[[package]] -name = "crossbeam-utils" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" -dependencies = [ - "autocfg 1.1.0", - "cfg-if 0.1.10", - "lazy_static", + "scopeguard", ] [[package]] @@ -1778,15 +1674,9 @@ version = "0.8.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] -[[package]] -name = "crunchy" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" - [[package]] name = "crunchy" version = "0.2.2" @@ -1898,7 +1788,7 @@ version = "4.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e89b8c6a2e4b1f45971ad09761aafb85514a84744b67a95e32c3cc1352d1f65c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "curve25519-dalek-derive", "digest 0.10.7", @@ -2232,7 +2122,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "dirs-sys-next", ] @@ -2251,7 +2141,7 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "dirs-sys-next", ] @@ -2263,7 +2153,7 @@ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" dependencies = [ "libc", "redox_users", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2286,7 +2176,7 @@ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" dependencies = [ "libc", "redox_users", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -2496,7 +2386,7 @@ version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c533630cf40e9caa44bd91aadc88a75d75a4c3a12b4cfde353cbed41daa1e1f1" dependencies = [ - "log 0.4.20", + "log", ] [[package]] @@ -2505,7 +2395,7 @@ version = "0.8.33" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -2515,10 +2405,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fe81b5c06ecfdbc71dd845216f225f53b62a10cb8a16c946836a3467f701d05b" dependencies = [ "base64 0.21.4", - "bytes 1.5.0", + "bytes", "hex", "k256", - "log 0.4.20", + "log", "rand 0.8.5", "rlp", "serde", @@ -2566,7 +2456,7 @@ checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0" dependencies = [ "humantime", "is-terminal", - "log 0.4.20", + "log", "regex", "termcolor", ] @@ -2613,16 +2503,6 @@ dependencies = [ "libc", ] -[[package]] -name = "error-chain" -version = "0.12.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" -dependencies = [ - "backtrace", - "version_check 0.9.4", -] - [[package]] name = "eth-keystore" version = "0.5.0" @@ -2647,17 +2527,17 @@ dependencies = [ [[package]] name = "ethabi" -version = "6.1.0" +version = "16.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eb362fde43ed0b50b258bb0c72b72b3dccfd29f8de9506295eaf9251c49ca31" +checksum = "a4c98847055d934070b90e806e12d3936b787d0a115068981c1d8dfd5dfef5a5" dependencies = [ - "error-chain", - "ethereum-types 0.4.2", - "rustc-hex 2.1.0", + "ethereum-types 0.12.1", + "hex", "serde", - "serde_derive", "serde_json", - "tiny-keccak 1.5.0", + "sha3 0.9.1", + "thiserror", + "uint", ] [[package]] @@ -2674,20 +2554,20 @@ dependencies = [ "serde_json", "sha3 0.10.8", "thiserror", - "uint 0.9.5", + "uint", ] [[package]] name = "ethbloom" -version = "0.5.3" +version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6294da962646baa738414e8e718d1a1f0360a51d92de89ccbf91870418f5360" +checksum = "bfb684ac8fa8f6c5759f788862bb22ec6fe3cb392f6bfd08e3c64b603661e3f8" dependencies = [ - "crunchy 0.1.6", - "ethereum-types-serialize", - "fixed-hash 0.2.5", - "serde", - "tiny-keccak 1.5.0", + "crunchy", + "fixed-hash 0.7.0", + "impl-rlp", + "impl-serde 0.3.2", + "tiny-keccak", ] [[package]] @@ -2696,13 +2576,13 @@ version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c22d4b5885b6aa2fe5e8b9329fb8d232bf739e434e6b87347c63bdd00c120f60" dependencies = [ - "crunchy 0.2.2", + "crunchy", "fixed-hash 0.8.0", - "impl-codec", + "impl-codec 0.6.0", "impl-rlp", - "impl-serde", + "impl-serde 0.4.0", "scale-info", - "tiny-keccak 2.0.2", + "tiny-keccak", ] [[package]] @@ -2711,11 +2591,11 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a89fb87a9e103f71b903b80b670200b54cc67a07578f070681f1fffb7396fb7" dependencies = [ - "bytes 1.5.0", + "bytes", "ethereum-types 0.14.1", "hash-db 0.15.2", "hash256-std-hasher", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "rlp", "scale-info", "serde", @@ -2725,16 +2605,16 @@ dependencies = [ [[package]] name = "ethereum-types" -version = "0.4.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e742184dc63a01c8ea0637369f8faa27c40f537949908a237f95c05e68d2c96" +checksum = "05136f7057fe789f06e6d41d07b34e6f70d8c86e5693b60f97aaa6553553bdaf" dependencies = [ - "crunchy 0.1.6", - "ethbloom 0.5.3", - "ethereum-types-serialize", - "fixed-hash 0.2.5", - "serde", - "uint 0.4.1", + "ethbloom 0.11.1", + "fixed-hash 0.7.0", + "impl-rlp", + "impl-serde 0.3.2", + "primitive-types 0.10.1", + "uint", ] [[package]] @@ -2745,21 +2625,12 @@ checksum = "02d215cbf040552efcbe99a38372fe80ab9d00268e20012b79fcd0f073edd8ee" dependencies = [ "ethbloom 0.13.0", "fixed-hash 0.8.0", - "impl-codec", + "impl-codec 0.6.0", "impl-rlp", - "impl-serde", - "primitive-types", + "impl-serde 0.4.0", + "primitive-types 0.12.1", "scale-info", - "uint 0.9.5", -] - -[[package]] -name = "ethereum-types-serialize" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1873d77b32bc1891a79dad925f2acbc318ee942b38b9110f9dbc5fbeffcea350" -dependencies = [ - "serde", + "uint", ] [[package]] @@ -2856,7 +2727,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0a17f0708692024db9956b31d7a20163607d2745953f5ae8125ab368ba280ad" dependencies = [ "arrayvec 0.7.4", - "bytes 1.5.0", + "bytes", "cargo_metadata 0.17.0", "chrono", "const-hex", @@ -2875,7 +2746,7 @@ dependencies = [ "syn 2.0.37", "tempfile", "thiserror", - "tiny-keccak 2.0.2", + "tiny-keccak", "unicode-xid", ] @@ -2915,10 +2786,10 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio 1.32.0", + "tokio", "tracing", "tracing-futures", - "url 2.4.1", + "url", ] [[package]] @@ -2930,7 +2801,7 @@ dependencies = [ "async-trait", "auto_impl", "base64 0.21.4", - "bytes 1.5.0", + "bytes", "const-hex", "enr", "ethers-core", @@ -2938,7 +2809,7 @@ dependencies = [ "futures-timer", "futures-util", "hashers", - "http 0.2.9", + "http", "instant", "jsonwebtoken", "once_cell", @@ -2947,11 +2818,11 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio 1.32.0", + "tokio", "tokio-tungstenite", "tracing", "tracing-futures", - "url 2.4.1", + "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -2983,7 +2854,7 @@ version = "2.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "de34e484e7ae3cab99fbfd013d6c5dc7f9013676a4e0e414d8b12e1213e8b3ba" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "const-hex", "dirs", "dunce", @@ -3002,8 +2873,8 @@ dependencies = [ "solang-parser", "svm-rs", "thiserror", - "tiny-keccak 2.0.2", - "tokio 1.32.0", + "tiny-keccak", + "tokio", "tracing", "walkdir", "yansi", @@ -3026,9 +2897,9 @@ dependencies = [ "evm-core", "evm-gasometer", "evm-runtime", - "log 0.4.20", - "parity-scale-codec", - "primitive-types", + "log", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "rlp", "scale-info", "serde", @@ -3040,8 +2911,8 @@ name = "evm-core" version = "0.39.0" source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" dependencies = [ - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "scale-info", "serde", ] @@ -3054,7 +2925,7 @@ dependencies = [ "environmental", "evm-core", "evm-runtime", - "primitive-types", + "primitive-types 0.12.1", ] [[package]] @@ -3065,7 +2936,7 @@ dependencies = [ "auto_impl", "environmental", "evm-core", - "primitive-types", + "primitive-types 0.12.1", "sha3 0.10.8", ] @@ -3075,7 +2946,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e43f2f1833d64e33f15592464d6fdd70f349dda7b1a53088eb83cd94014008c5" dependencies = [ - "futures 0.3.28", + "futures", ] [[package]] @@ -3176,12 +3047,12 @@ dependencies = [ "async-trait", "fp-storage", "kvdb-rocksdb", - "log 0.4.20", + "log", "parity-db", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-db", - "smallvec 1.11.1", + "smallvec", "sp-blockchain", "sp-core", "sp-database", @@ -3197,9 +3068,9 @@ dependencies = [ "fc-storage", "fp-consensus", "fp-rpc", - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", + "log", "parking_lot 0.12.1", "sc-client-api", "sc-utils", @@ -3225,14 +3096,14 @@ dependencies = [ "fp-evm", "fp-rpc", "fp-storage", - "futures 0.3.28", + "futures", "hex", "jsonrpsee", "libsecp256k1", - "log 0.4.20", + "log", "lru 0.8.1", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "prometheus", "rand 0.8.5", "rlp", @@ -3256,7 +3127,7 @@ dependencies = [ "sp-state-machine", "sp-storage", "substrate-prometheus-endpoint", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -3267,7 +3138,7 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "jsonrpsee", - "rustc-hex 2.1.0", + "rustc-hex", "serde", "serde_json", ] @@ -3281,7 +3152,7 @@ dependencies = [ "ethereum-types 0.14.1", "fp-rpc", "fp-storage", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sc-client-api", "sp-api", "sp-blockchain", @@ -3332,7 +3203,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" dependencies = [ "env_logger", - "log 0.4.20", + "log", ] [[package]] @@ -3341,7 +3212,7 @@ version = "0.2.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "redox_syscall 0.3.5", "windows-sys 0.48.0", @@ -3354,24 +3225,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36530797b9bf31cd4ff126dcfee8170f86b00cfdcea3269d73133cc0415945c3" dependencies = [ "either", - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", + "log", "num-traits", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "scale-info", ] [[package]] name = "fixed-hash" -version = "0.2.5" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7afe6ce860afb14422711595a7b26ada9ed7de2f43c0b2ab79d09ee196287273" +checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" dependencies = [ - "heapsize", - "rand 0.4.6", - "rustc-hex 2.1.0", + "byteorder", + "rand 0.8.5", + "rustc-hex", + "static_assertions", ] [[package]] @@ -3382,7 +3254,7 @@ checksum = "835c052cb0c08c1acf6ffd71c022172e18723949c8282f2b9f27efbc51e64534" dependencies = [ "byteorder", "rand 0.8.5", - "rustc-hex 2.1.0", + "rustc-hex", "static_assertions", ] @@ -3448,7 +3320,7 @@ name = "fork-tree" version = "3.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", ] [[package]] @@ -3457,7 +3329,7 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" dependencies = [ - "percent-encoding 2.3.0", + "percent-encoding", ] [[package]] @@ -3466,10 +3338,10 @@ version = "1.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "hex", - "impl-serde", + "impl-serde 0.4.0", "libsecp256k1", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -3485,7 +3357,7 @@ version = "2.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "ethereum", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-core", "sp-runtime", "sp-std 5.0.0", @@ -3511,7 +3383,7 @@ dependencies = [ "fp-evm", "frame-support", "num_enum 0.6.1", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-std 5.0.0", ] @@ -3522,7 +3394,7 @@ source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9. dependencies = [ "evm", "frame-support", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -3538,7 +3410,7 @@ dependencies = [ "ethereum", "ethereum-types 0.14.1", "fp-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-core", @@ -3553,7 +3425,7 @@ version = "1.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "frame-support", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-runtime", @@ -3564,7 +3436,7 @@ name = "fp-storage" version = "2.0.0" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "serde", ] @@ -3583,8 +3455,8 @@ dependencies = [ "frame-support-procedural", "frame-system", "linregress", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "paste", "scale-info", "serde", @@ -3617,10 +3489,10 @@ dependencies = [ "itertools 0.10.5", "lazy_static", "linked-hash-map", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "rand 0.8.5", - "rand_pcg 0.3.1", + "rand_pcg", "sc-block-builder", "sc-cli", "sc-client-api", @@ -3665,7 +3537,7 @@ dependencies = [ "frame-election-provider-solution-type", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-arithmetic", "sp-core", @@ -3681,7 +3553,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -3696,8 +3568,8 @@ version = "15.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ - "cfg-if 1.0.0", - "parity-scale-codec", + "cfg-if", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -3713,13 +3585,13 @@ dependencies = [ "frame-support-procedural", "impl-trait-for-tuples", "k256", - "log 0.4.20", + "log", "once_cell", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "paste", "scale-info", "serde", - "smallvec 1.11.1", + "smallvec", "sp-api", "sp-arithmetic", "sp-core", @@ -3779,10 +3651,10 @@ name = "frame-system" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "frame-support", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -3801,7 +3673,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -3813,7 +3685,7 @@ name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-api", ] @@ -3830,7 +3702,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -3844,26 +3716,10 @@ dependencies = [ ] [[package]] -name = "fuchsia-cprng" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" - -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -dependencies = [ - "bitflags 1.3.2", - "fuchsia-zircon-sys", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" +name = "funty" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7" [[package]] name = "funty" @@ -3871,12 +3727,6 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" -[[package]] -name = "futures" -version = "0.1.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" - [[package]] name = "futures" version = "0.3.28" @@ -3908,16 +3758,6 @@ version = "0.3.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" -[[package]] -name = "futures-cpupool" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" -dependencies = [ - "futures 0.1.31", - "num_cpus", -] - [[package]] name = "futures-executor" version = "0.3.28" @@ -4020,7 +3860,7 @@ dependencies = [ "memchr", "pin-project-lite 0.2.13", "pin-utils", - "slab 0.4.9", + "slab", ] [[package]] @@ -4048,7 +3888,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", - "version_check 0.9.4", + "version_check", "zeroize", ] @@ -4059,7 +3899,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -4068,7 +3908,7 @@ version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "wasi 0.9.0+wasi-snapshot-preview1", ] @@ -4079,7 +3919,7 @@ version = "0.2.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "libc", "wasi 0.11.0+wasi-snapshot-preview1", @@ -4108,12 +3948,12 @@ dependencies = [ "frame-benchmarking", "frame-benchmarking-cli", "frame-system", - "futures 0.3.28", + "futures", "ggxchain-runtime-brooklyn", "ggxchain-runtime-sydney", "hex", "jsonrpsee", - "log 0.4.20", + "log", "mmr-gadget", "mmr-rpc", "nix 0.26.4", @@ -4121,7 +3961,7 @@ dependencies = [ "pallet-balances", "pallet-transaction-payment", "pallet-transaction-payment-rpc", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "polkadot-rpc", "prometheus", "rand 0.8.5", @@ -4161,8 +4001,8 @@ dependencies = [ "substrate-test-utils", "subxt", "tempfile", - "tokio 1.32.0", - "tokio-util", + "tokio", + "tokio-util 0.7.9", "wait-timeout", "web3", ] @@ -4184,7 +4024,7 @@ dependencies = [ "frame-system-rpc-runtime-api", "ibc 0.28.0 (registry+https://github.com/rust-lang/crates.io-index)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "log 0.4.20", + "log", "pallet-assets", "pallet-aura", "pallet-authorship", @@ -4231,7 +4071,7 @@ dependencies = [ "pallet-vesting", "pallet-whitelist", "pallet-xvm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "paste", "prost", "runtime-common", @@ -4272,7 +4112,7 @@ dependencies = [ "frame-system", "frame-system-benchmarking", "frame-system-rpc-runtime-api", - "log 0.4.20", + "log", "pallet-aura", "pallet-authorship", "pallet-balances", @@ -4312,7 +4152,7 @@ dependencies = [ "pallet-vesting", "pallet-whitelist", "pallet-xvm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "paste", "runtime-common", "scale-info", @@ -4387,7 +4227,7 @@ dependencies = [ "aho-corasick", "bstr", "fnv", - "log 0.4.20", + "log", "regex", ] @@ -4425,40 +4265,22 @@ dependencies = [ "subtle", ] -[[package]] -name = "h2" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" -dependencies = [ - "byteorder", - "bytes 0.4.12", - "fnv", - "futures 0.1.31", - "http 0.1.21", - "indexmap 1.9.3", - "log 0.4.20", - "slab 0.4.9", - "string", - "tokio-io", -] - [[package]] name = "h2" version = "0.3.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" dependencies = [ - "bytes 1.5.0", + "bytes", "fnv", "futures-core", "futures-sink", "futures-util", - "http 0.2.9", + "http", "indexmap 1.9.3", - "slab 0.4.9", - "tokio 1.32.0", - "tokio-util", + "slab", + "tokio", + "tokio-util 0.7.9", "tracing", ] @@ -4468,7 +4290,7 @@ version = "4.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c39b3bc2a8f715298032cf5087e58573809374b08160aa7d750582bdb82d2683" dependencies = [ - "log 0.4.20", + "log", "pest", "pest_derive", "serde", @@ -4494,7 +4316,7 @@ version = "0.15.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "92c171d55b98633f4ed3860808f004099b36c1cc29c42cfc53aa8591b21efcf2" dependencies = [ - "crunchy 0.2.2", + "crunchy", ] [[package]] @@ -4531,12 +4353,27 @@ dependencies = [ ] [[package]] -name = "heapsize" -version = "0.4.2" +name = "headers" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270" +dependencies = [ + "base64 0.21.4", + "bytes", + "headers-core", + "http", + "httpdate", + "mime", + "sha1", +] + +[[package]] +name = "headers-core" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1679e6ea370dee694f91f1dc469bf94cf8f52051d147aec3e1f9497c6fc22461" +checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429" dependencies = [ - "winapi 0.3.9", + "http", ] [[package]] @@ -4644,18 +4481,7 @@ checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" dependencies = [ "libc", "match_cfg", - "winapi 0.3.9", -] - -[[package]] -name = "http" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" -dependencies = [ - "bytes 0.4.12", - "fnv", - "itoa 0.4.8", + "winapi", ] [[package]] @@ -4664,21 +4490,9 @@ version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" dependencies = [ - "bytes 1.5.0", + "bytes", "fnv", - "itoa 1.0.9", -] - -[[package]] -name = "http-body" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "http 0.1.21", - "tokio-buf", + "itoa", ] [[package]] @@ -4687,8 +4501,8 @@ version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ - "bytes 1.5.0", - "http 0.2.9", + "bytes", + "http", "pin-project-lite 0.2.13", ] @@ -4716,77 +4530,28 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" -[[package]] -name = "hyper" -version = "0.10.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a0652d9a2609a968c14be1a9ea00bf4b1d64e2e1f53a1b51b6fff3a6e829273" -dependencies = [ - "base64 0.9.3", - "httparse", - "language-tags", - "log 0.3.9", - "mime 0.2.6", - "num_cpus", - "time 0.1.45", - "traitobject", - "typeable", - "unicase", - "url 1.7.2", -] - -[[package]] -name = "hyper" -version = "0.12.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "futures-cpupool", - "h2 0.1.26", - "http 0.1.21", - "http-body 0.1.0", - "httparse", - "iovec", - "itoa 0.4.8", - "log 0.4.20", - "net2", - "rustc_version 0.2.3", - "time 0.1.45", - "tokio 0.1.22", - "tokio-buf", - "tokio-executor", - "tokio-io", - "tokio-reactor", - "tokio-tcp", - "tokio-threadpool", - "tokio-timer 0.2.13", - "want 0.2.0", -] - [[package]] name = "hyper" version = "0.14.27" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" dependencies = [ - "bytes 1.5.0", + "bytes", "futures-channel", "futures-core", "futures-util", - "h2 0.3.21", - "http 0.2.9", - "http-body 0.4.5", + "h2", + "http", + "http-body", "httparse", "httpdate", - "itoa 1.0.9", + "itoa", "pin-project-lite 0.2.13", "socket2 0.4.9", - "tokio 1.32.0", + "tokio", "tower-service", "tracing", - "want 0.3.1", + "want", ] [[package]] @@ -4795,12 +4560,12 @@ version = "0.23.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1788965e61b367cd03a62950836d5cd41560c3577d90e40e0819373194d1661c" dependencies = [ - "http 0.2.9", - "hyper 0.14.27", - "log 0.4.20", + "http", + "hyper", + "log", "rustls 0.20.9", "rustls-native-certs", - "tokio 1.32.0", + "tokio", "tokio-rustls 0.23.4", ] @@ -4811,27 +4576,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" dependencies = [ "futures-util", - "http 0.2.9", - "hyper 0.14.27", - "log 0.4.20", + "http", + "hyper", + "log", "rustls 0.21.7", "rustls-native-certs", - "tokio 1.32.0", + "tokio", "tokio-rustls 0.24.1", "webpki-roots 0.23.1", ] [[package]] name = "hyper-tls" -version = "0.3.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f" +checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "hyper 0.12.36", + "bytes", + "hyper", "native-tls", - "tokio-io", + "tokio", + "tokio-native-tls", ] [[package]] @@ -4863,7 +4628,7 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fda4983dc8f766190402d1d9e8d7c4bb10fd9b3f0b07558045b31a3066e4b25" dependencies = [ - "bytes 1.5.0", + "bytes", "derive_more", "displaydoc", "dyn-clone", @@ -4871,8 +4636,8 @@ dependencies = [ "ibc-proto 0.25.0 (registry+https://github.com/rust-lang/crates.io-index)", "ics23", "num-traits", - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "prost", "safe-regex", "scale-info", @@ -4884,9 +4649,9 @@ dependencies = [ "tendermint", "tendermint-light-client-verifier", "tendermint-proto", - "time 0.3.17", + "time", "tracing", - "uint 0.9.5", + "uint", ] [[package]] @@ -4894,18 +4659,18 @@ name = "ibc" version = "0.28.0" source = "git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3#3f1bd80048b24d12af0cd32d9bb7018e73b01640" dependencies = [ - "bytes 1.5.0", - "cfg-if 1.0.0", + "bytes", + "cfg-if", "derive_more", "displaydoc", "dyn-clone", "erased-serde", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", "ics23", - "log 0.4.20", + "log", "num-traits", - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "prost", "safe-regex", "scale-info", @@ -4917,9 +4682,9 @@ dependencies = [ "tendermint", "tendermint-light-client-verifier", "tendermint-proto", - "time 0.3.17", + "time", "tracing", - "uint 0.9.5", + "uint", ] [[package]] @@ -4930,9 +4695,9 @@ checksum = "0a057472da7f2107be20b1996063db3616cf356167b03f50118fc3f3a8c4c704" dependencies = [ "base64 0.13.1", "borsh", - "bytes 1.5.0", + "bytes", "flex-error", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "prost", "scale-info", "serde", @@ -4947,9 +4712,9 @@ source = "git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc#be899e5 dependencies = [ "base64 0.13.1", "borsh", - "bytes 1.5.0", + "bytes", "flex-error", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "prost", "scale-info", "serde", @@ -4964,7 +4729,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca44b684ce1859cff746ff46f5765ab72e12e3c06f76a8356db8f9a2ecf43f17" dependencies = [ "anyhow", - "bytes 1.5.0", + "bytes", "hex", "prost", "ripemd", @@ -4978,17 +4743,6 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" -[[package]] -name = "idna" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - [[package]] name = "idna" version = "0.2.3" @@ -5017,7 +4771,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cbc0fa01ffc752e9dbc72818cdb072cd028b86be5e09dd04c5a643704fe101a9" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -5029,23 +4783,32 @@ dependencies = [ "async-io", "core-foundation", "fnv", - "futures 0.3.28", + "futures", "if-addrs", "ipnet", - "log 0.4.20", + "log", "rtnetlink", "system-configuration", - "tokio 1.32.0", + "tokio", "windows 0.34.0", ] +[[package]] +name = "impl-codec" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "161ebdfec3c8e3b52bf61c4f3550a1eea4f9579d10dc1b936f3171ebdcd6c443" +dependencies = [ + "parity-scale-codec 2.3.1", +] + [[package]] name = "impl-codec" version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba6a270039626615617f3f36d15fc827041df3b78c439da2cadfa47455a77f2f" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", ] [[package]] @@ -5057,6 +4820,15 @@ dependencies = [ "rlp", ] +[[package]] +name = "impl-serde" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4551f042f3438e64dbd6226b20527fc84a6e1fe65688b58746a2f53623f25f5c" +dependencies = [ + "serde", +] + [[package]] name = "impl-serde" version = "0.4.0" @@ -5089,7 +4861,7 @@ version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ - "autocfg 1.1.0", + "autocfg", "hashbrown 0.12.3", "serde", ] @@ -5125,7 +4897,7 @@ version = "0.1.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -5144,13 +4916,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b" dependencies = [ "async-trait", - "bytes 1.5.0", - "log 0.4.20", + "bytes", + "log", "rand 0.8.5", "rtcp", "rtp", "thiserror", - "tokio 1.32.0", + "tokio", "waitgroup", "webrtc-srtp", "webrtc-util", @@ -5167,15 +4939,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "iovec" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -dependencies = [ - "libc", -] - [[package]] name = "ip_network" version = "0.4.1" @@ -5229,12 +4992,6 @@ dependencies = [ "either", ] -[[package]] -name = "itoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" - [[package]] name = "itoa" version = "1.0.9" @@ -5261,12 +5018,14 @@ dependencies = [ [[package]] name = "jsonrpc-core" -version = "8.0.1" +version = "18.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddf83704f4e79979a424d1082dd2c1e52683058056c9280efa19ac5f6bc9033c" +checksum = "14f7f76aef2d054868398427f6c54943cf3d1caa9a7ec7d0c38d69df97a965eb" dependencies = [ - "futures 0.1.31", - "log 0.3.9", + "futures", + "futures-executor", + "futures-util", + "log", "serde", "serde_derive", "serde_json", @@ -5295,16 +5054,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c8b3815d9f5d5de348e5f162b316dc9cdf4548305ebb15b4eb9328e66cf27d7a" dependencies = [ "futures-util", - "http 0.2.9", + "http", "jsonrpsee-core", "jsonrpsee-types", "pin-project", "rustls-native-certs", "soketto", "thiserror", - "tokio 1.32.0", + "tokio", "tokio-rustls 0.24.1", - "tokio-util", + "tokio-util 0.7.9", "tracing", "webpki-roots 0.25.2", ] @@ -5324,7 +5083,7 @@ dependencies = [ "futures-timer", "futures-util", "globset", - "hyper 0.14.27", + "hyper", "jsonrpsee-types", "parking_lot 0.12.1", "rand 0.8.5", @@ -5333,7 +5092,7 @@ dependencies = [ "serde_json", "soketto", "thiserror", - "tokio 1.32.0", + "tokio", "tracing", ] @@ -5344,7 +5103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7e5f9fabdd5d79344728521bb65e3106b49ec405a78b66fbff073b72b389fa43" dependencies = [ "async-trait", - "hyper 0.14.27", + "hyper", "hyper-rustls 0.24.1", "jsonrpsee-core", "jsonrpsee-types", @@ -5352,7 +5111,7 @@ dependencies = [ "serde", "serde_json", "thiserror", - "tokio 1.32.0", + "tokio", "tracing", ] @@ -5377,16 +5136,16 @@ checksum = "cf4d945a6008c9b03db3354fb3c83ee02d2faa9f2e755ec1dfb69c3551b8f4ba" dependencies = [ "futures-channel", "futures-util", - "http 0.2.9", - "hyper 0.14.27", + "http", + "hyper", "jsonrpsee-core", "jsonrpsee-types", "serde", "serde_json", "soketto", - "tokio 1.32.0", + "tokio", "tokio-stream", - "tokio-util", + "tokio-util 0.7.9", "tower", "tracing", ] @@ -5411,7 +5170,7 @@ version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4e1b3975ed5d73f456478681a417128597acd6a2487855fdb7b4a3d4d195bf5e" dependencies = [ - "http 0.2.9", + "http", "jsonrpsee-client-transport", "jsonrpsee-core", "jsonrpsee-types", @@ -5437,7 +5196,7 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "ecdsa 0.16.8", "elliptic-curve 0.13.5", "once_cell", @@ -5454,23 +5213,13 @@ dependencies = [ "cpufeatures", ] -[[package]] -name = "kernel32-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "kvdb" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e7d770dcb02bf6835887c3a979b5107a04ff4bbde97a5f0928d27404a155add9" dependencies = [ - "smallvec 1.11.1", + "smallvec", ] [[package]] @@ -5494,7 +5243,7 @@ dependencies = [ "parking_lot 0.12.1", "regex", "rocksdb", - "smallvec 1.11.1", + "smallvec", ] [[package]] @@ -5515,7 +5264,7 @@ dependencies = [ "regex-syntax 0.7.5", "string_cache", "term", - "tiny-keccak 2.0.2", + "tiny-keccak", "unicode-xid", ] @@ -5525,12 +5274,6 @@ version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3f35c735096c0293d313e8f2a641627472b83d01b937177fe76e5e2708d31e0d" -[[package]] -name = "language-tags" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" - [[package]] name = "lazy_static" version = "1.4.0" @@ -5558,8 +5301,8 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" dependencies = [ - "cfg-if 1.0.0", - "winapi 0.3.9", + "cfg-if", + "winapi", ] [[package]] @@ -5574,8 +5317,8 @@ version = "0.51.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097" dependencies = [ - "bytes 1.5.0", - "futures 0.3.28", + "bytes", + "futures", "futures-timer", "getrandom 0.2.10", "instant", @@ -5634,11 +5377,11 @@ checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" dependencies = [ "either", "fnv", - "futures 0.3.28", + "futures", "futures-timer", "instant", "libp2p-identity", - "log 0.4.20", + "log", "multiaddr", "multihash 0.17.0", "multistream-select", @@ -5648,7 +5391,7 @@ dependencies = [ "quick-protobuf", "rand 0.8.5", "rw-stream-sink", - "smallvec 1.11.1", + "smallvec", "thiserror", "unsigned-varint", "void", @@ -5660,11 +5403,11 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554" dependencies = [ - "futures 0.3.28", + "futures", "libp2p-core", - "log 0.4.20", + "log", "parking_lot 0.12.1", - "smallvec 1.11.1", + "smallvec", "trust-dns-resolver", ] @@ -5676,16 +5419,16 @@ checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c" dependencies = [ "asynchronous-codec", "either", - "futures 0.3.28", + "futures", "futures-timer", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log 0.4.20", + "log", "lru 0.10.1", "quick-protobuf", "quick-protobuf-codec", - "smallvec 1.11.1", + "smallvec", "thiserror", "void", ] @@ -5698,7 +5441,7 @@ checksum = "276bb57e7af15d8f100d3c11cbdd32c6752b7eef4ba7a18ecf464972c07abcce" dependencies = [ "bs58 0.4.0", "ed25519-dalek 2.0.0", - "log 0.4.20", + "log", "multiaddr", "multihash 0.17.0", "quick-protobuf", @@ -5716,22 +5459,22 @@ checksum = "39d5ef876a2b2323d63c258e63c2f8e36f205fe5a11f0b3095d59635650790ff" dependencies = [ "arrayvec 0.7.4", "asynchronous-codec", - "bytes 1.5.0", + "bytes", "either", "fnv", - "futures 0.3.28", + "futures", "futures-timer", "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log 0.4.20", + "log", "quick-protobuf", "rand 0.8.5", "sha2 0.10.8", - "smallvec 1.11.1", + "smallvec", "thiserror", - "uint 0.9.5", + "uint", "unsigned-varint", "void", ] @@ -5743,16 +5486,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b" dependencies = [ "data-encoding", - "futures 0.3.28", + "futures", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log 0.4.20", + "log", "rand 0.8.5", - "smallvec 1.11.1", + "smallvec", "socket2 0.4.9", - "tokio 1.32.0", + "tokio", "trust-dns-proto", "void", ] @@ -5777,12 +5520,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e" dependencies = [ - "bytes 1.5.0", + "bytes", "curve25519-dalek 3.2.0", - "futures 0.3.28", + "futures", "libp2p-core", "libp2p-identity", - "log 0.4.20", + "log", "once_cell", "quick-protobuf", "rand 0.8.5", @@ -5801,12 +5544,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202" dependencies = [ "either", - "futures 0.3.28", + "futures", "futures-timer", "instant", "libp2p-core", "libp2p-swarm", - "log 0.4.20", + "log", "rand 0.8.5", "void", ] @@ -5817,20 +5560,20 @@ version = "0.7.0-alpha.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735" dependencies = [ - "bytes 1.5.0", - "futures 0.3.28", + "bytes", + "futures", "futures-timer", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-tls", - "log 0.4.20", + "log", "parking_lot 0.12.1", "quinn-proto", "rand 0.8.5", "rustls 0.20.9", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -5840,13 +5583,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5" dependencies = [ "async-trait", - "futures 0.3.28", + "futures", "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm", "rand 0.8.5", - "smallvec 1.11.1", + "smallvec", ] [[package]] @@ -5857,16 +5600,16 @@ checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296" dependencies = [ "either", "fnv", - "futures 0.3.28", + "futures", "futures-timer", "instant", "libp2p-core", "libp2p-identity", "libp2p-swarm-derive", - "log 0.4.20", + "log", "rand 0.8.5", - "smallvec 1.11.1", - "tokio 1.32.0", + "smallvec", + "tokio", "void", ] @@ -5887,14 +5630,14 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf" dependencies = [ - "futures 0.3.28", + "futures", "futures-timer", "if-watch", "libc", "libp2p-core", - "log 0.4.20", + "log", "socket2 0.4.9", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -5903,7 +5646,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" dependencies = [ - "futures 0.3.28", + "futures", "futures-rustls", "libp2p-core", "libp2p-identity", @@ -5922,7 +5665,7 @@ version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43" dependencies = [ - "futures 0.3.28", + "futures", "js-sys", "libp2p-core", "parity-send-wrapper", @@ -5938,15 +5681,15 @@ checksum = "dba48592edbc2f60b4bc7c10d65445b0c3964c07df26fdf493b6880d33be36f8" dependencies = [ "async-trait", "asynchronous-codec", - "bytes 1.5.0", - "futures 0.3.28", + "bytes", + "futures", "futures-timer", "hex", "if-watch", "libp2p-core", "libp2p-identity", "libp2p-noise", - "log 0.4.20", + "log", "multihash 0.17.0", "quick-protobuf", "quick-protobuf-codec", @@ -5956,8 +5699,8 @@ dependencies = [ "stun", "thiserror", "tinytemplate", - "tokio 1.32.0", - "tokio-util", + "tokio", + "tokio-util 0.7.9", "webrtc", ] @@ -5968,15 +5711,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f" dependencies = [ "either", - "futures 0.3.28", + "futures", "futures-rustls", "libp2p-core", - "log 0.4.20", + "log", "parking_lot 0.12.1", "quicksink", "rw-stream-sink", "soketto", - "url 2.4.1", + "url", "webpki-roots 0.22.6", ] @@ -5986,9 +5729,9 @@ version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda" dependencies = [ - "futures 0.3.28", + "futures", "libp2p-core", - "log 0.4.20", + "log", "thiserror", "yamux", ] @@ -6033,7 +5776,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5be9b9bb642d8522a44d533eab56c16c738301965504753b03ad1de3425d5451" dependencies = [ - "crunchy 0.2.2", + "crunchy", "digest 0.9.0", "subtle", ] @@ -6120,40 +5863,12 @@ checksum = "1a9bad9f94746442c783ca431b22403b519cd7fbeed0533fdd6328b2f2212128" [[package]] name = "lock_api" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" -dependencies = [ - "owning_ref", - "scopeguard 0.3.3", -] - -[[package]] -name = "lock_api" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" -dependencies = [ - "scopeguard 1.2.0", -] - -[[package]] -name = "lock_api" -version = "0.4.10" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" dependencies = [ - "autocfg 1.1.0", - "scopeguard 1.2.0", -] - -[[package]] -name = "log" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" -dependencies = [ - "log 0.4.20", + "autocfg", + "scopeguard", ] [[package]] @@ -6245,23 +5960,17 @@ version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2" dependencies = [ - "autocfg 1.1.0", + "autocfg", "rawpointer", ] -[[package]] -name = "maybe-uninit" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" - [[package]] name = "md-5" version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "digest 0.10.7", ] @@ -6289,22 +5998,13 @@ dependencies = [ "libc", ] -[[package]] -name = "memoffset" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" -dependencies = [ - "autocfg 1.1.0", -] - [[package]] name = "memoffset" version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -6313,7 +6013,7 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -6322,7 +6022,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -6331,7 +6031,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -6361,15 +6061,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "mime" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba626b8a6de5da682e1caa06bdb42a335aee5a84db8e5046a3e8ab17ba0a3ae0" -dependencies = [ - "log 0.3.9", -] - [[package]] name = "mime" version = "0.3.17" @@ -6391,25 +6082,6 @@ dependencies = [ "adler", ] -[[package]] -name = "mio" -version = "0.6.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" -dependencies = [ - "cfg-if 0.1.10", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log 0.4.20", - "miow", - "net2", - "slab 0.4.9", - "winapi 0.2.8", -] - [[package]] name = "mio" version = "0.8.8" @@ -6421,37 +6093,14 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "mio-uds" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" -dependencies = [ - "iovec", - "libc", - "mio 0.6.23", -] - -[[package]] -name = "miow" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", -] - [[package]] name = "mmr-gadget" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", - "log 0.4.20", - "parity-scale-codec", + "futures", + "log", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-offchain", "sp-api", @@ -6470,7 +6119,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "anyhow", "jsonrpsee", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "serde", "sp-api", "sp-blockchain", @@ -6485,7 +6134,7 @@ version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "downcast", "fragile", "lazy_static", @@ -6500,7 +6149,7 @@ version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "proc-macro2", "quote", "syn 1.0.109", @@ -6515,14 +6164,14 @@ dependencies = [ "arrayref", "byteorder", "data-encoding", - "log 0.4.20", + "log", "multibase", "multihash 0.17.0", - "percent-encoding 2.3.0", + "percent-encoding", "serde", "static_assertions", "unsigned-varint", - "url 2.4.1", + "url", ] [[package]] @@ -6592,11 +6241,11 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a" dependencies = [ - "bytes 1.5.0", - "futures 0.3.28", - "log 0.4.20", + "bytes", + "futures", + "log", "pin-project", - "smallvec 1.11.1", + "smallvec", "unsigned-varint", ] @@ -6644,7 +6293,7 @@ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" dependencies = [ "lazy_static", "libc", - "log 0.4.20", + "log", "openssl", "openssl-probe", "openssl-sys", @@ -6654,17 +6303,6 @@ dependencies = [ "tempfile", ] -[[package]] -name = "net2" -version = "0.2.39" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac" -dependencies = [ - "cfg-if 0.1.10", - "libc", - "winapi 0.3.9", -] - [[package]] name = "netlink-packet-core" version = "0.4.2" @@ -6709,13 +6347,13 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65b4b14489ab424703c092062176d52ba55485a89c076b4f9db05092b7223aa6" dependencies = [ - "bytes 1.5.0", - "futures 0.3.28", - "log 0.4.20", + "bytes", + "futures", + "log", "netlink-packet-core", "netlink-sys", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -6724,11 +6362,11 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6471bf08e7ac0135876a9581bf3217ef0333c191c128d34878079f42ee150411" dependencies = [ - "bytes 1.5.0", - "futures 0.3.28", + "bytes", + "futures", "libc", - "log 0.4.20", - "tokio 1.32.0", + "log", + "tokio", ] [[package]] @@ -6744,7 +6382,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ "bitflags 1.3.2", - "cfg-if 1.0.0", + "cfg-if", "libc", "memoffset 0.6.5", ] @@ -6756,18 +6394,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "598beaf3cc6fdd9a5dfb1630c2800c7acd31df7aaf0f565796fba2b53ca1af1b" dependencies = [ "bitflags 1.3.2", - "cfg-if 1.0.0", + "cfg-if", "libc", "memoffset 0.7.1", "pin-utils", ] -[[package]] -name = "nodrop" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" - [[package]] name = "nohash-hasher" version = "0.2.0" @@ -6810,7 +6442,7 @@ version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" dependencies = [ - "autocfg 1.1.0", + "autocfg", "num-integer", "num-traits", "rand 0.8.5", @@ -6843,7 +6475,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3" dependencies = [ "arrayvec 0.7.4", - "itoa 1.0.9", + "itoa", ] [[package]] @@ -6852,7 +6484,7 @@ version = "0.1.45" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" dependencies = [ - "autocfg 1.1.0", + "autocfg", "num-traits", ] @@ -6862,7 +6494,7 @@ version = "0.1.43" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" dependencies = [ - "autocfg 1.1.0", + "autocfg", "num-integer", "num-traits", ] @@ -6873,7 +6505,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0" dependencies = [ - "autocfg 1.1.0", + "autocfg", "num-bigint", "num-integer", "num-traits", @@ -6885,7 +6517,7 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" dependencies = [ - "autocfg 1.1.0", + "autocfg", "libm", ] @@ -7027,7 +6659,7 @@ checksum = "786393f80485445794f6043fd3138854dd109cc6c4bd1a6383db304c9ce9b9ce" dependencies = [ "arrayvec 0.7.4", "auto_impl", - "bytes 1.5.0", + "bytes", "ethereum-types 0.14.1", "open-fastrlp-derive", ] @@ -7038,7 +6670,7 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "003b2be5c6c53c1cfeb0a238b8a1c3915cd410feb684457a36c10038f764bb1c" dependencies = [ - "bytes 1.5.0", + "bytes", "proc-macro2", "quote", "syn 1.0.109", @@ -7051,7 +6683,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c" dependencies = [ "bitflags 2.4.0", - "cfg-if 1.0.0", + "cfg-if", "foreign-types", "libc", "once_cell", @@ -7103,7 +6735,7 @@ dependencies = [ "impl-trait-for-tuples", "num-traits", "orml-utilities", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -7119,7 +6751,7 @@ version = "0.4.1-dev" source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v0.9.43#28a2e6f0df9540d91db4018c7ecebb8bfc217a2a" dependencies = [ "frame-support", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-io", @@ -7127,15 +6759,6 @@ dependencies = [ "sp-std 5.0.0", ] -[[package]] -name = "owning_ref" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ff55baddef9e4ad00f88b6c743a2a8062d4c6ade126c2a528644b8e444d52ce" -dependencies = [ - "stable_deref_trait", -] - [[package]] name = "p256" version = "0.11.1" @@ -7166,7 +6789,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -7181,7 +6804,7 @@ dependencies = [ "frame-support", "frame-system", "pallet-timestamp", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-application-crypto", "sp-consensus-aura", @@ -7197,7 +6820,7 @@ dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -7211,8 +6834,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -7226,7 +6849,7 @@ dependencies = [ "fp-evm", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -7241,7 +6864,7 @@ dependencies = [ "frame-system", "pallet-authorship", "pallet-session", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-consensus-beefy", @@ -7260,11 +6883,11 @@ dependencies = [ "binary-merkle-tree", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-beefy", "pallet-mmr", "pallet-session", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-api", @@ -7283,9 +6906,9 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-treasury", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -7301,11 +6924,11 @@ dependencies = [ "astar-primitives", "frame-support", "frame-system", - "log 0.4.20", + "log", "num-traits", "pallet-contracts", "pallet-contracts-primitives", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -7324,14 +6947,14 @@ dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", - "log 0.4.20", + "log", "pallet-contracts-primitives", "pallet-contracts-proc-macro", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "rand 0.8.5", "scale-info", "serde", - "smallvec 1.11.1", + "smallvec", "sp-api", "sp-core", "sp-io", @@ -7348,7 +6971,7 @@ version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "bitflags 1.3.2", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -7374,7 +6997,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-io", @@ -7391,7 +7014,7 @@ dependencies = [ "fp-evm", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-inherents", @@ -7407,9 +7030,9 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-election-provider-support-benchmarking", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "rand 0.8.5", "scale-info", "sp-arithmetic", @@ -7429,7 +7052,7 @@ dependencies = [ "frame-benchmarking", "frame-election-provider-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-npos-elections", "sp-runtime", ] @@ -7450,7 +7073,7 @@ dependencies = [ "frame-support", "frame-system", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -7470,7 +7093,7 @@ dependencies = [ "frame-system", "hex", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -7490,8 +7113,8 @@ dependencies = [ "frame-system", "hex-literal 0.4.1", "impl-trait-for-tuples", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "rlp", "scale-info", "sp-core", @@ -7507,7 +7130,7 @@ source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9. dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", ] @@ -7519,12 +7142,12 @@ dependencies = [ "fp-evm", "frame-support", "frame-system", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-assets", "pallet-balances", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "slices", "sp-core", @@ -7579,12 +7202,12 @@ dependencies = [ "frame-system", "hex-literal 0.3.4", "libsecp256k1", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-evm", "pallet-session", "pallet-timestamp", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "serde", "sha3 0.8.2", @@ -7601,7 +7224,7 @@ version = "2.0.0-dev" source = "git+https://github.com/AstarNetwork/frontier.git?branch=polkadot-v0.9.43#46cd85967849be241dac2bb72f561b942a463729" dependencies = [ "fp-evm", - "tiny-keccak 2.0.2", + "tiny-keccak", ] [[package]] @@ -7620,10 +7243,10 @@ version = "1.2.1" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "fp-evm", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "sp-core", "sp-io", @@ -7637,10 +7260,10 @@ source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb dependencies = [ "assert_matches", "fp-evm", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "sp-core", "sp-io", @@ -7657,10 +7280,10 @@ dependencies = [ "frame-support", "frame-system", "hex", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "sp-core", "sp-io", @@ -7687,13 +7310,13 @@ dependencies = [ "frame-system", "hex-literal 0.3.4", "libsecp256k1", - "log 0.4.20", + "log", "num-bigint", "num_enum 0.5.11", "pallet-balances", "pallet-evm", "pallet-timestamp", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils", "serde", "sha3 0.8.2", @@ -7712,10 +7335,10 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-authorship", "pallet-session", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-application-crypto", "sp-consensus-grandpa", @@ -7736,7 +7359,7 @@ dependencies = [ "frame-support", "frame-system", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -7753,10 +7376,10 @@ dependencies = [ "frame-system", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "log 0.4.20", + "log", "pallet-ibc-utils", "pallet-timestamp", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "serde_json", @@ -7776,7 +7399,7 @@ dependencies = [ "frame-support", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -7793,10 +7416,10 @@ dependencies = [ "hex", "ibc 0.28.0 (git+https://github.com/octopus-network/ibc-rs.git?branch=icf-m3)", "ibc-proto 0.25.0 (git+https://github.com/octopus-network/ibc-proto-rs?branch=ibc)", - "log 0.4.20", + "log", "pallet-ibc-utils", - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "scale-info", "sha2 0.10.8", "sp-io", @@ -7814,7 +7437,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -7829,9 +7452,9 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-authorship", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-application-crypto", "sp-core", @@ -7849,7 +7472,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -7865,7 +7488,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "safe-mix", "scale-info", "sp-runtime", @@ -7880,7 +7503,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -7897,8 +7520,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -7912,9 +7535,9 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-balances", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-runtime", @@ -7930,8 +7553,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -7947,7 +7570,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -7962,8 +7585,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-arithmetic", "sp-core", @@ -7980,8 +7603,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-arithmetic", @@ -7998,8 +7621,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -8015,9 +7638,9 @@ dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", - "log 0.4.20", + "log", "pallet-timestamp", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-io", @@ -8035,7 +7658,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "rand_chacha 0.2.2", "scale-info", "sp-runtime", @@ -8051,10 +7674,10 @@ dependencies = [ "frame-election-provider-support", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-authorship", "pallet-session", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-application-crypto", @@ -8072,7 +7695,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-io", "sp-runtime", @@ -8087,8 +7710,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-inherents", "sp-io", @@ -8104,7 +7727,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -8120,7 +7743,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-api", "sp-blockchain", "sp-core", @@ -8135,7 +7758,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "pallet-transaction-payment", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-api", "sp-runtime", "sp-weights", @@ -8151,7 +7774,7 @@ dependencies = [ "frame-system", "impl-trait-for-tuples", "pallet-balances", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-runtime", @@ -8166,8 +7789,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -8181,7 +7804,7 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-runtime", @@ -8196,8 +7819,8 @@ dependencies = [ "frame-benchmarking", "frame-support", "frame-system", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-io", @@ -8216,11 +7839,11 @@ dependencies = [ "fp-evm", "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-contracts", "pallet-contracts-primitives", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -8239,7 +7862,7 @@ dependencies = [ "fs2", "hex", "libc", - "log 0.4.20", + "log", "lz4", "memmap2", "parking_lot 0.12.1", @@ -8248,6 +7871,20 @@ dependencies = [ "snap", ] +[[package]] +name = "parity-scale-codec" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "373b1a4c1338d9cd3d1fa53b3a11bdab5ab6bd80a20f7f7becd76953ae2be909" +dependencies = [ + "arrayvec 0.7.4", + "bitvec 0.20.4", + "byte-slice-cast", + "impl-trait-for-tuples", + "parity-scale-codec-derive 2.3.1", + "serde", +] + [[package]] name = "parity-scale-codec" version = "3.6.5" @@ -8255,14 +7892,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0dec8a8073036902368c2cdc0387e85ff9a37054d7e7c98e592145e0c92cd4fb" dependencies = [ "arrayvec 0.7.4", - "bitvec", + "bitvec 1.0.1", "byte-slice-cast", - "bytes 1.5.0", + "bytes", "impl-trait-for-tuples", - "parity-scale-codec-derive", + "parity-scale-codec-derive 3.6.5", "serde", ] +[[package]] +name = "parity-scale-codec-derive" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1557010476e0595c9b568d16dcfb81b93cdeb157612726f5170d31aa707bed27" +dependencies = [ + "proc-macro-crate 1.1.3", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "parity-scale-codec-derive" version = "3.6.5" @@ -8293,27 +7942,6 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" -[[package]] -name = "parking_lot" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab41b4aed082705d1056416ae4468b6ea99d52599ecf3169b00088d43113e337" -dependencies = [ - "lock_api 0.1.5", - "parking_lot_core 0.4.0", -] - -[[package]] -name = "parking_lot" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -dependencies = [ - "lock_api 0.3.4", - "parking_lot_core 0.6.3", - "rustc_version 0.2.3", -] - [[package]] name = "parking_lot" version = "0.11.2" @@ -8321,7 +7949,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" dependencies = [ "instant", - "lock_api 0.4.10", + "lock_api", "parking_lot_core 0.8.6", ] @@ -8331,50 +7959,22 @@ version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ - "lock_api 0.4.10", + "lock_api", "parking_lot_core 0.9.8", ] -[[package]] -name = "parking_lot_core" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94c8c7923936b28d546dfd14d4472eaf34c99b14e1c973a32b3e6d4eb04298c9" -dependencies = [ - "libc", - "rand 0.6.5", - "rustc_version 0.2.3", - "smallvec 0.6.14", - "winapi 0.3.9", -] - -[[package]] -name = "parking_lot_core" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a" -dependencies = [ - "cfg-if 0.1.10", - "cloudabi", - "libc", - "redox_syscall 0.1.57", - "rustc_version 0.2.3", - "smallvec 0.6.14", - "winapi 0.3.9", -] - [[package]] name = "parking_lot_core" version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "instant", "libc", "redox_syscall 0.2.16", - "smallvec 1.11.1", - "winapi 0.3.9", + "smallvec", + "winapi", ] [[package]] @@ -8383,10 +7983,10 @@ version = "0.9.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "redox_syscall 0.3.5", - "smallvec 1.11.1", + "smallvec", "windows-targets 0.48.5", ] @@ -8474,12 +8074,6 @@ dependencies = [ "base64ct", ] -[[package]] -name = "percent-encoding" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" - [[package]] name = "percent-encoding" version = "2.3.0" @@ -8547,7 +8141,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414" dependencies = [ - "futures 0.3.28", + "futures", "rustc_version 0.4.0", ] @@ -8683,7 +8277,7 @@ name = "polkadot-core-primitives" version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -8698,7 +8292,7 @@ dependencies = [ "bounded-collections", "derive_more", "frame-support", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "polkadot-core-primitives", "scale-info", "serde", @@ -8712,9 +8306,9 @@ name = "polkadot-primitives" version = "0.9.43" source = "git+https://github.com/paritytech/polkadot?branch=release-v0.9.43#ba42b9ce51d25bdaf52d2c61e0763a6e3da50d25" dependencies = [ - "bitvec", + "bitvec 1.0.1", "hex-literal 0.4.1", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "polkadot-core-primitives", "polkadot-parachain", "scale-info", @@ -8771,12 +8365,12 @@ version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" dependencies = [ - "autocfg 1.1.0", + "autocfg", "bitflags 1.3.2", - "cfg-if 1.0.0", + "cfg-if", "concurrent-queue", "libc", - "log 0.4.20", + "log", "pin-project-lite 0.2.13", "windows-sys 0.48.0", ] @@ -8798,7 +8392,7 @@ version = "0.5.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "opaque-debug 0.3.0", "universal-hash 0.4.1", @@ -8810,7 +8404,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "opaque-debug 0.3.0", "universal-hash 0.5.1", @@ -8834,10 +8428,10 @@ dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", - "log 0.4.20", + "log", "num_enum 0.5.11", "pallet-evm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "precompile-utils-macro", "sha3 0.10.8", "sp-core", @@ -8927,6 +8521,19 @@ dependencies = [ "syn 2.0.37", ] +[[package]] +name = "primitive-types" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05e4722c697a58a99d5d06a08c30821d7c082a4632198de1eaa5a6c22ef42373" +dependencies = [ + "fixed-hash 0.7.0", + "impl-codec 0.5.1", + "impl-rlp", + "impl-serde 0.3.2", + "uint", +] + [[package]] name = "primitive-types" version = "0.12.1" @@ -8934,11 +8541,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" dependencies = [ "fixed-hash 0.8.0", - "impl-codec", + "impl-codec 0.6.0", "impl-rlp", - "impl-serde", + "impl-serde 0.4.0", "scale-info", - "uint 0.9.5", + "uint", ] [[package]] @@ -8970,7 +8577,7 @@ dependencies = [ "proc-macro2", "quote", "syn 1.0.109", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -8981,7 +8588,7 @@ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" dependencies = [ "proc-macro2", "quote", - "version_check 0.9.4", + "version_check", ] [[package]] @@ -9010,7 +8617,7 @@ version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "449811d15fbdf5ceb5c1144416066429cf82316e2ec8ce0c1f6f8a02e7bbcf8c" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "fnv", "lazy_static", "memchr", @@ -9025,7 +8632,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" dependencies = [ "dtoa", - "itoa 1.0.9", + "itoa", "parking_lot 0.12.1", "prometheus-client-derive-encode", ] @@ -9054,7 +8661,7 @@ dependencies = [ "num-traits", "rand 0.8.5", "rand_chacha 0.3.1", - "rand_xorshift 0.3.0", + "rand_xorshift", "regex-syntax 0.6.29", "rusty-fork", "tempfile", @@ -9067,7 +8674,7 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" dependencies = [ - "bytes 1.5.0", + "bytes", "prost-derive", ] @@ -9077,11 +8684,11 @@ version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" dependencies = [ - "bytes 1.5.0", + "bytes", "heck", "itertools 0.10.5", "lazy_static", - "log 0.4.20", + "log", "multimap", "petgraph", "prettyplease 0.1.25", @@ -9146,7 +8753,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b" dependencies = [ "asynchronous-codec", - "bytes 1.5.0", + "bytes", "quick-protobuf", "thiserror", "unsigned-varint", @@ -9169,12 +8776,12 @@ version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c956be1b23f4261676aed05a0046e204e8a6836e50203902683a718af0797989" dependencies = [ - "bytes 1.5.0", + "bytes", "rand 0.8.5", "ring", "rustc-hash", "rustls 0.20.9", - "slab 0.4.9", + "slab", "thiserror", "tinyvec", "tracing", @@ -9192,54 +8799,15 @@ dependencies = [ [[package]] name = "radium" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" - -[[package]] -name = "rand" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" -dependencies = [ - "fuchsia-cprng", - "libc", - "rand_core 0.3.1", - "rdrand", - "winapi 0.3.9", -] - -[[package]] -name = "rand" -version = "0.5.6" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" -dependencies = [ - "cloudabi", - "fuchsia-cprng", - "libc", - "rand_core 0.3.1", - "winapi 0.3.9", -] +checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb" [[package]] -name = "rand" -version = "0.6.5" +name = "radium" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -dependencies = [ - "autocfg 0.1.8", - "libc", - "rand_chacha 0.1.1", - "rand_core 0.4.2", - "rand_hc 0.1.0", - "rand_isaac", - "rand_jitter", - "rand_os", - "rand_pcg 0.1.2", - "rand_xorshift 0.1.1", - "winapi 0.3.9", -] +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rand" @@ -9251,7 +8819,7 @@ dependencies = [ "libc", "rand_chacha 0.2.2", "rand_core 0.5.1", - "rand_hc 0.2.0", + "rand_hc", ] [[package]] @@ -9265,16 +8833,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "rand_chacha" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.3.1", -] - [[package]] name = "rand_chacha" version = "0.2.2" @@ -9295,21 +8853,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "rand_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -dependencies = [ - "rand_core 0.4.2", -] - -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - [[package]] name = "rand_core" version = "0.5.1" @@ -9328,15 +8871,6 @@ dependencies = [ "getrandom 0.2.10", ] -[[package]] -name = "rand_hc" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -dependencies = [ - "rand_core 0.3.1", -] - [[package]] name = "rand_hc" version = "0.2.0" @@ -9346,50 +8880,6 @@ dependencies = [ "rand_core 0.5.1", ] -[[package]] -name = "rand_isaac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rand_jitter" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -dependencies = [ - "libc", - "rand_core 0.4.2", - "winapi 0.3.9", -] - -[[package]] -name = "rand_os" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -dependencies = [ - "cloudabi", - "fuchsia-cprng", - "libc", - "rand_core 0.4.2", - "rdrand", - "winapi 0.3.9", -] - -[[package]] -name = "rand_pcg" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.4.2", -] - [[package]] name = "rand_pcg" version = "0.3.1" @@ -9399,15 +8889,6 @@ dependencies = [ "rand_core 0.6.4", ] -[[package]] -name = "rand_xorshift" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -dependencies = [ - "rand_core 0.3.1", -] - [[package]] name = "rand_xorshift" version = "0.3.0" @@ -9439,8 +8920,8 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed" dependencies = [ - "crossbeam-deque 0.8.3", - "crossbeam-utils 0.8.16", + "crossbeam-deque", + "crossbeam-utils", ] [[package]] @@ -9451,7 +8932,7 @@ checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd" dependencies = [ "pem", "ring", - "time 0.3.17", + "time", "x509-parser 0.13.2", "yasna", ] @@ -9464,25 +8945,10 @@ checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" dependencies = [ "pem", "ring", - "time 0.3.17", + "time", "yasna", ] -[[package]] -name = "rdrand" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "redox_syscall" -version = "0.1.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" - [[package]] name = "redox_syscall" version = "0.2.16" @@ -9539,9 +9005,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80535183cae11b149d618fbd3c37e38d7cda589d82d7769e196ca9a9042d7621" dependencies = [ "fxhash", - "log 0.4.20", + "log", "slice-group-by", - "smallvec 1.11.1", + "smallvec", ] [[package]] @@ -9595,31 +9061,34 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1" dependencies = [ "base64 0.21.4", - "bytes 1.5.0", + "bytes", "encoding_rs", "futures-core", "futures-util", - "h2 0.3.21", - "http 0.2.9", - "http-body 0.4.5", - "hyper 0.14.27", + "h2", + "http", + "http-body", + "hyper", "hyper-rustls 0.24.1", + "hyper-tls", "ipnet", "js-sys", - "log 0.4.20", - "mime 0.3.17", + "log", + "mime", + "native-tls", "once_cell", - "percent-encoding 2.3.0", + "percent-encoding", "pin-project-lite 0.2.13", "rustls 0.21.7", "rustls-pemfile", "serde", "serde_json", "serde_urlencoded", - "tokio 1.32.0", + "tokio", + "tokio-native-tls", "tokio-rustls 0.24.1", "tower-service", - "url 2.4.1", + "url", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", @@ -9670,7 +9139,7 @@ dependencies = [ "spin 0.5.2", "untrusted", "web-sys", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -9688,9 +9157,9 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb919243f34364b6bd2fc10ef797edbfa75f33c252e7998527479c6d6b47e1ec" dependencies = [ - "bytes 1.5.0", + "bytes", "rlp-derive", - "rustc-hex 2.1.0", + "rustc-hex", ] [[package]] @@ -9722,7 +9191,7 @@ checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322" dependencies = [ "libc", "rtoolbox", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -9731,7 +9200,7 @@ version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691" dependencies = [ - "bytes 1.5.0", + "bytes", "thiserror", "webrtc-util", ] @@ -9742,13 +9211,13 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "322c53fd76a18698f1c27381d58091de3a043d356aa5bd0d510608b565f469a0" dependencies = [ - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "netlink-packet-route", "netlink-proto", "nix 0.24.3", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -9758,7 +9227,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -9768,7 +9237,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80" dependencies = [ "async-trait", - "bytes 1.5.0", + "bytes", "rand 0.8.5", "serde", "thiserror", @@ -9781,7 +9250,7 @@ version = "0.1.2" dependencies = [ "frame-support", "frame-system", - "log 0.4.20", + "log", "pallet-authorship", "pallet-balances", "pallet-contracts", @@ -9801,7 +9270,7 @@ dependencies = [ "pallet-session", "pallet-staking", "pallet-xvm", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "proptest", "scale-info", "serde", @@ -9824,12 +9293,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" -[[package]] -name = "rustc-hex" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ceb8ce7a5e520de349e1fa172baeba4a9e8d5ef06c47471863530bc4972ee1e" - [[package]] name = "rustc-hex" version = "2.1.0" @@ -9911,7 +9374,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" dependencies = [ "base64 0.13.1", - "log 0.4.20", + "log", "ring", "sct 0.6.1", "webpki 0.21.4", @@ -9923,7 +9386,7 @@ version = "0.20.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" dependencies = [ - "log 0.4.20", + "log", "ring", "sct 0.7.0", "webpki 0.22.1", @@ -9935,7 +9398,7 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" dependencies = [ - "log 0.4.20", + "log", "ring", "rustls-webpki 0.101.6", "sct 0.7.0", @@ -10006,7 +9469,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04" dependencies = [ - "futures 0.3.28", + "futures", "pin-project", "static_assertions", ] @@ -10082,12 +9545,6 @@ dependencies = [ "bytemuck", ] -[[package]] -name = "safemem" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072" - [[package]] name = "salsa20" version = "0.10.2" @@ -10111,7 +9568,7 @@ name = "sc-allocator" version = "4.1.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log 0.4.20", + "log", "sp-core", "sp-wasm-interface", "thiserror", @@ -10122,10 +9579,10 @@ name = "sc-basic-authorship" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-block-builder", "sc-client-api", "sc-proposer-metrics", @@ -10145,7 +9602,7 @@ name = "sc-block-builder" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sc-client-api", "sp-api", "sp-block-builder", @@ -10194,11 +9651,11 @@ dependencies = [ "chrono", "clap", "fdlimit", - "futures 0.3.28", + "futures", "libp2p-identity", - "log 0.4.20", + "log", "names", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "rand 0.8.5", "regex", "rpassword", @@ -10222,7 +9679,7 @@ dependencies = [ "sp-version", "thiserror", "tiny-bip39", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -10231,9 +9688,9 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fnv", - "futures 0.3.28", - "log 0.4.20", - "parity-scale-codec", + "futures", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-executor", "sc-transaction-pool-api", @@ -10262,9 +9719,9 @@ dependencies = [ "kvdb-memorydb", "kvdb-rocksdb", "linked-hash-map", - "log 0.4.20", + "log", "parity-db", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-state-db", @@ -10284,10 +9741,10 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", + "futures", "futures-timer", "libp2p-identity", - "log 0.4.20", + "log", "mockall", "parking_lot 0.12.1", "sc-client-api", @@ -10309,9 +9766,9 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", - "log 0.4.20", - "parity-scale-codec", + "futures", + "log", + "parity-scale-codec 3.6.5", "sc-block-builder", "sc-client-api", "sc-consensus", @@ -10339,12 +9796,12 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "fork-tree", - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "num-bigint", "num-rational", "num-traits", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -10373,7 +9830,7 @@ name = "sc-consensus-babe-rpc" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "jsonrpsee", "sc-consensus-babe", "sc-consensus-epochs", @@ -10399,9 +9856,9 @@ dependencies = [ "async-channel", "async-trait", "fnv", - "futures 0.3.28", - "log 0.4.20", - "parity-scale-codec", + "futures", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-consensus", @@ -10431,10 +9888,10 @@ name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-consensus-beefy", "sc-rpc", @@ -10451,7 +9908,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "fork-tree", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sp-blockchain", @@ -10469,10 +9926,10 @@ dependencies = [ "dyn-clone", "finality-grandpa", "fork-tree", - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", "sc-block-builder", @@ -10504,10 +9961,10 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", - "futures 0.3.28", + "futures", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus-grandpa", "sc-rpc", @@ -10525,11 +9982,11 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "assert_matches", "async-trait", - "futures 0.3.28", + "futures", "futures-timer", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sc-consensus-aura", @@ -10559,10 +10016,10 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-consensus", "sc-telemetry", @@ -10582,7 +10039,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lru 0.8.1", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-executor-common", "sc-executor-wasmtime", @@ -10616,9 +10073,9 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "anyhow", - "cfg-if 1.0.0", + "cfg-if", "libc", - "log 0.4.20", + "log", "once_cell", "rustix 0.36.15", "sc-allocator", @@ -10634,9 +10091,9 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ansi_term", - "futures 0.3.28", + "futures", "futures-timer", - "log 0.4.20", + "log", "sc-client-api", "sc-network", "sc-network-common", @@ -10667,18 +10124,18 @@ dependencies = [ "async-channel", "async-trait", "asynchronous-codec", - "bytes 1.5.0", + "bytes", "either", "fnv", - "futures 0.3.28", + "futures", "futures-timer", "ip_network", "libp2p", "linked_hash_set", - "log 0.4.20", + "log", "lru 0.8.1", "mockall", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -10690,7 +10147,7 @@ dependencies = [ "sc-utils", "serde", "serde_json", - "smallvec 1.11.1", + "smallvec", "snow", "sp-arithmetic", "sp-blockchain", @@ -10710,9 +10167,9 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-channel", "cid", - "futures 0.3.28", + "futures", "libp2p-identity", - "log 0.4.20", + "log", "prost", "prost-build", "sc-client-api", @@ -10732,17 +10189,17 @@ dependencies = [ "array-bytes", "async-trait", "bitflags 1.3.2", - "bytes 1.5.0", - "futures 0.3.28", + "bytes", + "futures", "futures-timer", "libp2p-identity", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "prost-build", "sc-consensus", "sc-peerset", "sc-utils", "serde", - "smallvec 1.11.1", + "smallvec", "sp-blockchain", "sp-consensus", "sp-consensus-grandpa", @@ -10758,10 +10215,10 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ahash 0.8.3", - "futures 0.3.28", + "futures", "futures-timer", "libp2p", - "log 0.4.20", + "log", "lru 0.8.1", "sc-network", "sc-network-common", @@ -10778,10 +10235,10 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "array-bytes", "async-channel", - "futures 0.3.28", + "futures", "libp2p-identity", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "prost", "prost-build", "sc-client-api", @@ -10803,13 +10260,13 @@ dependencies = [ "async-channel", "async-trait", "fork-tree", - "futures 0.3.28", + "futures", "futures-timer", "libp2p", - "log 0.4.20", + "log", "lru 0.8.1", "mockall", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "prost", "prost-build", "sc-client-api", @@ -10818,7 +10275,7 @@ dependencies = [ "sc-network-common", "sc-peerset", "sc-utils", - "smallvec 1.11.1", + "smallvec", "sp-arithmetic", "sp-blockchain", "sp-consensus", @@ -10835,10 +10292,10 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "futures 0.3.28", + "futures", "libp2p", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "pin-project", "sc-network", "sc-network-common", @@ -10855,16 +10312,16 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "bytes 1.5.0", + "bytes", "fnv", - "futures 0.3.28", + "futures", "futures-timer", - "hyper 0.14.27", + "hyper", "hyper-rustls 0.23.2", "libp2p", "num_cpus", "once_cell", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", "sc-client-api", @@ -10885,9 +10342,9 @@ name = "sc-peerset" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "libp2p-identity", - "log 0.4.20", + "log", "parking_lot 0.12.1", "partial_sort", "sc-utils", @@ -10901,7 +10358,7 @@ name = "sc-proposer-metrics" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log 0.4.20", + "log", "substrate-prometheus-endpoint", ] @@ -10910,10 +10367,10 @@ name = "sc-rpc" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-block-builder", "sc-chain-spec", @@ -10933,7 +10390,7 @@ dependencies = [ "sp-session", "sp-statement-store", "sp-version", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -10942,7 +10399,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sc-chain-spec", "sc-transaction-pool-api", "scale-info", @@ -10960,12 +10417,12 @@ name = "sc-rpc-server" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "http 0.2.9", + "http", "jsonrpsee", - "log 0.4.20", + "log", "serde_json", "substrate-prometheus-endpoint", - "tokio 1.32.0", + "tokio", "tower", "tower-http", ] @@ -10976,12 +10433,12 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "array-bytes", - "futures 0.3.28", + "futures", "futures-util", "hex", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-chain-spec", "sc-client-api", @@ -11004,11 +10461,11 @@ dependencies = [ "async-trait", "directories", "exit-future", - "futures 0.3.28", + "futures", "futures-timer", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -11057,7 +10514,7 @@ dependencies = [ "substrate-prometheus-endpoint", "tempfile", "thiserror", - "tokio 1.32.0", + "tokio", "tracing", "tracing-futures", ] @@ -11067,8 +10524,8 @@ name = "sc-state-db" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sp-core", ] @@ -11080,13 +10537,13 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "clap", "fs4", - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "sc-client-db", "sc-utils", "sp-core", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -11095,7 +10552,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sc-chain-spec", "sc-client-api", "sc-consensus-babe", @@ -11113,11 +10570,11 @@ name = "sc-sysinfo" version = "6.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "libc", - "log 0.4.20", + "log", "rand 0.8.5", - "rand_pcg 0.3.1", + "rand_pcg", "regex", "sc-telemetry", "serde", @@ -11133,9 +10590,9 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "chrono", - "futures 0.3.28", + "futures", "libp2p", - "log 0.4.20", + "log", "parking_lot 0.12.1", "pin-project", "rand 0.8.5", @@ -11156,7 +10613,7 @@ dependencies = [ "chrono", "lazy_static", "libc", - "log 0.4.20", + "log", "once_cell", "parking_lot 0.12.1", "regex", @@ -11194,12 +10651,12 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", + "futures", "futures-timer", "linked-hash-map", - "log 0.4.20", + "log", "num-traits", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sc-client-api", "sc-transaction-pool-api", @@ -11221,8 +10678,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "serde", "sp-blockchain", "sp-runtime", @@ -11235,10 +10692,10 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-channel", - "futures 0.3.28", + "futures", "futures-timer", "lazy_static", - "log 0.4.20", + "log", "parking_lot 0.12.1", "prometheus", "sp-arithmetic", @@ -11250,7 +10707,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8dd7aca73785181cc41f0bbe017263e682b585ca660540ba569133901d013ecf" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", ] @@ -11261,12 +10718,12 @@ version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0459d00b0dbd2e765009924a78ef36b2ff7ba116292d732f00eb0ed8e465d15" dependencies = [ - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "scale-bits", "scale-decode-derive", "scale-info", - "smallvec 1.11.1", + "smallvec", "thiserror", ] @@ -11289,12 +10746,12 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0401b7cdae8b8aa33725f3611a051358d5b32887ecaa0fda5953a775b2d4d76" dependencies = [ - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "scale-bits", "scale-encode-derive", "scale-info", - "smallvec 1.11.1", + "smallvec", "thiserror", ] @@ -11317,10 +10774,10 @@ version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" dependencies = [ - "bitvec", - "cfg-if 1.0.0", + "bitvec 1.0.1", + "cfg-if", "derive_more", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info-derive", "serde", ] @@ -11347,7 +10804,7 @@ dependencies = [ "blake2", "either", "frame-metadata", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-bits", "scale-decode", "scale-encode", @@ -11373,7 +10830,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" dependencies = [ "ahash 0.8.3", - "cfg-if 1.0.0", + "cfg-if", "hashbrown 0.13.2", ] @@ -11396,22 +10853,10 @@ dependencies = [ ] [[package]] -name = "scoped-tls" -version = "0.1.2" +name = "scopeguard" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28" - -[[package]] -name = "scopeguard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scratch" @@ -11460,7 +10905,7 @@ dependencies = [ "rand 0.8.5", "substring", "thiserror", - "url 2.4.1", + "url", ] [[package]] @@ -11491,13 +10936,31 @@ dependencies = [ "zeroize", ] +[[package]] +name = "secp256k1" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c42e6f1735c5f00f51e43e28d6634141f2bcad10931b2609ddd74a86d751260" +dependencies = [ + "secp256k1-sys 0.4.2", +] + [[package]] name = "secp256k1" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62" dependencies = [ - "secp256k1-sys", + "secp256k1-sys 0.6.1", +] + +[[package]] +name = "secp256k1-sys" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "957da2573cde917463ece3570eab4a0b3f19de6f1646cde62e6fd3868f566036" +dependencies = [ + "cc", ] [[package]] @@ -11621,7 +11084,7 @@ version = "1.0.107" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" dependencies = [ - "itoa 1.0.9", + "itoa", "ryu", "serde", ] @@ -11653,7 +11116,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ "form_urlencoded", - "itoa 1.0.9", + "itoa", "ryu", "serde", ] @@ -11665,38 +11128,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6" dependencies = [ "block-buffer 0.9.0", - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "digest 0.9.0", "opaque-debug 0.3.0", ] -[[package]] -name = "sha1" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" -dependencies = [ - "sha1_smol", -] - [[package]] name = "sha1" version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "digest 0.10.7", ] -[[package]] -name = "sha1_smol" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" - [[package]] name = "sha2" version = "0.8.2" @@ -11716,7 +11164,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" dependencies = [ "block-buffer 0.9.0", - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "digest 0.9.0", "opaque-debug 0.3.0", @@ -11728,7 +11176,7 @@ version = "0.10.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "cpufeatures", "digest 0.10.7", ] @@ -11746,6 +11194,18 @@ dependencies = [ "opaque-debug 0.2.3", ] +[[package]] +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +dependencies = [ + "block-buffer 0.9.0", + "digest 0.9.0", + "keccak", + "opaque-debug 0.3.0", +] + [[package]] name = "sha3" version = "0.10.8" @@ -11822,7 +11282,7 @@ dependencies = [ "num-bigint", "num-traits", "thiserror", - "time 0.3.17", + "time", ] [[package]] @@ -11831,19 +11291,13 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" -[[package]] -name = "slab" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17b4fcaed89ab08ef143da37bc52adbcc04d4a69014f4c1208d6b51f0c47bc23" - [[package]] name = "slab" version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -11864,15 +11318,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "smallvec" -version = "0.6.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" -dependencies = [ - "maybe-uninit", -] - [[package]] name = "smallvec" version = "1.11.1" @@ -11909,7 +11354,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" dependencies = [ "libc", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -11929,12 +11374,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64 0.13.1", - "bytes 1.5.0", + "bytes", "flate2", - "futures 0.3.28", - "http 0.2.9", + "futures", + "http", "httparse", - "log 0.4.20", + "log", "rand 0.8.5", "sha-1", ] @@ -11959,8 +11404,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-api-proc-macro", "sp-core", @@ -11992,7 +11437,7 @@ name = "sp-application-crypto" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -12007,7 +11452,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "integer-sqrt", "num-traits", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-std 5.0.0", @@ -12019,7 +11464,7 @@ name = "sp-authority-discovery" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-application-crypto", @@ -12032,7 +11477,7 @@ name = "sp-block-builder" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-api", "sp-inherents", "sp-runtime", @@ -12044,10 +11489,10 @@ name = "sp-blockchain" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "lru 0.8.1", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "sp-api", "sp-consensus", @@ -12063,8 +11508,8 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "sp-core", "sp-inherents", "sp-runtime", @@ -12078,7 +11523,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-application-crypto", @@ -12096,7 +11541,7 @@ version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-api", @@ -12117,7 +11562,7 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "lazy_static", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-api", @@ -12136,8 +11581,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "finality-grandpa", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-api", @@ -12153,7 +11598,7 @@ name = "sp-consensus-slots" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-std 5.0.0", @@ -12172,23 +11617,23 @@ dependencies = [ "bs58 0.4.0", "dyn-clonable", "ed25519-zebra", - "futures 0.3.28", + "futures", "hash-db 0.16.0", "hash256-std-hasher", - "impl-serde", + "impl-serde 0.4.0", "lazy_static", "libsecp256k1", - "log 0.4.20", + "log", "merlin", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "paste", - "primitive-types", + "primitive-types 0.12.1", "rand 0.8.5", "regex", "scale-info", "schnorrkel", - "secp256k1", + "secp256k1 0.24.3", "secrecy", "serde", "sp-core-hashing 5.0.0", @@ -12269,7 +11714,7 @@ version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "environmental", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-std 5.0.0", "sp-storage", ] @@ -12281,7 +11726,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "impl-trait-for-tuples", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-runtime", @@ -12294,15 +11739,15 @@ name = "sp-io" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "bytes 1.5.0", + "bytes", "ed25519 1.5.3", "ed25519-dalek 1.0.1", - "futures 0.3.28", + "futures", "libsecp256k1", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "rustversion", - "secp256k1", + "secp256k1 0.24.3", "sp-core", "sp-externalities", "sp-keystore", @@ -12331,8 +11776,8 @@ name = "sp-keystore" version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", - "parity-scale-codec", + "futures", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "serde", "sp-core", @@ -12355,7 +11800,7 @@ version = "0.1.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-metadata", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-std 5.0.0", ] @@ -12366,8 +11811,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "ckb-merkle-mountain-range", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-api", @@ -12383,7 +11828,7 @@ name = "sp-npos-elections" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-arithmetic", @@ -12430,8 +11875,8 @@ dependencies = [ "either", "hash256-std-hasher", "impl-trait-for-tuples", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "paste", "rand 0.8.5", "scale-info", @@ -12449,10 +11894,10 @@ name = "sp-runtime-interface" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "bytes 1.5.0", + "bytes", "impl-trait-for-tuples", - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "sp-externalities", "sp-runtime-interface-proc-macro", "sp-std 5.0.0", @@ -12479,7 +11924,7 @@ name = "sp-session" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-core", @@ -12493,7 +11938,7 @@ name = "sp-staking" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -12507,11 +11952,11 @@ version = "0.13.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "hash-db 0.16.0", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "rand 0.8.5", - "smallvec 1.11.1", + "smallvec", "sp-core", "sp-externalities", "sp-panic-handler", @@ -12526,8 +11971,8 @@ name = "sp-statement-store" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-api", "sp-application-crypto", @@ -12555,8 +12000,8 @@ name = "sp-storage" version = "7.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "impl-serde", - "parity-scale-codec", + "impl-serde 0.4.0", + "parity-scale-codec 3.6.5", "ref-cast", "serde", "sp-debug-derive", @@ -12570,8 +12015,8 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "futures-timer", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sp-inherents", "sp-runtime", "sp-std 5.0.0", @@ -12583,7 +12028,7 @@ name = "sp-tracing" version = "6.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "sp-std 5.0.0", "tracing", "tracing-core", @@ -12605,8 +12050,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "async-trait", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "sp-core", "sp-inherents", @@ -12626,7 +12071,7 @@ dependencies = [ "lazy_static", "memory-db", "nohash-hasher", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "parking_lot 0.12.1", "scale-info", "schnellru", @@ -12643,8 +12088,8 @@ name = "sp-version" version = "5.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "impl-serde", - "parity-scale-codec", + "impl-serde 0.4.0", + "parity-scale-codec 3.6.5", "parity-wasm", "scale-info", "serde", @@ -12660,7 +12105,7 @@ name = "sp-version-proc-macro" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "proc-macro2", "quote", "syn 2.0.37", @@ -12673,8 +12118,8 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "anyhow", "impl-trait-for-tuples", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sp-std 5.0.0", "wasmi 0.13.2", "wasmtime", @@ -12685,10 +12130,10 @@ name = "sp-weights" version = "4.0.0" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", - "smallvec 1.11.1", + "smallvec", "sp-arithmetic", "sp-core", "sp-debug-derive", @@ -12766,7 +12211,7 @@ dependencies = [ "parking_lot 0.11.2", "parking_lot_core 0.8.6", "static_init_macro", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -12782,15 +12227,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "string" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" -dependencies = [ - "bytes 0.4.12", -] - [[package]] name = "string_cache" version = "0.8.7" @@ -12891,8 +12327,8 @@ dependencies = [ "ring", "subtle", "thiserror", - "tokio 1.32.0", - "url 2.4.1", + "tokio", + "url", "webrtc-util", ] @@ -12903,7 +12339,7 @@ source = "git+https://github.com/ggxchain/ggx-frames.git?branch=polkadot-v0.9.43 dependencies = [ "frame-support", "frame-system", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-core", @@ -12931,10 +12367,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b5bbfa79abbae15dd642ea8176a21a635ff3c00059961d1ea27ad04e5b441c" dependencies = [ "byteorder", - "crunchy 0.2.2", + "crunchy", "lazy_static", "rand 0.8.5", - "rustc-hex 2.1.0", + "rustc-hex", ] [[package]] @@ -12951,10 +12387,10 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "frame-system-rpc-runtime-api", - "futures 0.3.28", + "futures", "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-rpc-api", "sc-transaction-pool-api", "sp-api", @@ -12969,11 +12405,11 @@ name = "substrate-prometheus-endpoint" version = "0.10.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "hyper 0.14.27", - "log 0.4.20", + "hyper", + "log", "prometheus", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -12983,7 +12419,7 @@ source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e dependencies = [ "async-trait", "jsonrpsee", - "log 0.4.20", + "log", "sc-rpc-api", "serde", "sp-runtime", @@ -12995,8 +12431,8 @@ version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ "jsonrpsee", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sc-client-api", "sc-rpc-api", "scale-info", @@ -13013,9 +12449,9 @@ name = "substrate-test-utils" version = "4.0.0-dev" source = "git+https://github.com/paritytech/substrate?branch=polkadot-v0.9.43#5e49f6e44820affccaf517fd22af564f4b495d40" dependencies = [ - "futures 0.3.28", + "futures", "substrate-test-utils-derive", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -13052,7 +12488,7 @@ version = "1.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" dependencies = [ - "autocfg 1.1.0", + "autocfg", ] [[package]] @@ -13080,13 +12516,13 @@ dependencies = [ "derivative", "either", "frame-metadata", - "futures 0.3.28", + "futures", "getrandom 0.2.10", "hex", - "impl-serde", + "impl-serde 0.4.0", "jsonrpsee", - "parity-scale-codec", - "primitive-types", + "parity-scale-codec 3.6.5", + "primitive-types 0.12.1", "scale-bits", "scale-decode", "scale-encode", @@ -13110,14 +12546,14 @@ dependencies = [ "heck", "hex", "jsonrpsee", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "proc-macro2", "quote", "scale-info", "subxt-metadata", "syn 2.0.37", "thiserror", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -13137,7 +12573,7 @@ version = "0.29.0" source = "git+https://github.com/paritytech/subxt?tag=v0.29.0#e40a8629e279e80a7fbb56ff553a430a36612956" dependencies = [ "frame-metadata", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-core-hashing 9.0.0", "thiserror", @@ -13159,7 +12595,7 @@ dependencies = [ "serde_json", "sha2 0.10.8", "thiserror", - "url 2.4.1", + "url", "zip", ] @@ -13236,7 +12672,7 @@ version = "3.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "fastrand 2.0.1", "redox_syscall 0.3.5", "rustix 0.38.14", @@ -13249,11 +12685,11 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c518c082146825f10d6f9a32159ae46edcfd7dae8ac630c8067594bb2a784d72" dependencies = [ - "bytes 1.5.0", + "bytes", "ed25519 1.5.3", "ed25519-dalek 1.0.1", "flex-error", - "futures 0.3.28", + "futures", "num-traits", "once_cell", "prost", @@ -13267,7 +12703,7 @@ dependencies = [ "subtle", "subtle-encoding", "tendermint-proto", - "time 0.3.17", + "time", "zeroize", ] @@ -13281,7 +12717,7 @@ dependencies = [ "flex-error", "serde", "tendermint", - "time 0.3.17", + "time", ] [[package]] @@ -13290,7 +12726,7 @@ version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "890f1fb6dee48900c85f0cdf711ebf130e505ac09ad918cee5c34ed477973b05" dependencies = [ - "bytes 1.5.0", + "bytes", "flex-error", "num-derive", "num-traits", @@ -13299,7 +12735,7 @@ dependencies = [ "serde", "serde_bytes", "subtle-encoding", - "time 0.3.17", + "time", ] [[package]] @@ -13310,7 +12746,7 @@ checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" dependencies = [ "dirs-next", "rustversion", - "winapi 0.3.9", + "winapi", ] [[package]] @@ -13372,7 +12808,7 @@ version = "1.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "once_cell", ] @@ -13395,24 +12831,13 @@ dependencies = [ "libc", ] -[[package]] -name = "time" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" -dependencies = [ - "libc", - "wasi 0.10.0+wasi-snapshot-preview1", - "winapi 0.3.9", -] - [[package]] name = "time" version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" dependencies = [ - "itoa 1.0.9", + "itoa", "serde", "time-core", "time-macros", @@ -13452,22 +12877,13 @@ dependencies = [ "zeroize", ] -[[package]] -name = "tiny-keccak" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d8a021c69bb74a44ccedb824a046447e2c84a01df9e5c20779750acb38e11b2" -dependencies = [ - "crunchy 0.2.2", -] - [[package]] name = "tiny-keccak" version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" dependencies = [ - "crunchy 0.2.2", + "crunchy", ] [[package]] @@ -13495,30 +12911,6 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" -[[package]] -name = "tokio" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "mio 0.6.23", - "num_cpus", - "tokio-codec", - "tokio-current-thread", - "tokio-executor", - "tokio-fs", - "tokio-io", - "tokio-reactor", - "tokio-sync", - "tokio-tcp", - "tokio-threadpool", - "tokio-timer 0.2.13", - "tokio-udp", - "tokio-uds 0.2.7", -] - [[package]] name = "tokio" version = "1.32.0" @@ -13526,9 +12918,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" dependencies = [ "backtrace", - "bytes 1.5.0", + "bytes", "libc", - "mio 0.8.8", + "mio", "num_cpus", "parking_lot 0.12.1", "pin-project-lite 0.2.13", @@ -13538,89 +12930,6 @@ dependencies = [ "windows-sys 0.48.0", ] -[[package]] -name = "tokio-buf" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" -dependencies = [ - "bytes 0.4.12", - "either", - "futures 0.1.31", -] - -[[package]] -name = "tokio-codec" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "tokio-io", -] - -[[package]] -name = "tokio-core" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87b1395334443abca552f63d4f61d0486f12377c2ba8b368e523f89e828cffd4" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "log 0.4.20", - "mio 0.6.23", - "scoped-tls", - "tokio 0.1.22", - "tokio-executor", - "tokio-io", - "tokio-reactor", - "tokio-timer 0.2.13", -] - -[[package]] -name = "tokio-current-thread" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" -dependencies = [ - "futures 0.1.31", - "tokio-executor", -] - -[[package]] -name = "tokio-executor" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", -] - -[[package]] -name = "tokio-fs" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" -dependencies = [ - "futures 0.1.31", - "tokio-io", - "tokio-threadpool", -] - -[[package]] -name = "tokio-io" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "log 0.4.20", -] - [[package]] name = "tokio-macros" version = "2.1.0" @@ -13633,22 +12942,13 @@ dependencies = [ ] [[package]] -name = "tokio-reactor" -version = "0.1.12" +name = "tokio-native-tls" +version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "lazy_static", - "log 0.4.20", - "mio 0.6.23", - "num_cpus", - "parking_lot 0.9.0", - "slab 0.4.9", - "tokio-executor", - "tokio-io", - "tokio-sync", + "native-tls", + "tokio", ] [[package]] @@ -13658,7 +12958,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ "rustls 0.20.9", - "tokio 1.32.0", + "tokio", "webpki 0.22.1", ] @@ -13669,7 +12969,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ "rustls 0.21.7", - "tokio 1.32.0", + "tokio", ] [[package]] @@ -13680,82 +12980,8 @@ checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", "pin-project-lite 0.2.13", - "tokio 1.32.0", - "tokio-util", -] - -[[package]] -name = "tokio-sync" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" -dependencies = [ - "fnv", - "futures 0.1.31", -] - -[[package]] -name = "tokio-tcp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "mio 0.6.23", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-threadpool" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" -dependencies = [ - "crossbeam-deque 0.7.4", - "crossbeam-queue", - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "lazy_static", - "log 0.4.20", - "num_cpus", - "slab 0.4.9", - "tokio-executor", -] - -[[package]] -name = "tokio-timer" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6131e780037787ff1b3f8aad9da83bca02438b72277850dd6ad0d455e0e20efc" -dependencies = [ - "futures 0.1.31", - "slab 0.3.0", -] - -[[package]] -name = "tokio-timer" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures 0.1.31", - "slab 0.4.9", - "tokio-executor", -] - -[[package]] -name = "tokio-tls" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c" -dependencies = [ - "futures 0.1.31", - "native-tls", - "tokio-io", + "tokio", + "tokio-util 0.7.9", ] [[package]] @@ -13765,62 +12991,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c" dependencies = [ "futures-util", - "log 0.4.20", + "log", "rustls 0.21.7", - "tokio 1.32.0", + "tokio", "tokio-rustls 0.24.1", "tungstenite", "webpki-roots 0.25.2", ] [[package]] -name = "tokio-udp" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "log 0.4.20", - "mio 0.6.23", - "tokio-codec", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-uds" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65ae5d255ce739e8537221ed2942e0445f4b3b813daebac1c0050ddaaa3587f9" -dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "libc", - "log 0.3.9", - "mio 0.6.23", - "mio-uds", - "tokio-core", - "tokio-io", -] - -[[package]] -name = "tokio-uds" -version = "0.2.7" +name = "tokio-util" +version = "0.6.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0" +checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507" dependencies = [ - "bytes 0.4.12", - "futures 0.1.31", - "iovec", - "libc", - "log 0.4.20", - "mio 0.6.23", - "mio-uds", - "tokio-codec", - "tokio-io", - "tokio-reactor", + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "log", + "pin-project-lite 0.2.13", + "tokio", ] [[package]] @@ -13829,12 +13020,12 @@ version = "0.7.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" dependencies = [ - "bytes 1.5.0", + "bytes", "futures-core", "futures-io", "futures-sink", "pin-project-lite 0.2.13", - "tokio 1.32.0", + "tokio", "tracing", ] @@ -13899,11 +13090,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ "bitflags 2.4.0", - "bytes 1.5.0", + "bytes", "futures-core", "futures-util", - "http 0.2.9", - "http-body 0.4.5", + "http", + "http-body", "http-range-header", "pin-project-lite 0.2.13", "tower-layer", @@ -13928,8 +13119,8 @@ version = "0.1.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" dependencies = [ - "cfg-if 1.0.0", - "log 0.4.20", + "cfg-if", + "log", "pin-project-lite 0.2.13", "tracing-attributes", "tracing-core", @@ -13973,7 +13164,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" dependencies = [ "lazy_static", - "log 0.4.20", + "log", "tracing-core", ] @@ -14002,7 +13193,7 @@ dependencies = [ "serde", "serde_json", "sharded-slab", - "smallvec 1.11.1", + "smallvec", "thread_local", "tracing", "tracing-core", @@ -14010,12 +13201,6 @@ dependencies = [ "tracing-serde", ] -[[package]] -name = "traitobject" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "efd1f82c56340fdf16f2a953d7bda4f8fdffba13d93b00844c25572110b26079" - [[package]] name = "trie-db" version = "0.27.1" @@ -14024,9 +13209,9 @@ checksum = "767abe6ffed88a1889671a102c2861ae742726f52e0a5a425b92c9fbfa7e9c85" dependencies = [ "hash-db 0.16.0", "hashbrown 0.13.2", - "log 0.4.20", - "rustc-hex 2.1.0", - "smallvec 1.11.1", + "log", + "rustc-hex", + "smallvec", ] [[package]] @@ -14055,7 +13240,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26" dependencies = [ "async-trait", - "cfg-if 1.0.0", + "cfg-if", "data-encoding", "enum-as-inner", "futures-channel", @@ -14065,13 +13250,13 @@ dependencies = [ "ipnet", "lazy_static", "rand 0.8.5", - "smallvec 1.11.1", + "smallvec", "socket2 0.4.9", "thiserror", "tinyvec", - "tokio 1.32.0", + "tokio", "tracing", - "url 2.4.1", + "url", ] [[package]] @@ -14080,16 +13265,16 @@ version = "0.22.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "futures-util", "ipconfig", "lazy_static", "lru-cache", "parking_lot 0.12.1", "resolv-conf", - "smallvec 1.11.1", + "smallvec", "thiserror", - "tokio 1.32.0", + "tokio", "tracing", "trust-dns-proto", ] @@ -14113,16 +13298,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9e3dac10fd62eaf6617d3a904ae222845979aec67c615d1c842b4002c7666fb9" dependencies = [ "byteorder", - "bytes 1.5.0", + "bytes", "data-encoding", - "http 0.2.9", + "http", "httparse", - "log 0.4.20", + "log", "rand 0.8.5", "rustls 0.21.7", - "sha1 0.10.6", + "sha1", "thiserror", - "url 2.4.1", + "url", "utf-8", ] @@ -14134,14 +13319,14 @@ checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8" dependencies = [ "async-trait", "base64 0.13.1", - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "md-5", "rand 0.8.5", "ring", "stun", "thiserror", - "tokio 1.32.0", + "tokio", "webrtc-util", ] @@ -14151,18 +13336,12 @@ version = "1.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "digest 0.10.7", "rand 0.8.5", "static_assertions", ] -[[package]] -name = "typeable" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1410f6f91f21d1612654e7cc69193b0334f909dcf2c790c4826254fbb86f8887" - [[package]] name = "typenum" version = "1.17.0" @@ -14175,18 +13354,6 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" -[[package]] -name = "uint" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "754ba11732b9161b94c41798e5197e5e75388d012f760c42adb5000353e98646" -dependencies = [ - "byteorder", - "crunchy 0.1.6", - "heapsize", - "rustc-hex 2.1.0", -] - [[package]] name = "uint" version = "0.9.5" @@ -14194,7 +13361,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76f64bba2c53b04fcab63c01a7d7427eadc821e3bc48c34dc9ba29c501164b52" dependencies = [ "byteorder", - "crunchy 0.2.2", + "crunchy", "hex", "static_assertions", ] @@ -14205,15 +13372,6 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" -[[package]] -name = "unicase" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4765f83163b74f957c797ad9253caf97f103fb064d3999aea9568d09fc8a33" -dependencies = [ - "version_check 0.1.5", -] - [[package]] name = "unicode-bidi" version = "0.3.13" @@ -14274,7 +13432,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6889a77d49f1f013504cec6bf97a2c730394adedaeb1deb5ea08949a50541105" dependencies = [ "asynchronous-codec", - "bytes 1.5.0", + "bytes", "futures-io", "futures-util", ] @@ -14285,17 +13443,6 @@ version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" -[[package]] -name = "url" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -dependencies = [ - "idna 0.1.5", - "matches", - "percent-encoding 1.0.1", -] - [[package]] name = "url" version = "2.4.1" @@ -14304,7 +13451,7 @@ checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" dependencies = [ "form_urlencoded", "idna 0.4.0", - "percent-encoding 2.3.0", + "percent-encoding", ] [[package]] @@ -14350,12 +13497,6 @@ version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -[[package]] -name = "version_check" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" - [[package]] name = "version_check" version = "0.9.4" @@ -14402,17 +13543,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "want" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" -dependencies = [ - "futures 0.1.31", - "log 0.4.20", - "try-lock", -] - [[package]] name = "want" version = "0.3.1" @@ -14428,12 +13558,6 @@ version = "0.9.0+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -[[package]] -name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -14446,7 +13570,7 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "wasm-bindgen-macro", ] @@ -14457,7 +13581,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd" dependencies = [ "bumpalo", - "log 0.4.20", + "log", "once_cell", "proc-macro2", "quote", @@ -14471,7 +13595,7 @@ version = "0.4.37" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "js-sys", "wasm-bindgen", "web-sys", @@ -14570,7 +13694,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" dependencies = [ - "futures 0.3.28", + "futures", "js-sys", "parking_lot 0.11.2", "pin-utils", @@ -14649,7 +13773,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48134de3d7598219ab9eaf6b91b15d8e50d31da76b8519fe4ecfcec2cf35104b" dependencies = [ "indexmap 1.9.3", - "url 2.4.1", + "url", ] [[package]] @@ -14669,10 +13793,10 @@ checksum = "f907fdead3153cb9bfb7a93bbd5b62629472dc06dee83605358c64c52ed3dda9" dependencies = [ "anyhow", "bincode", - "cfg-if 1.0.0", + "cfg-if", "indexmap 1.9.3", "libc", - "log 0.4.20", + "log", "object 0.30.4", "once_cell", "paste", @@ -14695,7 +13819,7 @@ version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3b9daa7c14cd4fa3edbf69de994408d5f4b7b0959ac13fa69d465f6597f810d" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -14709,7 +13833,7 @@ dependencies = [ "bincode", "directories-next", "file-per-thread-logger", - "log 0.4.20", + "log", "rustix 0.36.15", "serde", "sha2 0.10.8", @@ -14731,7 +13855,7 @@ dependencies = [ "cranelift-native", "cranelift-wasm", "gimli 0.27.3", - "log 0.4.20", + "log", "object 0.30.4", "target-lexicon", "thiserror", @@ -14765,7 +13889,7 @@ dependencies = [ "cranelift-entity", "gimli 0.27.3", "indexmap 1.9.3", - "log 0.4.20", + "log", "object 0.30.4", "serde", "target-lexicon", @@ -14783,10 +13907,10 @@ dependencies = [ "addr2line 0.19.0", "anyhow", "bincode", - "cfg-if 1.0.0", + "cfg-if", "cpp_demangle", "gimli 0.27.3", - "log 0.4.20", + "log", "object 0.30.4", "rustc-demangle", "serde", @@ -14815,7 +13939,7 @@ version = "8.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aecae978b13f7f67efb23bd827373ace4578f2137ec110bbf6a4a7cde4121bbd" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "libc", "windows-sys 0.45.0", ] @@ -14828,10 +13952,10 @@ checksum = "658cf6f325232b6760e202e5255d823da5e348fdea827eff0a2a22319000b441" dependencies = [ "anyhow", "cc", - "cfg-if 1.0.0", + "cfg-if", "indexmap 1.9.3", "libc", - "log 0.4.20", + "log", "mach", "memfd", "memoffset 0.8.0", @@ -14868,32 +13992,50 @@ dependencies = [ [[package]] name = "web3" -version = "0.5.1" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8cb64d3fa76f21599bc12ff0672f459900c58b99e7f899022f73c611bf647993" +checksum = "44f258e254752d210b84fe117b31f1e3cc9cbf04c0d747eb7f8cf7cf5e370f6d" dependencies = [ - "arrayvec 0.4.12", - "base64 0.10.1", - "error-chain", - "ethabi 6.1.0", - "ethereum-types 0.4.2", - "futures 0.1.31", - "hyper 0.12.36", - "hyper-tls", + "arrayvec 0.7.4", + "base64 0.13.1", + "bytes", + "derive_more", + "ethabi 16.0.0", + "ethereum-types 0.12.1", + "futures", + "futures-timer", + "headers", + "hex", + "idna 0.2.3", "jsonrpc-core", - "log 0.4.20", - "native-tls", - "parking_lot 0.7.1", - "rustc-hex 1.0.0", + "log", + "once_cell", + "parking_lot 0.12.1", + "pin-project", + "reqwest", + "rlp", + "secp256k1 0.21.3", "serde", - "serde_derive", "serde_json", - "tokio-core", - "tokio-io", - "tokio-timer 0.1.2", - "tokio-uds 0.1.7", - "url 1.7.2", - "websocket", + "soketto", + "tiny-keccak", + "tokio", + "tokio-stream", + "tokio-util 0.6.10", + "url", + "web3-async-native-tls", +] + +[[package]] +name = "web3-async-native-tls" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f6d8d1636b2627fe63518d5a9b38a569405d9c9bc665c43c9c341de57227ebb" +dependencies = [ + "native-tls", + "thiserror", + "tokio", + "url", ] [[package]] @@ -14948,11 +14090,11 @@ checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb" dependencies = [ "arc-swap", "async-trait", - "bytes 1.5.0", + "bytes", "hex", "interceptor", "lazy_static", - "log 0.4.20", + "log", "rand 0.8.5", "rcgen 0.9.3", "regex", @@ -14966,10 +14108,10 @@ dependencies = [ "sha2 0.10.8", "stun", "thiserror", - "time 0.3.17", - "tokio 1.32.0", + "time", + "tokio", "turn", - "url 2.4.1", + "url", "waitgroup", "webrtc-data", "webrtc-dtls", @@ -14987,11 +14129,11 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100" dependencies = [ - "bytes 1.5.0", + "bytes", "derive_builder", - "log 0.4.20", + "log", "thiserror", - "tokio 1.32.0", + "tokio", "webrtc-sctp", "webrtc-util", ] @@ -15014,7 +14156,7 @@ dependencies = [ "elliptic-curve 0.12.3", "hkdf", "hmac 0.12.1", - "log 0.4.20", + "log", "p256", "p384", "rand 0.8.5", @@ -15024,12 +14166,12 @@ dependencies = [ "rustls 0.19.1", "sec1 0.3.0", "serde", - "sha1 0.10.6", + "sha1", "sha2 0.10.8", "signature 1.6.4", "subtle", "thiserror", - "tokio 1.32.0", + "tokio", "webpki 0.21.4", "webrtc-util", "x25519-dalek 2.0.0", @@ -15045,15 +14187,15 @@ dependencies = [ "arc-swap", "async-trait", "crc", - "log 0.4.20", + "log", "rand 0.8.5", "serde", "serde_json", "stun", "thiserror", - "tokio 1.32.0", + "tokio", "turn", - "url 2.4.1", + "url", "uuid 1.4.1", "waitgroup", "webrtc-mdns", @@ -15066,10 +14208,10 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" dependencies = [ - "log 0.4.20", + "log", "socket2 0.4.9", "thiserror", - "tokio 1.32.0", + "tokio", "webrtc-util", ] @@ -15080,7 +14222,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f72e1650a8ae006017d1a5280efb49e2610c19ccc3c0905b03b648aee9554991" dependencies = [ "byteorder", - "bytes 1.5.0", + "bytes", "rand 0.8.5", "rtp", "thiserror", @@ -15094,12 +14236,12 @@ checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0" dependencies = [ "arc-swap", "async-trait", - "bytes 1.5.0", + "bytes", "crc", - "log 0.4.20", + "log", "rand 0.8.5", "thiserror", - "tokio 1.32.0", + "tokio", "webrtc-util", ] @@ -15114,16 +14256,16 @@ dependencies = [ "aes-gcm 0.9.4", "async-trait", "byteorder", - "bytes 1.5.0", + "bytes", "ctr 0.8.0", "hmac 0.11.0", - "log 0.4.20", + "log", "rtcp", "rtp", "sha-1", "subtle", "thiserror", - "tokio 1.32.0", + "tokio", "webrtc-util", ] @@ -15135,39 +14277,17 @@ checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87" dependencies = [ "async-trait", "bitflags 1.3.2", - "bytes 1.5.0", + "bytes", "cc", "ipnet", "lazy_static", "libc", - "log 0.4.20", + "log", "nix 0.24.3", "rand 0.8.5", "thiserror", - "tokio 1.32.0", - "winapi 0.3.9", -] - -[[package]] -name = "websocket" -version = "0.21.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c9faed2bff8af2ea6b9f8b917d3d00b467583f6781fe3def174a9e33c879703" -dependencies = [ - "base64 0.9.3", - "bitflags 0.9.1", - "byteorder", - "bytes 0.4.12", - "futures 0.1.31", - "hyper 0.10.16", - "native-tls", - "rand 0.5.6", - "sha1 0.6.1", - "tokio-core", - "tokio-io", - "tokio-tls", - "unicase", - "url 1.7.2", + "tokio", + "winapi", ] [[package]] @@ -15198,12 +14318,6 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8" -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - [[package]] name = "winapi" version = "0.3.9" @@ -15214,12 +14328,6 @@ dependencies = [ "winapi-x86_64-pc-windows-gnu", ] -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - [[package]] name = "winapi-i686-pc-windows-gnu" version = "0.4.0" @@ -15232,7 +14340,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" dependencies = [ - "winapi 0.3.9", + "winapi", ] [[package]] @@ -15440,20 +14548,10 @@ version = "0.50.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "windows-sys 0.48.0", ] -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - [[package]] name = "ws_stream_wasm" version = "0.7.4" @@ -15461,9 +14559,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7999f5f4217fe3818726b66257a4475f71e74ffd190776ad053fa159e50737f5" dependencies = [ "async_io_stream", - "futures 0.3.28", + "futures", "js-sys", - "log 0.4.20", + "log", "pharos", "rustc_version 0.4.0", "send_wrapper 0.6.0", @@ -15473,6 +14571,12 @@ dependencies = [ "web-sys", ] +[[package]] +name = "wyz" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214" + [[package]] name = "wyz" version = "0.5.1" @@ -15521,7 +14625,7 @@ dependencies = [ "ring", "rusticata-macros", "thiserror", - "time 0.3.17", + "time", ] [[package]] @@ -15539,7 +14643,7 @@ dependencies = [ "oid-registry 0.6.1", "rusticata-macros", "thiserror", - "time 0.3.17", + "time", ] [[package]] @@ -15550,8 +14654,8 @@ dependencies = [ "bounded-collections", "derivative", "impl-trait-for-tuples", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "scale-info", "serde", "sp-weights", @@ -15566,9 +14670,9 @@ dependencies = [ "frame-support", "frame-system", "impl-trait-for-tuples", - "log 0.4.20", + "log", "pallet-transaction-payment", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "polkadot-parachain", "scale-info", "sp-arithmetic", @@ -15588,8 +14692,8 @@ dependencies = [ "environmental", "frame-support", "impl-trait-for-tuples", - "log 0.4.20", - "parity-scale-codec", + "log", + "parity-scale-codec 3.6.5", "sp-arithmetic", "sp-core", "sp-io", @@ -15616,7 +14720,7 @@ version = "0.1.0" source = "git+https://github.com/AstarNetwork/Astar.git?rev=df73ca435bbfa30548bb2446b5dbb58492c928bb#df73ca435bbfa30548bb2446b5dbb58492c928bb" dependencies = [ "astar-primitives", - "parity-scale-codec", + "parity-scale-codec 3.6.5", "scale-info", "sp-runtime", "sp-std 5.0.0", @@ -15628,8 +14732,8 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5" dependencies = [ - "futures 0.3.28", - "log 0.4.20", + "futures", + "log", "nohash-hasher", "parking_lot 0.12.1", "rand 0.8.5", @@ -15654,7 +14758,7 @@ version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ - "time 0.3.17", + "time", ] [[package]] @@ -15688,12 +14792,12 @@ dependencies = [ "bzip2", "constant_time_eq 0.1.5", "crc32fast", - "crossbeam-utils 0.8.16", + "crossbeam-utils", "flate2", "hmac 0.12.1", "pbkdf2 0.11.0", - "sha1 0.10.6", - "time 0.3.17", + "sha1", + "time", "zstd 0.11.2+zstd.1.5.2", ] diff --git a/Cargo.toml b/Cargo.toml index 1f01b17b..8238439f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -52,7 +52,7 @@ test-strategy = "0.3.0" tokio = { version = "1.22.0", features = ["macros", "time", "parking_lot"] } tokio-util = { version = "0.7.4", features = ["compat"] } wait-timeout = "0.2" -web3 = "0.5.0" +web3 = "0.18.0" # Substrate Client From 7bd5d51cac6c6378259129258a73b4b2961c0082 Mon Sep 17 00:00:00 2001 From: Artur Yurii Korchynskyi <42449190+akorchyn@users.noreply.github.com> Date: Fri, 13 Oct 2023 10:50:08 +0300 Subject: [PATCH 33/35] Test fix and flake clean-up (#198) * test-fix * added tests to ci checks --- .github/workflows/ci.yaml | 2 +- Cargo.lock | 7 + flake.lock | 197 +---- flake.nix | 671 ++---------------- node/src/chain_spec.rs | 9 +- .../allowlist_forbids_become_validator.rs | 13 +- runtime/runtime-common/Cargo.toml | 9 + runtime/runtime-common/src/pos/currency.rs | 47 +- .../src/pos/session_payout/mock.rs | 3 +- 9 files changed, 144 insertions(+), 814 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b7df07ad..f28fb979 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,7 +44,7 @@ jobs: with: ref: ${{ github.event.pull_request.head.sha }} persist-credentials: false - - run: nix build --log-lines 100 .#lint-all + - run: nix flake check --log-lines 100 docker-build-sydney: if: github.ref == 'refs/heads/main' diff --git a/Cargo.lock b/Cargo.lock index bde5ea0f..3089b072 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9248,9 +9248,11 @@ dependencies = [ name = "runtime-common" version = "0.1.2" dependencies = [ + "frame-election-provider-support", "frame-support", "frame-system", "log", + "pallet-aura", "pallet-authorship", "pallet-balances", "pallet-contracts", @@ -9269,12 +9271,17 @@ dependencies = [ "pallet-scheduler", "pallet-session", "pallet-staking", + "pallet-timestamp", + "pallet-treasury", "pallet-xvm", "parity-scale-codec 3.6.5", + "paste", "proptest", "scale-info", "serde", + "sp-consensus-aura", "sp-core", + "sp-io", "sp-runtime", "sp-staking", "sp-std 5.0.0", diff --git a/flake.lock b/flake.lock index d4c6220d..791cb41e 100644 --- a/flake.lock +++ b/flake.lock @@ -1,37 +1,5 @@ { "nodes": { - "bats-assert": { - "flake": false, - "locked": { - "lastModified": 1636059754, - "narHash": "sha256-ewME0l27ZqfmAwJO4h5biTALc9bDLv7Bl3ftBzBuZwk=", - "owner": "bats-core", - "repo": "bats-assert", - "rev": "34551b1d7f8c7b677c1a66fc0ac140d6223409e5", - "type": "github" - }, - "original": { - "owner": "bats-core", - "repo": "bats-assert", - "type": "github" - } - }, - "bats-support": { - "flake": false, - "locked": { - "lastModified": 1548869839, - "narHash": "sha256-Gr4ntadr42F2Ks8Pte2D4wNDbijhujuoJi4OPZnTAZU=", - "owner": "bats-core", - "repo": "bats-support", - "rev": "d140a65044b2d6810381935ae7f0c94c7023c8c3", - "type": "github" - }, - "original": { - "owner": "bats-core", - "repo": "bats-support", - "type": "github" - } - }, "crane": { "inputs": { "flake-compat": "flake-compat", @@ -42,11 +10,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1693787605, - "narHash": "sha256-rwq5U8dy+a9JFny/73L0SJu1GfWwATMPMTp7D+mjHy8=", + "lastModified": 1696384830, + "narHash": "sha256-j8ZsVqzmj5sOm5MW9cqwQJUZELFFwOislDmqDDEMl6k=", "owner": "ipetkov", "repo": "crane", - "rev": "8b4f7a4dab2120cf41e7957a28a853f45016bd9d", + "rev": "f2143cd27f8bd09ee4f0121336c65015a2a0a19c", "type": "github" }, "original": { @@ -63,11 +31,11 @@ "pre-commit-hooks": "pre-commit-hooks" }, "locked": { - "lastModified": 1693830477, - "narHash": "sha256-6j1oNRpjGseDbgg6mJ9H3gmX5U+VAubOLV+iFL9WW30=", + "lastModified": 1697058441, + "narHash": "sha256-gjtW+nkM9suMsjyid63HPmt6WZQEvuVqA5cOAf4lLM0=", "owner": "cachix", "repo": "devenv", - "rev": "f839f486b98609f3477c0410b31a6f831b390d48", + "rev": "55294461a62d90c8626feca22f52b0d3d0e18e39", "type": "github" }, "original": { @@ -79,11 +47,11 @@ "flake-compat": { "flake": false, "locked": { - "lastModified": 1673956053, - "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=", + "lastModified": 1696267196, + "narHash": "sha256-AAQ/2sD+0D18bb8hKuEEVpHUYD1GmO2Uh/taFamn6XQ=", "owner": "edolstra", "repo": "flake-compat", - "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9", + "rev": "4f910c9827911b1ec2bf26b5a062cd09f8d89f85", "type": "github" }, "original": { @@ -113,11 +81,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1692799911, - "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", "owner": "numtide", "repo": "flake-utils", - "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", "type": "github" }, "original": { @@ -149,11 +117,11 @@ "systems": "systems_3" }, "locked": { - "lastModified": 1692799911, - "narHash": "sha256-3eihraek4qL744EvQXsK1Ha6C3CR7nnT8X2qWap4RNk=", + "lastModified": 1694529238, + "narHash": "sha256-zsNZZGTGnMOf9YpHKJqMSsa0dXbfmxeoJ7xHlrt+xmY=", "owner": "numtide", "repo": "flake-utils", - "rev": "f9e7cf818399d17d347f847525c5a5a8032e4e44", + "rev": "ff7b65b44d01cf9ba6a71320833626af21126384", "type": "github" }, "original": { @@ -177,21 +145,6 @@ "type": "github" } }, - "flake-utils_5": { - "locked": { - "lastModified": 1634851050, - "narHash": "sha256-N83GlSGPJJdcqhUxSCS/WwW5pksYf3VP1M13cDRTSVA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "c91f3de5adaf1de973b797ef7485e441a65b8935", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, "gitignore": { "inputs": { "nixpkgs": [ @@ -254,42 +207,6 @@ "type": "github" } }, - "nixlib": { - "locked": { - "lastModified": 1693701915, - "narHash": "sha256-waHPLdDYUOHSEtMKKabcKIMhlUOHPOOPQ9UyFeEoovs=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "f5af57d3ef9947a70ac86e42695231ac1ad00c25", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", - "type": "github" - } - }, - "nixos-generators": { - "inputs": { - "nixlib": "nixlib", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1693791338, - "narHash": "sha256-wHmtB5H8AJTUaeGHw+0hsQ6nU4VyvVrP2P4NeCocRzY=", - "owner": "nix-community", - "repo": "nixos-generators", - "rev": "8ee78470029e641cddbd8721496da1316b47d3b4", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixos-generators", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1678875422, @@ -338,38 +255,18 @@ "type": "github" } }, - "nixpkgs-terraform-providers-bin": { - "inputs": { - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1693960602, - "narHash": "sha256-3d/KoK3Ox5Vy0I3N3Mktw3xjhYxEjTzklvRk/cB4F0c=", - "owner": "nix-community", - "repo": "nixpkgs-terraform-providers-bin", - "rev": "44e4b99529a4ebf616b22045ea013f5e844390b5", - "type": "github" - }, - "original": { - "owner": "nix-community", - "repo": "nixpkgs-terraform-providers-bin", - "type": "github" - } - }, "nixpkgs_2": { "locked": { - "lastModified": 1688392541, - "narHash": "sha256-lHrKvEkCPTUO+7tPfjIcb7Trk6k31rz18vkyqmkeJfY=", + "lastModified": 1696983906, + "narHash": "sha256-L7GyeErguS7Pg4h8nK0wGlcUTbfUMDu+HMf1UcyP72k=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ea4c80b39be4c09702b0cb3b42eab59e2ba4f24b", + "rev": "bd1cde45c77891214131cbbea5b1203e485a9d51", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixos-22.11", + "ref": "nixos-23.05", "repo": "nixpkgs", "type": "github" } @@ -407,12 +304,9 @@ "crane": "crane", "devenv": "devenv", "flake-utils": "flake-utils_3", - "nixos-generators": "nixos-generators", "nixpkgs": "nixpkgs_2", - "nixpkgs-terraform-providers-bin": "nixpkgs-terraform-providers-bin", "rust-overlay": "rust-overlay_2", - "substrate": "substrate", - "terranix": "terranix" + "substrate": "substrate" } }, "rust-overlay": { @@ -427,11 +321,11 @@ ] }, "locked": { - "lastModified": 1693707092, - "narHash": "sha256-HR1EnynBSPqbt+04/yxxqsG1E3n6uXrOl7SPco/UnYo=", + "lastModified": 1696299134, + "narHash": "sha256-RS77cAa0N+Sfj5EmKbm5IdncNXaBCE1BSSQvUE8exvo=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "98ccb73e6eefc481da6039ee57ad8818d1ca8d56", + "rev": "611ccdceed92b4d94ae75328148d84ee4a5b462d", "type": "github" }, "original": { @@ -450,11 +344,11 @@ ] }, "locked": { - "lastModified": 1693966243, - "narHash": "sha256-a2CA1aMIPE67JWSVIGoGtD3EGlFdK9+OlJQs0FOWCKY=", + "lastModified": 1697076655, + "narHash": "sha256-NcCtVUOd0X81srZkrdP8qoA1BMsPdO2tGtlZpsGijeU=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a8b4bb4cbb744baaabc3e69099f352f99164e2c1", + "rev": "aa7584f5bbf5947716ad8ec14eccc0334f0d28f0", "type": "github" }, "original": { @@ -555,45 +449,6 @@ "repo": "default", "type": "github" } - }, - "terranix": { - "inputs": { - "bats-assert": "bats-assert", - "bats-support": "bats-support", - "flake-utils": "flake-utils_5", - "nixpkgs": [ - "nixpkgs" - ], - "terranix-examples": "terranix-examples" - }, - "locked": { - "lastModified": 1684906298, - "narHash": "sha256-pNuJxmVMGbBHw7pa+Bx0HY0orXIXoyyAXOKuQ1zpfus=", - "owner": "terranix", - "repo": "terranix", - "rev": "c0dd15076856c6cb425795b8c7d5d37d3a1e922a", - "type": "github" - }, - "original": { - "owner": "terranix", - "repo": "terranix", - "type": "github" - } - }, - "terranix-examples": { - "locked": { - "lastModified": 1636300201, - "narHash": "sha256-0n1je1WpiR6XfCsvi8ZK7GrpEnMl+DpwhWaO1949Vbc=", - "owner": "terranix", - "repo": "terranix-examples", - "rev": "a934aa1cf88f6bd6c6ddb4c77b77ec6e1660bd5e", - "type": "github" - }, - "original": { - "owner": "terranix", - "repo": "terranix-examples", - "type": "github" - } } }, "root": "root", diff --git a/flake.nix b/flake.nix index 3786d876..82f4d34f 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ # like Cargo.toml or package.json dependencies, but on meta level (tools to run mentined files) inputs = { # base packages - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; # shells devenv.url = "github:cachix/devenv"; @@ -25,24 +25,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - # virtual machine images - assembling VM is simple and fast as OCI image :) - nixos-generators = { - url = "github:nix-community/nixos-generators"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - # terraform generator to manage clouds/managed services - terranix = { - url = "github:terranix/terranix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - # fixed derivation for terraform packages - nixpkgs-terraform-providers-bin = { - url = "github:nix-community/nixpkgs-terraform-providers-bin"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - # for subkey substrate = { url = "github:dzmitry-lahoda-forks/substrate/8e8e54d99f5f86da1ff984646dc6cba3597a42f8"; @@ -57,18 +39,8 @@ }; # inputs and systems are know ahead of time -> we can evalute all nix -> flake make nix """statically typed""" - outputs = { self, nixpkgs, devenv, rust-overlay, crane, flake-utils, terranix, nixos-generators, nixpkgs-terraform-providers-bin, substrate } @ inputs: + outputs = { self, nixpkgs, devenv, rust-overlay, crane, flake-utils, substrate } @ inputs: let - email = ""; - domain = "ggchain.technology"; - org = "ggchaintesta"; - region = "eu-west-1"; - # could generate dynamic nixos module to be referenced - bootnode = "34-244-81-67"; - bootnode-peer = "12D3KooWP3E64xQfgSdubAXpVrJTxL6a2Web2uiwC4PBxyEJFac3"; - # can use envvars override to allow run non shared "cloud" for tests - age-pub = "age1a8k02z579lr0qr79pjhlneffjw3dvy3a8j5r4fw3zlphd6cyaf5qukkat5"; - per_system = flake-utils.lib.eachDefaultSystem (system: let @@ -89,7 +61,6 @@ pkgs.llvmPackages.libclang.lib (pkgs.lib.makeLibraryPath [pkgs.openssl]) ]; - OPENSSL_DIR = "${pkgs.openssl.dev}"; LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; PROTOC = "${pkgs.protobuf}/bin/protoc"; ROCKSDB_LIB_DIR = "${pkgs.rocksdb}/lib"; @@ -104,7 +75,6 @@ buildInputs = with pkgs; [ openssl zstd ]; nativeBuildInputs = with pkgs; rust-native-build-inputs ++ [ openssl ] ++ darwin; - doCheck = false; cargoCheckCommand = "true"; src = rust-src; pname = "..."; @@ -132,13 +102,6 @@ common-wasm-deps = craneLib.buildDepsOnly (common-wasm-attrs // { }); - doclint = pkgs.writeShellApplication rec { - name = "doclint"; - text = '' - ${pkgs.lib.meta.getExe pkgs.nodePackages.markdownlint-cli2} "**/*.md" "#.devenv" "#target" "#terraform" "#result" - ''; - }; - fix = pkgs.writeShellApplication rec { name = "fix"; runtimeInputs = [ @@ -228,69 +191,6 @@ cargoArtifacts = common-native-release-brooklyn-deps; }); - fmt = craneLib.cargoFmt (common-attrs // { - cargoExtraArgs = "--all"; - rustFmtExtraArgs = "--color always"; - }); - - cargoClippyExtraArgs = "-- -D warnings"; - - clippy-node-brooklyn = craneLib.cargoClippy (common-native-brooklyn-attrs // { - inherit cargoClippyExtraArgs; - cargoArtifacts = ggxchain-node-brooklyn.cargoArtifacts; - }); - - clippy-node-sydney = craneLib.cargoClippy (common-native-sydney-attrs // { - inherit cargoClippyExtraArgs; - cargoArtifacts = ggxchain-node-sydney.cargoArtifacts; - }); - - clippy-wasm = craneLib.cargoClippy (common-wasm-deps-attrs // { - inherit cargoClippyExtraArgs; - cargoArtifacts = ggxchain-runtimes.cargoArtifacts; - }); - - tf-init = pkgs.writeShellApplication rec { - name = "tf-init"; - text = '' - # here you manually obtain login key - aws configure - ''; - }; - - cloud-tools = with pkgs; [ - awscli2 - terraform - sops - age - nixos-rebuild - ]; - - # seldom to change node image to terraform onto cloud as template - node-image = nixos-generators.nixosGenerate { - system = "x86_64-linux"; - modules = [ - ./flake/nixos-amazon.nix - ] ++ [ ({ ... }: { amazonImage.sizeMB = 16 * 1024; }) ] - ; - format = "amazon"; - }; - - # send variables to terraform - terraformattrs = { - TF_VAR_VALIDATOR_NAME = org; - TF_VAR_AWS_REGION = region; - }; - - terraformbrooklyn = terraformattrs // { - TF_VAR_DOMAIN_NAME = domain; - }; - - terraformbase = terraformattrs // { - TF_VAR_NODE_IMAGE = "\"$(find ${node-image} -type f -name '*.vhd')\""; - }; - - # generates node secrtekey and gets public key of gen-node-key = pkgs.writeShellApplication { name = "gen-node-key"; @@ -327,96 +227,61 @@ ''; }; - # need to generalize for generic TF_VAR consumption - mkTerraformRun = tfname: config: attrs: pkgs.writeShellApplication (rec { - name = " - tf-${tfname}"; - runtimeInputs = cloud-tools; - text = - # just way to put attrs as export variables - with builtins; concatStringsSep "\n" (attrValues (mapAttrs (name: value: "${name}=${value} && export ${name}") attrs)) + - '' - - cd ./terraform/${tfname} - # generate terraform input from nix - cp --force ${config} config-${tfname}.tf.json - - # silly check to avoid providers rechek all the time (nixified version would be more robust) - if [[ ! -d .terraform/providers ]]; then - terraform init --upgrade - fi - - # decrypt secret state (should run only on CI eventually for safety) - # if there is encrypted state, decrypt it - if [[ -f terraform-${tfname}.tfstate.sops ]]; then - # uses age, so can use any of many providers (including aws) - echo "decrypting state" - sops --decrypt --age ${age-pub} terraform-${tfname}.tfstate.sops > terraform-${tfname}.tfstate - # testing that we can finally reencrypt - sops --encrypt --age ${age-pub} terraform-${tfname}.tfstate > terraform-${tfname}.tfstate.sops - fi - - # so we can store part of changes before exit - set +o errexit - # apply state to cloud, eventually should manually approve in CI - terraform "$@" # for example `-- apply -auto-approve` - TERRAFORM_RESULT=$? - set -o errexit - - # encrypt update state back and push it (later in CI special job) - echo "encrypting current state" - if [[ -f terraform-${tfname}.tfstate ]]; then - sops --encrypt --age ${age-pub} terraform-${tfname}.tfstate > terraform-${tfname}.tfstate.sops - fi - - if [[ -f terraform-${tfname}.tfstate.backup ]]; then - echo "encrypting backup state" - sops --encrypt --age ${age-pub} terraform-${tfname}.tfstate.backup > terraform-${tfname}.tfstate.backup.sops - fi - - exit $TERRAFORM_RESULT - ''; - }); + cargoClippyExtraArgs = "-- -D warnings"; - tf-brooklyn = mkTerraformRun "brooklyn" tf-config-brooklyn terraformbrooklyn; - tf-base = mkTerraformRun "base" tf-config-base terraformbase; + in + rec { + checks = { + inherit ggxchain-runtimes ggxchain-node-brooklyn ggxchain-node-sydney; - tf-config-base = terranix.lib.terranixConfiguration { - inherit system; - modules = [ ./flake/terraform/base.nix ]; - }; - tf-config-brooklyn = terranix.lib.terranixConfiguration { - inherit system; - modules = [ ./flake/terraform/brooklyn.nix ]; - }; + fmt = craneLib.cargoFmt (common-attrs // { + cargoExtraArgs = "--all"; + rustFmtExtraArgs = "--color always"; + }); + + clippy-node-brooklyn = craneLib.cargoClippy (common-native-brooklyn-attrs // { + inherit cargoClippyExtraArgs; + cargoArtifacts = ggxchain-node-brooklyn.cargoArtifacts; + }); + + clippy-node-sydney = craneLib.cargoClippy (common-native-sydney-attrs // { + inherit cargoClippyExtraArgs; + cargoArtifacts = ggxchain-node-sydney.cargoArtifacts; + }); + + clippy-wasm = craneLib.cargoClippy (common-wasm-deps-attrs // { + inherit cargoClippyExtraArgs; + cargoArtifacts = ggxchain-runtimes.cargoArtifacts; + }); + + nextest-brooklyn = craneLib.cargoNextest (common-native-brooklyn-attrs // { + cargoArtifacts = ggxchain-node-brooklyn.cargoArtifacts; + }); + + nextest-sydney = craneLib.cargoNextest (common-native-sydney-attrs // { + cargoArtifacts = ggxchain-node-sydney.cargoArtifacts; + }); - mkNixosAwsRemoteRebuild = ip: region: name: pkgs.writeShellApplication - { - name = "deploy-" + name; - runtimeInputs = [ pkgs.nixos-rebuild ]; + nextest-wasm = craneLib.cargoNextest (common-wasm-deps-attrs // { + cargoArtifacts = ggxchain-runtimes.cargoArtifacts; + }); + + doclint = pkgs.writeShellApplication rec { + name = "doclint"; text = '' - # builds node locally and delta copies nix store to remote machine, and applies nix config - # should read from tfstate here to avoid cp paste of name - NIX_SSHOPTS="-i ./terraform/brooklyn/id_rsa.pem" - export NIX_SSHOPTS - # first run will be slow, so can consider variouse optimization later - nixos-rebuild switch --fast --flake .#${name} --target-host root@ec2-${ip}.${region}.compute.amazonaws.com + ${pkgs.lib.meta.getExe pkgs.nodePackages.markdownlint-cli2} "**/*.md" "#.devenv" "#target" "#terraform" "#result" ''; }; - in - rec { + }; packages = flake-utils.lib.flattenTree rec { - inherit custom-spec-files fix ggxchain-runtimes ggxchain-node-brooklyn ggxchain-node-sydney gen-node-key tf-base tf-brooklyn node-image inspect-node-key doclint fmt clippy-node-brooklyn clippy-node-sydney clippy-wasm; + inherit custom-spec-files fix ggxchain-runtimes ggxchain-node-brooklyn ggxchain-node-sydney gen-node-key inspect-node-key; subkey = pkgs.subkey; ggxchain-node = ggxchain-node-brooklyn; node = ggxchain-node; - lint-all = pkgs.symlinkJoin { - name = "lint-all"; - paths = [ doclint fmt clippy-node-brooklyn clippy-node-sydney clippy-wasm ]; - }; + release = pkgs.symlinkJoin { name = "release"; paths = [ node ggxchain-runtimes ]; @@ -487,197 +352,29 @@ echo https://explorer.ggxchain.io/?rpc=ws://127.0.0.1:"$WS_PORT_ALICE"#/explorer ''; }; - - deploy-brooklyn-node-a = mkNixosAwsRemoteRebuild bootnode region "brooklyn-node-a"; - deploy-brooklyn-node-b = mkNixosAwsRemoteRebuild "34-243-72-53" region "brooklyn-node-b"; - deploy-brooklyn-node-c = mkNixosAwsRemoteRebuild "54-246-50-70" region "brooklyn-node-c"; - deploy-brooklyn-node-d = mkNixosAwsRemoteRebuild "3-253-35-79" region "brooklyn-node-d"; - - run-brooklyn-node-a = pkgs.writeShellApplication { - name = "run-brooklyn-node-a"; - runtimeInputs = [ pkgs.subkey pkgs.jq ggxchain-node ]; - text = '' - - RUST_LOG=info,libp2p=info,grandpa=info - export RUST_LOG - NODE_KEY=$(jq --raw-output .secretSeed /root/ed25519.json) - rm -r -f chains - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme=sr25519 \ - --suri "$NODE_KEY" \ - --key-type aura \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme ed25519 \ - --suri "$NODE_KEY" \ - --key-type gran \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node --node-key "$NODE_KEY" --unsafe-ws-external --validator --rpc-methods=unsafe --unsafe-rpc-external --rpc-cors=all --blocks-pruning archive --chain=brooklyn --name=node-a --base-path=/root/ - ''; - }; - - run-brooklyn-node-b = pkgs.writeShellApplication { - name = "run-brooklyn-node-b"; - runtimeInputs = [ pkgs.subkey pkgs.jq ggxchain-node ]; - text = '' - RUST_LOG=info,libp2p=info,grandpa=info - export RUST_LOG - NODE_KEY=$(jq --raw-output .secretSeed /root/ed25519.json) - rm -r -f /root/chains - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme=sr25519 \ - --suri "$NODE_KEY" \ - --key-type aura \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme ed25519 \ - --suri "$NODE_KEY" \ - --key-type gran \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node --node-key "$NODE_KEY" --unsafe-ws-external --validator --rpc-methods=unsafe --unsafe-rpc-external --rpc-cors=all --blocks-pruning archive --chain=brooklyn --name=node-b --base-path=/root/ --bootnodes=/ip4/34.244.81.67/tcp/30333/p2p/${bootnode-peer} - ''; - }; - - run-brooklyn-node-c = pkgs.writeShellApplication { - name = "run-brooklyn-node-c"; - runtimeInputs = [ pkgs.subkey pkgs.jq ggxchain-node ]; - text = '' - RUST_LOG=info,libp2p=info,grandpa=info - export RUST_LOG - NODE_KEY=$(jq --raw-output .secretSeed /root/ed25519.json) - rm -r -f /root/chains - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme=sr25519 \ - --suri "$NODE_KEY" \ - --key-type aura \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme ed25519 \ - --suri "$NODE_KEY" \ - --key-type gran \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node --node-key "$NODE_KEY" --unsafe-ws-external --validator --rpc-methods=unsafe --unsafe-rpc-external --rpc-cors=all --blocks-pruning archive --chain=brooklyn --name=node-c --base-path=/root/ --bootnodes=/ip4/34.244.81.67/tcp/30333/p2p/${bootnode-peer} - ''; - }; - run-brooklyn-node-d = pkgs.writeShellApplication { - name = "run-brooklyn-node-d"; - runtimeInputs = [ pkgs.subkey pkgs.jq ggxchain-node ]; - text = '' - RUST_LOG=info,libp2p=info,grandpa=info - export RUST_LOG - NODE_KEY=$(jq --raw-output .secretSeed /root/ed25519.json) - rm -r -f /root/chains - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme=sr25519 \ - --suri "$NODE_KEY" \ - --key-type aura \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node key insert \ - --base-path=/root/ \ - --chain=brooklyn \ - --scheme ed25519 \ - --suri "$NODE_KEY" \ - --key-type gran \ - --keystore-path ~/chains/remote_brooklyn/keystore - - ggxchain-node --node-key "$NODE_KEY" --unsafe-ws-external --validator --rpc-methods=unsafe --unsafe-rpc-external --rpc-cors=all --blocks-pruning archive --chain=brooklyn --name=node-d --base-path=/root/ --bootnodes=/ip4/34.244.81.67/tcp/30333/p2p/${bootnode-peer} - ''; - }; }; devShells = { - default = devenv.lib.mkShell { - inherit inputs pkgs; - modules = - let - - dylib = { - buildInputs = with pkgs; [ openssl ] ++ darwin; - nativeBuildInputs = rust-native-build-inputs; - doCheck = false; - }; - rust-deps = pkgs.makeRustPlatform { - inherit pkgs; - # dylint needs nightly - cargo = pkgs.rust-bin.beta.latest.default; - rustc = pkgs.rust-bin.beta.latest.default; - }; - cargo-dylint = with pkgs; rust-deps.buildRustPackage (rec { - pname = "cargo-dylint"; - version = "2.1.5"; - src = fetchCrate { - inherit pname version; - sha256 = "sha256-kH6dhUFaQpQ0kvzNyLIXjFAO8VNa2jah6ZaDO7LQKO0="; - }; - - cargoHash = "sha256-YvQI3H/4eWe6r2Tg8qHJqfnw/NpuGHtkRuTL4EzF0xo="; - cargoDepsName = pname; - } // dylib); - dylint-link = with pkgs; rust-deps.buildRustPackage (rec { - pname = "dylint-link"; - version = "2.1.5"; - src = fetchCrate { - inherit pname version; - sha256 = "sha256-oarEYhv0i2wAPmahx0vgWN3kmfEsK3s6D3+qkOqF9pc="; - }; - - cargoHash = "sha256-pMr9hddHAIyIclHRpxqdUaHphjSAVDnvfNjWGDA2EM4="; - cargoDepsName = pname; - } // dylib); - # can `cargo-contract` and nodejs ui easy here - in - [ - { - packages = with pkgs; - [ - rust-toolchain - binaryen - llvmPackages.bintools - dylint-link - nodejs-18_x - nodePackages.markdownlint-cli2 - jq - subkey - openssl - ] - ++ rust-native-build-inputs ++ darwin ++ cloud-tools; - env = rust-env; - # can do systemd/docker stuff here - enterShell = '' - echo ggxshell - ''; - name = "ggxshell"; - - # GH Codespace easy to run (e.g. for Mac users, low spec machines or Frontend developers or hackatons) - devcontainer.enable = true; - } - ]; - }; + default = craneLib.devShell (rust-env // { + checks = self.checks.${system}; + packages = with pkgs; [ + rust-toolchain + nodejs-18_x + nodePackages.markdownlint-cli2 + jq + ]; + + inputsFrom = [ + ggxchain-runtimes + ggxchain-node-brooklyn + ggxchain-node-sydney + ]; + + enterShell = '' + echo ggxshell + ''; + name = "ggxshell"; + }); }; } ); @@ -699,245 +396,7 @@ }; in { - # so basically cp pasted config to remote node with node binry - # really should generate config after terraform run and load it dynamically - brooklyn-node-a = let name = "node-a"; in nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - { - nixpkgs.overlays = [ - (_: _: { - ggxchain-node = pkgs.ggxchain-node; - }) - ]; - } - ./flake/web3nix-module.nix - ./flake/nixos-amazon.nix - ] - ++ [ - ({ ... }: { - web3nix.admin.email = email; - services.nginx.virtualHosts = { - "${name}.${domain}" = { - addSSL = true; - enableACME = true; - root = "/var/www/default"; - # just stub for root page, can route to any usefull info or landing - locations."/" = { - root = pkgs.runCommand "testdir" { } '' - mkdir "$out" - echo "here could be ggx chain pwa" > "$out/index.html" - ''; - }; - locations."/substrate/client" = { - # any all to external servers is routed to node - proxyPass = "http://127.0.0.1:${builtins.toString 9944}"; - proxyWebsockets = true; - }; - }; - }; - security = { - acme = { - defaults.email = email; - acceptTerms = true; - }; - }; - environment.systemPackages = [ pkgs.ggxchain-node ]; - systemd.services.ggxchain-node = { - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - description = "substrate-node"; - serviceConfig = - { - Type = "simple"; - User = "root"; - # yeah, tune each unsafe on release - ExecStart = "${pkgs.lib.meta.getExe per_system.packages.${system}.run-brooklyn-node-a}"; - Restart = "always"; - }; - }; - - }) - ]; - }; - - brooklyn-node-b = let name = "node-b"; in nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - { - nixpkgs.overlays = [ - (_: _: { - ggxchain-node = pkgs.ggxchain-node; - }) - ]; - } - ./flake/web3nix-module.nix - ./flake/nixos-amazon.nix - ] - ++ [ - ({ ... }: { - web3nix.admin.email = email; - services.nginx.virtualHosts = { - "${name}.${domain}" = { - addSSL = true; - enableACME = true; - root = "/var/www/default"; - # just stub for root page, can route to any usefull info or landing - locations."/" = { - root = pkgs.runCommand "testdir" { } '' - mkdir "$out" - echo "here could be ggx chain pwa" > "$out/index.html" - ''; - }; - locations."/substrate/client" = { - # any all to external servers is routed to node - proxyPass = "http://127.0.0.1:${builtins.toString 9944}"; - proxyWebsockets = true; - }; - }; - }; - security = { - acme = { - defaults.email = email; - acceptTerms = true; - }; - }; - environment.systemPackages = [ pkgs.ggxchain-node ]; - systemd.services.ggxchain-node = - { - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - description = "substrate-node"; - serviceConfig = { - Type = "simple"; - User = "root"; - ExecStart = "${pkgs.lib.meta.getExe per_system.packages.${system}.run-brooklyn-node-b}"; - Restart = "always"; - }; - }; - - }) - ]; - }; - - brooklyn-node-c = let name = "node-c"; in nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - { - nixpkgs.overlays = [ - (_: _: { - ggxchain-node = pkgs.ggxchain-node; - }) - ]; - } - ./flake/web3nix-module.nix - ./flake/nixos-amazon.nix - ] - ++ [ - ({ ... }: { - web3nix.admin.email = email; - services.nginx.virtualHosts = { - "${name}.${domain}" = { - addSSL = true; - enableACME = true; - root = "/var/www/default"; - # just stub for root page, can route to any usefull info or landing - locations."/" = { - root = pkgs.runCommand "testdir" { } '' - mkdir "$out" - echo "here could be ggx chain pwa" > "$out/index.html" - ''; - }; - locations."/substrate/client" = { - # any all to external servers is routed to node - proxyPass = "http://127.0.0.1:${builtins.toString 9944}"; - proxyWebsockets = true; - }; - }; - }; - security = { - acme = { - defaults.email = email; - acceptTerms = true; - }; - }; - environment.systemPackages = [ pkgs.ggxchain-node ]; - systemd.services.ggxchain-node = - { - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - description = "substrate-node"; - serviceConfig = { - Type = "simple"; - User = "root"; - ExecStart = "${pkgs.lib.meta.getExe per_system.packages.${system}.run-brooklyn-node-c}"; - Restart = "always"; - }; - }; - - }) - ]; - }; - - brooklyn-node-d = let name = "node-d"; in nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - { - nixpkgs.overlays = [ - (_: _: { - ggxchain-node = pkgs.ggxchain-node; - }) - ]; - } - ./flake/web3nix-module.nix - ./flake/nixos-amazon.nix - ] - ++ [ - ({ ... }: { - web3nix.admin.email = email; - services.nginx.virtualHosts = { - "${name}.${domain}" = { - addSSL = true; - enableACME = true; - root = "/var/www/default"; - # just stub for root page, can route to any usefull info or landing - locations."/" = { - root = pkgs.runCommand "testdir" { } '' - mkdir "$out" - echo "here could be ggx chain pwa" > "$out/index.html" - ''; - }; - locations."/substrate/client" = { - # any all to external servers is routed to node - proxyPass = "http://127.0.0.1:${builtins.toString 9944}"; - proxyWebsockets = true; - }; - }; - }; - security = { - acme = { - defaults.email = email; - acceptTerms = true; - }; - }; - environment.systemPackages = [ pkgs.ggxchain-node ]; - systemd.services.ggxchain-node = - { - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - description = "substrate-node"; - serviceConfig = { - Type = "simple"; - User = "root"; - ExecStart = "${pkgs.lib.meta.getExe per_system.packages.${system}.run-brooklyn-node-d}"; - Restart = "always"; - }; - }; - - }) - ]; - }; }; }; -} + } diff --git a/node/src/chain_spec.rs b/node/src/chain_spec.rs index 23ad6c41..28abd98d 100644 --- a/node/src/chain_spec.rs +++ b/node/src/chain_spec.rs @@ -6,6 +6,11 @@ use crate::runtime::{ WASM_BINARY, }; +#[cfg(not(feature = "brooklyn"))] +const CHAIN_ID: u64 = 8886u64; +#[cfg(feature = "brooklyn")] +const CHAIN_ID: u64 = 888866u64; + pub type ChainSpec = sc_service::GenericChainSpec; fn properties(token_symbol: &str) -> Option { @@ -60,7 +65,7 @@ pub fn development_config() -> Result { ], // Initial PoA authorities vec![ValidatorIdentity::from_seed("Alice")], - 8886, + CHAIN_ID, true, ) }, @@ -109,7 +114,7 @@ pub fn local_testnet_config() -> Result { ValidatorIdentity::from_seed("Alice"), ValidatorIdentity::from_seed("Bob"), ], - 8886, + CHAIN_ID, true, ) }, diff --git a/node/tests/allowlist_forbids_become_validator.rs b/node/tests/allowlist_forbids_become_validator.rs index 0f51f30a..02dbee45 100644 --- a/node/tests/allowlist_forbids_become_validator.rs +++ b/node/tests/allowlist_forbids_become_validator.rs @@ -2,16 +2,15 @@ pub mod common; #[subxt::subxt(runtime_metadata_path = "./tests/allowlist_metadata.scale")] pub mod ggx {} -use nix::{ - sys::signal::{kill, Signal::SIGINT}, - unistd::Pid, -}; - -use subxt::OnlineClient; - #[cfg(all(unix, feature = "allowlist"))] #[tokio::test] async fn allowlist_forbids_become_validator() -> Result<(), Box> { + use nix::{ + sys::signal::{kill, Signal::SIGINT}, + unistd::Pid, + }; + use subxt::OnlineClient; + let mut alice = common::start_node_for_local_chain("alice", "dev").await; common::wait_n_finalized_blocks_from(1, &alice.ws_url).await; diff --git a/runtime/runtime-common/Cargo.toml b/runtime/runtime-common/Cargo.toml index bec30a4a..02824094 100644 --- a/runtime/runtime-common/Cargo.toml +++ b/runtime/runtime-common/Cargo.toml @@ -43,7 +43,16 @@ pallet-xvm = { workspace = true, optional = true } log.workspace = true [dev-dependencies] +frame-election-provider-support.workspace = true +pallet-aura.workspace = true +pallet-scheduler.workspace = true +pallet-staking.workspace = true +pallet-timestamp.workspace = true +pallet-treasury.workspace = true +paste.workspace = true proptest.workspace = true +sp-consensus-aura.workspace = true +sp-io.workspace = true test-strategy.workspace = true [features] diff --git a/runtime/runtime-common/src/pos/currency.rs b/runtime/runtime-common/src/pos/currency.rs index 6bf56b60..225911c0 100644 --- a/runtime/runtime-common/src/pos/currency.rs +++ b/runtime/runtime-common/src/pos/currency.rs @@ -735,18 +735,12 @@ mod tests { pallet_prelude::Weight, parameter_types, traits::{EqualPrivilegeOnly, FindAuthor, OnFinalize, OnInitialize}, - weights::constants::RocksDbWeight, ConsensusEngineId, PalletId, }; use frame_system::{EnsureRoot, EnsureWithSuccess}; use pallet_evm::{AddressMapping, FeeCalculator}; - use sp_core::{ConstU32, ConstU64, H160, H256, U256}; - use sp_runtime::{ - impl_opaque_keys, - testing::{Header, UintAuthorityId}, - traits::IdentityLookup, - Perbill, Permill, - }; + use sp_core::{ConstU32, H160, U256}; + use sp_runtime::{impl_opaque_keys, testing::UintAuthorityId, Perbill, Permill}; use sp_std::convert::{TryFrom, TryInto}; use std::str::FromStr; @@ -831,30 +825,30 @@ mod tests { } impl frame_system::Config for Test { + type AccountData = pallet_balances::AccountData; + type AccountId = u32; type BaseCallFilter = frame_support::traits::Everything; - type BlockWeights = BlockWeights; + type BlockHashCount = (); type BlockLength = (); - type DbWeight = RocksDbWeight; - type RuntimeOrigin = RuntimeOrigin; - type Index = u64; type BlockNumber = u64; - type RuntimeCall = RuntimeCall; - type Hash = H256; - type Version = (); + type BlockWeights = (); + type DbWeight = (); + type Hash = sp_core::H256; type Hashing = sp_runtime::traits::BlakeTwo256; - type AccountId = u32; - type Lookup = IdentityLookup; - type Header = Header; - type RuntimeEvent = RuntimeEvent; - type BlockHashCount = ConstU64<250>; - type PalletInfo = PalletInfo; - type AccountData = pallet_balances::AccountData; - type OnNewAccount = (); + type Header = sp_runtime::testing::Header; + type Index = u64; + type Lookup = sp_runtime::traits::IdentityLookup; + type MaxConsumers = frame_support::traits::ConstU32<16>; type OnKilledAccount = (); - type SystemWeightInfo = (); - type SS58Prefix = (); + type OnNewAccount = (); type OnSetCode = (); - type MaxConsumers = frame_support::traits::ConstU32<16>; + type PalletInfo = PalletInfo; + type RuntimeCall = RuntimeCall; + type RuntimeEvent = RuntimeEvent; + type RuntimeOrigin = RuntimeOrigin; + type SS58Prefix = (); + type SystemWeightInfo = (); + type Version = (); } parameter_types! { @@ -894,6 +888,7 @@ mod tests { type PrivilegedOrigin = EnsureRoot; type FeeComissionRecipient = Treasury; type DecayPeriod = DecayPeriod; + type WeightInfo = crate::weights::currency::SubstrateWeight; } pub struct FixedGasPrice; diff --git a/runtime/runtime-common/src/pos/session_payout/mock.rs b/runtime/runtime-common/src/pos/session_payout/mock.rs index 46efa51e..23552fe0 100644 --- a/runtime/runtime-common/src/pos/session_payout/mock.rs +++ b/runtime/runtime-common/src/pos/session_payout/mock.rs @@ -4,7 +4,7 @@ use crate::pos::currency as pallet_currency; use frame_election_provider_support::{onchain, SequentialPhragmen}; use frame_support::{ pallet_prelude::Weight, - parameter_types, + parameter_types, sp_io, traits::{GenesisBuild, OnFinalize, OnInitialize}, weights::constants::RocksDbWeight, PalletId, @@ -241,6 +241,7 @@ impl pallet_session_payout::Config for Test { type RemainderDestination = Treasury; type TimeProvider = Timestamp; type CurrencyInfo = CurrencyManager; + type WeightInfo = crate::weights::session_payout::SubstrateWeight; } pub const BALANCE: u64 = 10_000_000_000_000; From 4330ea154c48c994ae970579a6b564fbb2a041b0 Mon Sep 17 00:00:00 2001 From: Artur Yurii Korchynskyi <42449190+akorchyn@users.noreply.github.com> Date: Fri, 13 Oct 2023 12:11:10 +0300 Subject: [PATCH 34/35] Update flake.nix --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index 82f4d34f..bba04626 100644 --- a/flake.nix +++ b/flake.nix @@ -257,14 +257,17 @@ nextest-brooklyn = craneLib.cargoNextest (common-native-brooklyn-attrs // { cargoArtifacts = ggxchain-node-brooklyn.cargoArtifacts; + doCheck = true; }); nextest-sydney = craneLib.cargoNextest (common-native-sydney-attrs // { cargoArtifacts = ggxchain-node-sydney.cargoArtifacts; + doCheck = true; }); nextest-wasm = craneLib.cargoNextest (common-wasm-deps-attrs // { cargoArtifacts = ggxchain-runtimes.cargoArtifacts; + doCheck = true; }); doclint = pkgs.writeShellApplication rec { From 1887cd33ccbc5c0bcada0f9948d96c2e7f23f032 Mon Sep 17 00:00:00 2001 From: akorchyn Date: Mon, 16 Oct 2023 12:34:25 +0300 Subject: [PATCH 35/35] fixed CI --- flake.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index bba04626..3f3dbc66 100644 --- a/flake.nix +++ b/flake.nix @@ -35,7 +35,7 @@ nixConfig = { # so you do not need to build locally if CI did it (no cache for ARM/MAC because did not added machines to build matrix) extra-substituters = [ "https://cache.nixos.org" "https://golden-gate-ggx.cachix.org" ]; - extra-trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "ggx-ggx.cachix.org-1:Sh6MjTG5qxsQcFDUMlkkRdAbTwZza9JqaETba9VgjnI=" ]; + extra-trusted-public-keys = [ "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" "golden-gate-ggx.cachix.org-1:Sh6MjTG5qxsQcFDUMlkkRdAbTwZza9JqaETba9VgjnI=" ]; }; # inputs and systems are know ahead of time -> we can evalute all nix -> flake make nix """statically typed""" @@ -76,6 +76,7 @@ nativeBuildInputs = with pkgs; rust-native-build-inputs ++ [ openssl ] ++ darwin; cargoCheckCommand = "true"; + doCheck = false; src = rust-src; pname = "..."; version = "..."; @@ -228,13 +229,9 @@ }; cargoClippyExtraArgs = "-- -D warnings"; - in rec { checks = { - inherit ggxchain-runtimes ggxchain-node-brooklyn ggxchain-node-sydney; - - fmt = craneLib.cargoFmt (common-attrs // { cargoExtraArgs = "--all"; rustFmtExtraArgs = "--color always"; @@ -265,11 +262,6 @@ doCheck = true; }); - nextest-wasm = craneLib.cargoNextest (common-wasm-deps-attrs // { - cargoArtifacts = ggxchain-runtimes.cargoArtifacts; - doCheck = true; - }); - doclint = pkgs.writeShellApplication rec { name = "doclint"; text = ''