From a7c64b4371aa13bee4e9cdd29e10f50ba05bc77c Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Fri, 17 Nov 2023 08:16:46 +0000 Subject: [PATCH] build: patch to use substrate master --- --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ "cipher 0.3.0", "ctr 0.8.0", "ghash 0.4.4", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -124,7 +124,7 @@ "cipher 0.4.4", "ctr 0.9.2", "ghash 0.5.0", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -149,9 +149,9 @@ [[package]] name = "ahash" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" dependencies = [ "getrandom 0.2.10", "once_cell", @@ -160,21 +160,22 @@ [[package]] name = "ahash" -version = "0.8.3" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" +checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" dependencies = [ "cfg-if", "getrandom 0.2.10", "once_cell", "version_check", + "zerocopy", ] [[package]] name = "aho-corasick" -version = "1.1.1" +version = "1.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea5d730647d4fadd988536d06fecce94b7b4f2a7efdae548f1cf4b63205518ab" +checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" dependencies = [ "memchr", ] @@ -310,6 +311,17 @@ checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" [[package]] +name = "ark-bls12-377" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb00293ba84f51ce3bd026bd0de55899c4e68f0a39a5728cebae3a73ffdc0a4f" +dependencies = [ + "ark-ec", + "ark-ff", + "ark-std", +] + +[[package]] name = "ark-bls12-381" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -408,19 +420,6 @@ [[package]] name = "ark-scale" -version = "0.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49b08346a3e38e2be792ef53ee168623c9244d968ff00cd70fb9932f6fe36393" -dependencies = [ - "ark-ec", - "ark-ff", - "ark-serialize", - "ark-std", - "parity-scale-codec", -] - -[[package]] -name = "ark-scale" version = "0.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51bd73bb6ddb72630987d37fa963e99196896c0d0ea81b7c894567e74a2f83af" @@ -436,7 +435,7 @@ [[package]] name = "ark-secret-scalar" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" +source = "git+https://github.com/w3f/ring-vrf?rev=4b09416#4b09416fd23383ec436ddac127d58c7b7cd392c6" dependencies = [ "ark-ec", "ark-ff", @@ -484,7 +483,7 @@ [[package]] name = "ark-transcript" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" +source = "git+https://github.com/w3f/ring-vrf?rev=4b09416#4b09416fd23383ec436ddac127d58c7b7cd392c6" dependencies = [ "ark-ff", "ark-serialize", @@ -496,6 +495,12 @@ [[package]] name = "array-bytes" +version = "4.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" + +[[package]] +name = "array-bytes" version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9b1c5a481ec30a5abd8dfbd94ab5cf1bb4e9a66be7f1b3b322f2f1170c200fd" @@ -607,15 +612,15 @@ checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" dependencies = [ "concurrent-queue", - "event-listener", + "event-listener 2.5.3", "futures-core", ] [[package]] name = "async-executor" -version = "1.5.4" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c1da3ae8dabd9c00f453a329dfe1fb28da3c0a72e2478cdcd93171740c20499" +checksum = "4b0c4a4f319e45986f347ee47fef8bf5e81c9abc3f6f58dc2391439f30df65f0" dependencies = [ "async-lock", "async-task", @@ -650,20 +655,40 @@ "futures-lite", "log", "parking", - "polling", - "rustix 0.37.24", + "polling 2.8.0", + "rustix 0.37.27", "slab", - "socket2 0.4.9", + "socket2 0.4.10", "waker-fn", ] [[package]] +name = "async-io" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10da8f3146014722c89e7859e1d7bb97873125d7346d10ca642ffab794355828" +dependencies = [ + "async-lock", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling 3.3.0", + "rustix 0.38.21", + "slab", + "tracing", + "waker-fn", + "windows-sys 0.48.0", +] + +[[package]] name = "async-lock" version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b" dependencies = [ - "event-listener", + "event-listener 2.5.3", ] [[package]] @@ -672,55 +697,61 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0434b1ed18ce1cf5769b8ac540e33f01fa9471058b5e89da9e06f3c882a8c12f" dependencies = [ - "async-io", + "async-io 1.13.0", "blocking", "futures-lite", ] [[package]] name = "async-process" -version = "1.7.0" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" +checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88" dependencies = [ - "async-io", + "async-io 1.13.0", "async-lock", - "autocfg", + "async-signal", "blocking", "cfg-if", - "event-listener", + "event-listener 3.0.1", "futures-lite", - "rustix 0.37.24", - "signal-hook", + "rustix 0.38.21", "windows-sys 0.48.0", ] [[package]] -name = "async-recursion" -version = "1.0.5" +name = "async-signal" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0" +checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5" dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.37", + "async-io 2.1.0", + "async-lock", + "atomic-waker", + "cfg-if", + "futures-core", + "futures-io", + "rustix 0.38.21", + "signal-hook-registry", + "slab", + "windows-sys 0.48.0", ] [[package]] name = "async-task" -version = "4.4.1" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9441c6b2fe128a7c2bf680a44c34d0df31ce09e5b7e401fcca3faa483dbc921" +checksum = "b4eb2cdb97421e01129ccb49169d8279ed21e829929144f4a22a6e54ac549ca1" [[package]] name = "async-trait" -version = "0.1.73" +version = "0.1.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" +checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -795,13 +826,12 @@ [[package]] name = "bandersnatch_vrfs" version = "0.0.1" -source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" +source = "git+https://github.com/w3f/ring-vrf?rev=4b09416#4b09416fd23383ec436ddac127d58c7b7cd392c6" dependencies = [ "ark-bls12-381", "ark-ec", "ark-ed-on-bls12-381-bandersnatch", "ark-ff", - "ark-scale 0.0.11", "ark-serialize", "ark-std", "dleq_vrf", @@ -840,9 +870,9 @@ [[package]] name = "base64" -version = "0.21.4" +version = "0.21.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" +checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" [[package]] name = "base64ct" @@ -862,7 +892,7 @@ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "hash-db 0.16.0", "log", @@ -895,7 +925,7 @@ "regex", "rustc-hash", "shlex", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -905,6 +935,10 @@ checksum = "93f2635620bf0b9d4576eb7bb9a38a55df78bd1205d26fa994b25911a69f212f" dependencies = [ "bitcoin_hashes", + "rand 0.8.5", + "rand_core 0.6.4", + "serde", + "unicode-normalization", ] [[package]] @@ -921,9 +955,9 @@ [[package]] name = "bitflags" -version = "2.4.0" +version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" +checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" [[package]] name = "bitvec" @@ -939,6 +973,18 @@ [[package]] name = "blake2" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94cb07b0da6a73955f8fb85d24c466778e70cda767a568229b104f0264089330" +dependencies = [ + "byte-tools", + "crypto-mac 0.7.0", + "digest 0.8.1", + "opaque-debug 0.2.3", +] + +[[package]] +name = "blake2" version = "0.10.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" @@ -1048,9 +1094,9 @@ [[package]] name = "blocking" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94c4ef1f913d78636d78d538eec1f18de81e481f44b1be0a81060090530846e1" +checksum = "8c36a4d0d48574b3dd360b4b7d95cc651d2b6557b6402848a27d4b228a473e2a" dependencies = [ "async-channel", "async-lock", @@ -1084,9 +1130,9 @@ [[package]] name = "bounded-collections" -version = "0.1.8" +version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb5b05133427c07c4776906f673ccf36c21b102c9829c641a5b56bd151d44fd6" +checksum = "ca548b6163b872067dc5eb82fd130c56881435e30367d2073594a3d9744120dd" dependencies = [ "log", "parity-scale-codec", @@ -1104,6 +1150,17 @@ ] [[package]] +name = "bp-xcm-bridge-hub-router" +version = "0.1.0" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-runtime", +] + +[[package]] name = "bs58" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1120,9 +1177,9 @@ [[package]] name = "bstr" -version = "1.6.2" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c2f7349907b712260e64b0afe2f84692af14a454be26187d9df565c7f69266a" +checksum = "c79ad7fb2dd38f3dabd76b09c6a5a20c038fc0213ef1e9afd30eb777f120f019" dependencies = [ "memchr", "serde", @@ -1163,9 +1220,9 @@ [[package]] name = "byteorder" -version = "1.4.3" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" [[package]] name = "bytes" @@ -1185,6 +1242,16 @@ ] [[package]] +name = "c2-chacha" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d27dae93fe7b1e0424dc57179ac396908c26b035a87234809f5c4dfd1b47dc80" +dependencies = [ + "cipher 0.2.5", + "ppv-lite86", +] + +[[package]] name = "camino" version = "1.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1195,9 +1262,9 @@ [[package]] name = "cargo-platform" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2cfa25e60aea747ec7e1124f238816749faa93759c6ff5b31f1ccdda137f4479" +checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36" dependencies = [ "serde", ] @@ -1210,7 +1277,7 @@ dependencies = [ "camino", "cargo-platform", - "semver 1.0.19", + "semver 1.0.20", "serde", "serde_json", "thiserror", @@ -1234,7 +1301,7 @@ dependencies = [ "aead 0.3.2", "cipher 0.2.5", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -1268,6 +1335,16 @@ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e" [[package]] +name = "chacha" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddf3c081b5fba1e5615640aae998e0fbd10c24cbd897ee39ed754a77601a4862" +dependencies = [ + "byteorder", + "keystream", +] + +[[package]] name = "chacha20" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1380,9 +1457,9 @@ [[package]] name = "clap" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" +checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" dependencies = [ "clap_builder", "clap_derive", @@ -1390,39 +1467,40 @@ [[package]] name = "clap_builder" -version = "4.4.6" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" +checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" dependencies = [ "anstream", "anstyle", "clap_lex", "strsim", + "terminal_size", ] [[package]] name = "clap_derive" -version = "4.4.2" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0862016ff20d69b84ef8247369fabf5c008a7417002411897d40ee1f4532b873" +checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "clap_lex" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd7cc57abe963c6d3b9d8be5b06ba7c8957a930305ca90304f24ef040aa6f961" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "coarsetime" -version = "0.1.28" +version = "0.1.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99280f81a35511dda7d44f7c943491b41d3ac6fd0b54aea92498bec8612a2423" +checksum = "a73ef0d00d14301df35d0f13f5ea32344de6b00837485c358458f1e7f2d27db4" dependencies = [ "libc", "once_cell", @@ -1448,19 +1526,19 @@ [[package]] name = "comfy-table" -version = "7.0.1" +version = "7.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ab77dbd8adecaf3f0db40581631b995f312a8a5ae3aa9993188bb8f23d83a5b" +checksum = "7c64043d6c7b7a4c58e39e7efccfdea7b93d885a795d0c054a69dbbf4dd52686" dependencies = [ - "strum", - "strum_macros", + "strum 0.25.0", + "strum_macros 0.25.3", "unicode-width", ] [[package]] name = "common" version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" +source = "git+https://github.com/w3f/ring-proof#edd1e90b847e560bf60fc2e8712235ccfa11a9a9" dependencies = [ "ark-ec", "ark-ff", @@ -1469,6 +1547,7 @@ "ark-std", "fflonk", "merlin 3.0.0", + "rand_chacha 0.3.1", ] [[package]] @@ -1507,23 +1586,21 @@ [[package]] name = "const-random" -version = "0.1.15" +version = "0.1.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e" +checksum = "5aaf16c9c2c612020bcfd042e170f6e32de9b9d75adb5277cdbbd2e2c8c8299a" dependencies = [ "const-random-macro", - "proc-macro-hack", ] [[package]] name = "const-random-macro" -version = "0.1.15" +version = "0.1.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb" +checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e" dependencies = [ "getrandom 0.2.10", "once_cell", - "proc-macro-hack", "tiny-keccak", ] @@ -1540,6 +1617,12 @@ checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2" [[package]] +name = "constcat" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd7e35aee659887cbfb97aaf227ac12cad1a9d7c71e55ff3376839ed4e282d08" + +[[package]] name = "convert_case" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1591,9 +1674,9 @@ [[package]] name = "cpufeatures" -version = "0.2.9" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1" +checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" dependencies = [ "libc", ] @@ -1707,9 +1790,9 @@ [[package]] name = "crc-catalog" -version = "2.2.0" +version = "2.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" +checksum = "4939f9ed1444bd8c896d37f3090012fa6e7834fe84ef8c9daa166109515732f9" [[package]] name = "crc32fast" @@ -1777,7 +1860,7 @@ dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -1789,7 +1872,7 @@ dependencies = [ "generic-array 0.14.7", "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -1806,12 +1889,22 @@ [[package]] name = "crypto-mac" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" +dependencies = [ + "generic-array 0.12.4", + "subtle 1.0.0", +] + +[[package]] +name = "crypto-mac" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ "generic-array 0.14.7", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -1821,7 +1914,7 @@ checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" dependencies = [ "generic-array 0.14.7", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -1845,7 +1938,7 @@ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "clap", "parity-scale-codec", @@ -1861,7 +1954,7 @@ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -1884,7 +1977,7 @@ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-client-collator", @@ -1926,7 +2019,7 @@ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -1955,7 +2048,7 @@ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "anyhow", "async-trait", @@ -1970,7 +2063,7 @@ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -1993,7 +2086,7 @@ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2017,7 +2110,7 @@ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2052,7 +2145,7 @@ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2070,7 +2163,7 @@ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2087,7 +2180,7 @@ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2100,6 +2193,7 @@ "log", "parity-scale-codec", "polkadot-parachain-primitives", + "polkadot-runtime-parachains", "scale-info", "sp-core", "sp-externalities", @@ -2111,24 +2205,24 @@ "sp-trie", "sp-version", "staging-xcm", - "trie-db", + "trie-db 0.28.0", ] [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2144,8 +2238,9 @@ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "bp-xcm-bridge-hub-router", "cumulus-primitives-core", "frame-benchmarking", "frame-support", @@ -2153,8 +2248,10 @@ "log", "parity-scale-codec", "polkadot-runtime-common", + "polkadot-runtime-parachains", "rand_chacha 0.3.1", "scale-info", + "sp-core", "sp-io", "sp-runtime", "sp-std", @@ -2165,7 +2262,7 @@ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2179,7 +2276,7 @@ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2196,7 +2293,7 @@ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2219,7 +2316,7 @@ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-primitives-core", "futures", @@ -2232,13 +2329,15 @@ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-primitives-core", "frame-support", "log", + "pallet-xcm-benchmarks", "parity-scale-codec", "polkadot-runtime-common", + "polkadot-runtime-parachains", "sp-io", "sp-runtime", "sp-std", @@ -2250,7 +2349,7 @@ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2274,7 +2373,7 @@ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2292,9 +2391,9 @@ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "async-trait", "cumulus-primitives-core", "cumulus-relay-chain-interface", @@ -2316,18 +2415,18 @@ "sc-service", "sc-tracing", "sc-utils", - "schnellru", "sp-api", "sp-consensus", "sp-consensus-babe", "sp-runtime", + "substrate-prometheus-endpoint", "tracing", ] [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2365,7 +2464,7 @@ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -2385,7 +2484,7 @@ "byteorder", "digest 0.8.1", "rand_core 0.5.1", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -2398,7 +2497,7 @@ "byteorder", "digest 0.9.0", "rand_core 0.5.1", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -2415,19 +2514,19 @@ "fiat-crypto", "platforms", "rustc_version", - "subtle", + "subtle 2.4.1", "zeroize", ] [[package]] name = "curve25519-dalek-derive" -version = "0.1.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fdaf97f4804dcebfa5862639bc9ce4121e82140bec2a987ac5140294865b5b" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -2445,9 +2544,9 @@ [[package]] name = "cxx" -version = "1.0.107" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbe98ba1789d56fb3db3bee5e032774d4f421b685de7ba703643584ba24effbe" +checksum = "7129e341034ecb940c9072817cd9007974ea696844fc4dd582dc1653a7fbe2e8" dependencies = [ "cc", "cxxbridge-flags", @@ -2457,9 +2556,9 @@ [[package]] name = "cxx-build" -version = "1.0.107" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4ce20f6b8433da4841b1dadfb9468709868022d829d5ca1f2ffbda928455ea3" +checksum = "a2a24f3f5f8eed71936f21e570436f024f5c2e25628f7496aa7ccd03b90109d5" dependencies = [ "cc", "codespan-reporting", @@ -2467,24 +2566,24 @@ "proc-macro2", "quote", "scratch", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "cxxbridge-flags" -version = "1.0.107" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20888d9e1d2298e2ff473cee30efe7d5036e437857ab68bbfea84c74dba91da2" +checksum = "06fdd177fc61050d63f67f5bd6351fac6ab5526694ea8e359cd9cd3b75857f44" [[package]] name = "cxxbridge-macro" -version = "1.0.107" +version = "1.0.110" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fa16a70dd58129e4dfffdff535fb1bce66673f7bbeec4a5a1765a504e1ccd84" +checksum = "587663dd5fb3d10932c8aecfe7c844db1bcf0aee93eeab08fac13dc1212c2e7f" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -2599,9 +2698,12 @@ [[package]] name = "deranged" -version = "0.3.8" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946" +checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" +dependencies = [ + "powerfmt", +] [[package]] name = "derivative" @@ -2702,14 +2804,14 @@ "block-buffer 0.10.4", "const-oid", "crypto-common", - "subtle", + "subtle 2.4.1", ] [[package]] name = "directories" -version = "4.0.1" +version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210" +checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" dependencies = [ "dirs-sys", ] @@ -2726,13 +2828,14 @@ [[package]] name = "dirs-sys" -version = "0.3.7" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" dependencies = [ "libc", + "option-ext", "redox_users", - "winapi", + "windows-sys 0.48.0", ] [[package]] @@ -2754,17 +2857,17 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "dleq_vrf" version = "0.0.2" -source = "git+https://github.com/w3f/ring-vrf?rev=3119f51#3119f51b54b69308abfb0671f6176cb125ae1bf1" +source = "git+https://github.com/w3f/ring-vrf?rev=4b09416#4b09416fd23383ec436ddac127d58c7b7cd392c6" dependencies = [ "ark-ec", "ark-ff", - "ark-scale 0.0.10", + "ark-scale", "ark-secret-scalar", "ark-serialize", "ark-std", @@ -2776,18 +2879,18 @@ [[package]] name = "docify" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76ee528c501ddd15d5181997e9518e59024844eac44fd1e40cb20ddb2a8562fa" +checksum = "4235e9b248e2ba4b92007fe9c646f3adf0ffde16dc74713eacc92b8bc58d8d2f" dependencies = [ "docify_macros", ] [[package]] name = "docify_macros" -version = "0.2.4" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca01728ab2679c464242eca99f94e2ce0514b52ac9ad950e2ed03fca991231c" +checksum = "47020e12d7c7505670d1363dd53d6c23724f71a90a3ae32ff8eba40de8404626" dependencies = [ "common-path", "derive-syn-parse", @@ -2795,7 +2898,7 @@ "proc-macro2", "quote", "regex", - "syn 2.0.37", + "syn 2.0.38", "termcolor", "toml 0.7.8", "walkdir", @@ -2866,7 +2969,7 @@ dependencies = [ "der 0.7.8", "digest 0.10.7", - "elliptic-curve 0.13.5", + "elliptic-curve 0.13.6", "rfc6979 0.4.0", "signature 2.1.0", "spki 0.7.2", @@ -2874,9 +2977,9 @@ [[package]] name = "ed25519" -version = "2.2.2" +version = "2.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60f6d271ca33075c88028be6f04d502853d63a5ece419d269c15315d4fc1cf1d" +checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ "pkcs8 0.10.2", "signature 2.1.0", @@ -2918,7 +3021,7 @@ dependencies = [ "curve25519-dalek 4.1.1", "ed25519", - "hashbrown 0.14.1", + "hashbrown 0.14.2", "hex", "rand_core 0.6.4", "sha2 0.10.8", @@ -2949,15 +3052,15 @@ "pkcs8 0.9.0", "rand_core 0.6.4", "sec1 0.3.0", - "subtle", + "subtle 2.4.1", "zeroize", ] [[package]] name = "elliptic-curve" -version = "0.13.5" +version = "0.13.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b" +checksum = "d97ca172ae9dc9f9b779a6e3a65d308f2af74e5b8c921299075bdb4a0370e914" dependencies = [ "base16ct 0.2.0", "crypto-bigint 0.5.3", @@ -2968,7 +3071,7 @@ "pkcs8 0.10.2", "rand_core 0.6.4", "sec1 0.7.3", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -3007,7 +3110,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -3018,20 +3121,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", -] - -[[package]] -name = "env_logger" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7" -dependencies = [ - "atty", - "humantime", - "log", - "regex", - "termcolor", + "syn 2.0.38", ] [[package]] @@ -3061,23 +3151,12 @@ [[package]] name = "errno" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add4f07d43996f76ef320709726a556a9d4f965d9410d8d0271132d2f8293480" +checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" dependencies = [ - "errno-dragonfly", "libc", "windows-sys 0.48.0", -] - -[[package]] -name = "errno-dragonfly" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" -dependencies = [ - "cc", - "libc", ] [[package]] @@ -3136,6 +3215,17 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] +name = "event-listener" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01cec0252c2afff729ee6f00e903d479fba81784c8e2bd77447673471fdfaea1" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite 0.2.13", +] + +[[package]] name = "evm" version = "0.39.1" source = "git+https://github.com/rust-blockchain/evm?rev=b7b82c7e1fc57b7449d6dfa6826600de37cc1e65#b7b82c7e1fc57b7449d6dfa6826600de37cc1e65" @@ -3248,27 +3338,15 @@ [[package]] name = "expander" -version = "0.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3774182a5df13c3d1690311ad32fbe913feef26baba609fa2dd5f72042bd2ab6" -dependencies = [ - "blake2", - "fs-err", - "proc-macro2", - "quote", -] - -[[package]] -name = "expander" version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5f86a749cf851891866c10515ef6c299b5c69661465e9c3bbe7e07a2b77fb0f7" dependencies = [ - "blake2", + "blake2 0.10.6", "fs-err", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -3316,7 +3394,7 @@ dependencies = [ "expander 0.0.4", "indexmap 1.9.3", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -3326,7 +3404,7 @@ [[package]] name = "fc-api" version = "1.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "async-trait", "fp-storage", @@ -3338,7 +3416,7 @@ [[package]] name = "fc-consensus" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "async-trait", "fp-consensus", @@ -3354,7 +3432,7 @@ [[package]] name = "fc-db" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "async-trait", "fc-api", @@ -3375,7 +3453,7 @@ [[package]] name = "fc-mapping-sync" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "fc-db", "fc-storage", @@ -3396,7 +3474,7 @@ [[package]] name = "fc-rpc" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -3450,7 +3528,7 @@ [[package]] name = "fc-rpc-core" version = "1.1.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -3463,7 +3541,7 @@ [[package]] name = "fc-storage" version = "1.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -3494,7 +3572,7 @@ checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" dependencies = [ "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -3504,13 +3582,13 @@ checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449" dependencies = [ "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", ] [[package]] name = "fflonk" version = "0.1.0" -source = "git+https://github.com/w3f/fflonk#26a5045b24e169cffc1f9328ca83d71061145c40" +source = "git+https://github.com/w3f/fflonk#e141d4b6f42fb481aefe1b479788694945b6940d" dependencies = [ "ark-ec", "ark-ff", @@ -3522,9 +3600,9 @@ [[package]] name = "fiat-crypto" -version = "0.2.1" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0870c84016d4b481be5c9f323c24f65e31e901ae618f0e80f4308fb00de1d2d" +checksum = "a481586acf778f1b1455424c343f71124b048ffa5f4fc3f8f6ae9dc432dcb3c7" [[package]] name = "file-per-thread-logger" @@ -3532,7 +3610,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "84f2e425d9790201ba4af4630191feac6dcc98765b118d4d18e91d23c2353866" dependencies = [ - "env_logger 0.10.0", + "env_logger", "log", ] @@ -3584,9 +3662,9 @@ [[package]] name = "flate2" -version = "1.0.27" +version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6c98ee8095e9d1dcbf2fcc6d95acccb90d1c81db1e44725c6a984b1dbdfb010" +checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" dependencies = [ "crc32fast", "libz-sys", @@ -3611,7 +3689,7 @@ [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", ] @@ -3628,7 +3706,7 @@ [[package]] name = "fp-account" version = "1.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "hex", "impl-serde", @@ -3647,7 +3725,7 @@ [[package]] name = "fp-consensus" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "parity-scale-codec", @@ -3659,7 +3737,7 @@ [[package]] name = "fp-ethereum" version = "1.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -3672,7 +3750,7 @@ [[package]] name = "fp-evm" version = "3.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "evm", "frame-support", @@ -3688,7 +3766,7 @@ [[package]] name = "fp-rpc" version = "3.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -3705,7 +3783,7 @@ [[package]] name = "fp-self-contained" version = "1.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "frame-support", "parity-scale-codec", @@ -3717,7 +3795,7 @@ [[package]] name = "fp-storage" version = "2.0.0" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "parity-scale-codec", "serde", @@ -3732,7 +3810,7 @@ [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-support-procedural", @@ -3757,10 +3835,10 @@ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "Inflector", - "array-bytes", + "array-bytes 6.1.0", "chrono", "clap", "comfy-table", @@ -3805,18 +3883,18 @@ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3833,7 +3911,7 @@ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -3863,9 +3941,8 @@ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "async-recursion", "futures", "indicatif", "jsonrpsee", @@ -3885,7 +3962,7 @@ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "aquamarine", "bitflags 1.3.2", @@ -3925,7 +4002,7 @@ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "Inflector", "cfg-expr", @@ -3937,35 +4014,36 @@ "proc-macro-warning", "proc-macro2", "quote", - "syn 2.0.37", + "sp-core-hashing", + "syn 2.0.38", ] [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support-procedural-tools-derive", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "cfg-if", "frame-support", @@ -3984,7 +4062,7 @@ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -3999,7 +4077,7 @@ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "sp-api", @@ -4008,7 +4086,7 @@ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "parity-scale-codec", @@ -4039,7 +4117,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2eeb4ed9e12f43b7fa0baae3f9cdda28352770132ef2e09a23760c29cae8bd47" dependencies = [ - "rustix 0.38.15", + "rustix 0.38.21", "windows-sys 0.48.0", ] @@ -4051,9 +4129,9 @@ [[package]] name = "futures" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" +checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" dependencies = [ "futures-channel", "futures-core", @@ -4066,9 +4144,9 @@ [[package]] name = "futures-channel" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" +checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" dependencies = [ "futures-core", "futures-sink", @@ -4076,15 +4154,15 @@ [[package]] name = "futures-core" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" +checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" [[package]] name = "futures-executor" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" +checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" dependencies = [ "futures-core", "futures-task", @@ -4094,9 +4172,9 @@ [[package]] name = "futures-io" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" +checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" [[package]] name = "futures-lite" @@ -4115,13 +4193,13 @@ [[package]] name = "futures-macro" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" +checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -4132,20 +4210,20 @@ dependencies = [ "futures-io", "rustls 0.20.9", - "webpki 0.22.2", + "webpki 0.22.4", ] [[package]] name = "futures-sink" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" +checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" [[package]] name = "futures-task" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" +checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" [[package]] name = "futures-timer" @@ -4155,9 +4233,9 @@ [[package]] name = "futures-util" -version = "0.3.28" +version = "0.3.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" +checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" dependencies = [ "futures-channel", "futures-core", @@ -4296,7 +4374,7 @@ dependencies = [ "ff 0.12.1", "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -4307,7 +4385,7 @@ dependencies = [ "ff 0.13.0", "rand_core 0.6.4", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -4370,7 +4448,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" dependencies = [ - "ahash 0.7.6", + "ahash 0.7.7", ] [[package]] @@ -4379,21 +4457,30 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" dependencies = [ - "ahash 0.8.3", + "ahash 0.8.6", ] [[package]] name = "hashbrown" -version = "0.14.1" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" +checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" dependencies = [ - "ahash 0.8.3", + "ahash 0.8.6", "allocator-api2", "serde", ] [[package]] +name = "hashlink" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +dependencies = [ + "hashbrown 0.14.2", +] + +[[package]] name = "heck" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4558,7 +4645,7 @@ "httpdate", "itoa", "pin-project-lite 0.2.13", - "socket2 0.4.9", + "socket2 0.4.10", "tokio", "tower-service", "tracing", @@ -4567,33 +4654,33 @@ [[package]] name = "hyper-rustls" -version = "0.24.1" +version = "0.24.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97" +checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" dependencies = [ "futures-util", "http", "hyper", "log", - "rustls 0.21.7", + "rustls 0.21.8", "rustls-native-certs", "tokio", "tokio-rustls", - "webpki-roots 0.23.1", + "webpki-roots 0.25.2", ] [[package]] name = "iana-time-zone" -version = "0.1.57" +version = "0.1.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613" +checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "windows 0.48.0", + "windows-core", ] [[package]] @@ -4644,11 +4731,11 @@ [[package]] name = "if-watch" -version = "3.0.1" +version = "3.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9465340214b296cd17a0009acdb890d6160010b8adf8f78a00d0d7ab270f79f" +checksum = "bbb892e5777fe09e16f3d44de7802f4daa7267ecbe8c466f19d94e25bb0c303e" dependencies = [ - "async-io", + "async-io 1.13.0", "core-foundation", "fnv", "futures", @@ -4658,7 +4745,7 @@ "rtnetlink", "system-configuration", "tokio", - "windows 0.34.0", + "windows", ] [[package]] @@ -4731,12 +4818,12 @@ [[package]] name = "indexmap" -version = "2.0.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" dependencies = [ "equivalent", - "hashbrown 0.14.1", + "hashbrown 0.14.2", ] [[package]] @@ -4833,7 +4920,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" dependencies = [ - "socket2 0.5.4", + "socket2 0.5.5", "widestring", "windows-sys 0.48.0", "winreg", @@ -4841,9 +4928,9 @@ [[package]] name = "ipnet" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" +checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" [[package]] name = "is-terminal" @@ -4852,7 +4939,7 @@ checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi 0.3.3", - "rustix 0.38.15", + "rustix 0.38.21", "windows-sys 0.48.0", ] @@ -4891,9 +4978,9 @@ [[package]] name = "jobserver" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" +checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" dependencies = [ "libc", ] @@ -4997,7 +5084,7 @@ checksum = "44e8ab85614a08792b9bff6c8feee23be78c98d0182d4c622c05256ab553892a" dependencies = [ "heck", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -5059,7 +5146,7 @@ dependencies = [ "cfg-if", "ecdsa 0.16.8", - "elliptic-curve 0.13.5", + "elliptic-curve 0.13.6", "once_cell", "sha2 0.10.8", ] @@ -5074,18 +5161,10 @@ ] [[package]] -name = "kusama-runtime-constants" +name = "keystream" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", - "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", -] +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c33070833c9ee02266356de0c43f723152bd38bd96ddf52c82b3af10c9138b28" [[package]] name = "kvdb" @@ -5122,9 +5201,9 @@ [[package]] name = "landlock" -version = "0.2.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "520baa32708c4e957d2fc3a186bc5bd8d26637c33137f399ddfc202adb240068" +checksum = "1530c5b973eeed4ac216af7e24baf5737645a6272e361f1fb95710678b67d9cc" dependencies = [ "enumflags2", "libc", @@ -5145,9 +5224,9 @@ [[package]] name = "libc" -version = "0.2.148" +version = "0.2.149" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cdc71e17332e86d2e1d38c1f99edcb6288ee11b815fb1a4b049eaa2114d369b" +checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" [[package]] name = "libloading" @@ -5161,9 +5240,9 @@ [[package]] name = "libm" -version = "0.2.7" +version = "0.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" +checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" [[package]] name = "libp2p" @@ -5348,7 +5427,7 @@ "log", "rand 0.8.5", "smallvec", - "socket2 0.4.9", + "socket2 0.4.10", "tokio", "trust-dns-proto", "void", @@ -5490,7 +5569,7 @@ "libc", "libp2p-core", "log", - "socket2 0.4.9", + "socket2 0.4.10", "tokio", ] @@ -5508,7 +5587,7 @@ "ring 0.16.20", "rustls 0.20.9", "thiserror", - "webpki 0.22.2", + "webpki 0.22.4", "x509-parser 0.14.0", "yasna", ] @@ -5632,7 +5711,7 @@ dependencies = [ "crunchy", "digest 0.9.0", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -5711,15 +5790,27 @@ [[package]] name = "linux-raw-sys" -version = "0.4.8" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3852614a3bd9ca9804678ba6be5e3b8ce76dfc902cae004e3e0c44051b6e88db" +checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" + +[[package]] +name = "lioness" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ae926706ba42c425c9457121178330d75e273df2e82e28b758faf3de3a9acb9" +dependencies = [ + "arrayref", + "blake2 0.8.1", + "chacha", + "keystream", +] [[package]] name = "lock_api" -version = "0.4.10" +version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" +checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" dependencies = [ "autocfg", "scopeguard", @@ -5786,50 +5877,50 @@ [[package]] name = "macro_magic" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aee866bfee30d2d7e83835a4574aad5b45adba4cc807f2a3bbba974e5d4383c9" +checksum = "e03844fc635e92f3a0067e25fa4bf3e3dbf3f2927bf3aa01bb7bc8f1c428949d" dependencies = [ "macro_magic_core", "macro_magic_macros", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "macro_magic_core" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e766a20fd9c72bab3e1e64ed63f36bd08410e75803813df210d1ce297d7ad00" +checksum = "468155613a44cfd825f1fb0ffa532b018253920d404e6fca1e8d43155198a46d" dependencies = [ "const-random", "derive-syn-parse", "macro_magic_core_macros", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "macro_magic_core_macros" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c12469fc165526520dff2807c2975310ab47cf7190a45b99b49a7dc8befab17b" +checksum = "9ea73aa640dc01d62a590d48c0c3521ed739d53b27f919b25c3551e233481654" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "macro_magic_macros" -version = "0.4.2" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8fb85ec1620619edf2984a7693497d4ec88a9665d8b87e942856884c92dbf2a" +checksum = "ef9d79ae96aaba821963320eb2b6e34d17df1e5a83d8a1985c29cc5be59577b3" dependencies = [ "macro_magic_core", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -5891,7 +5982,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b2cffa4ad52c6f791f4f8b15f0c05f9824b2ced1160e88cc393d64fff9a8ac64" dependencies = [ - "rustix 0.38.15", + "rustix 0.38.21", ] [[package]] @@ -5991,9 +6082,9 @@ [[package]] name = "mio" -version = "0.8.8" +version = "0.8.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2" +checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" dependencies = [ "libc", "wasi 0.11.0+wasi-snapshot-preview1", @@ -6001,9 +6092,34 @@ ] [[package]] +name = "mixnet" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daa3eb39495d8e2e2947a1d862852c90cc6a4a8845f8b41c8829cb9fcc047f4a" +dependencies = [ + "arrayref", + "arrayvec 0.7.4", + "bitflags 1.3.2", + "blake2 0.10.6", + "c2-chacha", + "curve25519-dalek 4.1.1", + "either", + "hashlink", + "lioness", + "log", + "parking_lot 0.12.1", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_distr", + "subtle 2.4.1", + "thiserror", + "zeroize", +] + +[[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "log", @@ -6022,7 +6138,7 @@ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "anyhow", "jsonrpsee", @@ -6115,7 +6231,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc076939022111618a5026d3be019fd8b366e76314538ff9a1b59ffbcbf98bcd" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro-error", "proc-macro2", "quote", @@ -6351,11 +6467,12 @@ [[package]] name = "num-traits" -version = "0.2.16" +version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2" +checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" dependencies = [ "autocfg", + "libm", ] [[package]] @@ -6370,23 +6487,23 @@ [[package]] name = "num_enum" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70bf6736f74634d299d00086f02986875b3c2d924781a6a2cb6c201e73da0ceb" +checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" dependencies = [ "num_enum_derive", ] [[package]] name = "num_enum_derive" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56ea360eafe1022f7cc56cd7b869ed57330fb2453d0c7831d99b74c65d2f5597" +checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 2.0.0", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -6442,7 +6559,7 @@ [[package]] name = "opal-runtime" -version = "1.1.0" +version = "1.2.0" dependencies = [ "app-promotion-rpc", "cumulus-pallet-aura-ext", @@ -6519,9 +6636,9 @@ "pallet-unique", "pallet-utility", "pallet-xcm", - "parachain-info", "parity-scale-codec", "polkadot-parachain-primitives", + "polkadot-runtime-common", "precompile-utils-macro", "scale-info", "serde", @@ -6540,6 +6657,7 @@ "sp-storage", "sp-transaction-pool", "sp-version", + "staging-parachain-info", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -6570,10 +6688,16 @@ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] name = "orchestra" -version = "0.0.5" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "227585216d05ba65c7ab0a0450a3cf2cbd81a98862a54c4df8e14d5ac6adb015" +checksum = "46d78e1deb2a8d54fc1f063a544130db4da31dfe4d5d3b493186424910222a76" dependencies = [ "async-trait", "dyn-clonable", @@ -6588,14 +6712,15 @@ [[package]] name = "orchestra-proc-macro" -version = "0.0.5" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2871aadd82a2c216ee68a69837a526dfe788ecbe74c4c5038a6acdbff6653066" +checksum = "d035b1f968d91a826f2e34a9d6d02cb2af5aa7ca39ebd27922d850ab4b2dd2c6" dependencies = [ - "expander 0.0.6", - "itertools 0.10.5", + "expander 2.0.0", + "indexmap 2.1.0", + "itertools 0.11.0", "petgraph", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -6612,8 +6737,8 @@ [[package]] name = "orml-tokens" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "frame-support", "frame-system", @@ -6629,8 +6754,8 @@ [[package]] name = "orml-traits" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "frame-support", "impl-trait-for-tuples", @@ -6649,8 +6774,8 @@ [[package]] name = "orml-utilities" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "frame-support", "parity-scale-codec", @@ -6664,8 +6789,8 @@ [[package]] name = "orml-vesting" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "frame-support", "frame-system", @@ -6679,8 +6804,8 @@ [[package]] name = "orml-xcm-support" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "frame-support", "orml-traits", @@ -6693,8 +6818,8 @@ [[package]] name = "orml-xtokens" -version = "0.4.1-dev" -source = "git+https://github.com/open-web3-stack/open-runtime-module-library?branch=polkadot-v1.1.0#b3694e631df7f1ca16b1973122937753fcdee9d4" +version = "0.5.0-dev" +source = "git+https://github.com/uniquenetwork/open-runtime-module-library?branch=substrate-master#46df4a649ebf68cbd444f450f58e8d4f7bcf4679" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -6758,9 +6883,24 @@ ] [[package]] +name = "pallet-asset-rate" +version = "4.0.0-dev" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" +dependencies = [ + "frame-benchmarking", + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-runtime", + "sp-std", +] + +[[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -6777,7 +6917,7 @@ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -6793,7 +6933,7 @@ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -6807,7 +6947,7 @@ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -6831,7 +6971,7 @@ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "aquamarine", "docify", @@ -6853,7 +6993,7 @@ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -6889,7 +7029,7 @@ [[package]] name = "pallet-base-fee" version = "1.0.0" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "fp-evm", "frame-support", @@ -6903,7 +7043,7 @@ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -6923,9 +7063,9 @@ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "binary-merkle-tree", "frame-support", "frame-system", @@ -6948,7 +7088,7 @@ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -6966,7 +7106,7 @@ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7011,7 +7151,7 @@ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7072,7 +7212,7 @@ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7089,7 +7229,7 @@ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7107,7 +7247,7 @@ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7124,13 +7264,13 @@ "sp-npos-elections", "sp-runtime", "sp-std", - "strum", + "strum 0.24.1", ] [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7144,7 +7284,7 @@ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7163,7 +7303,7 @@ [[package]] name = "pallet-ethereum" version = "4.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "ethereum", "ethereum-types", @@ -7186,7 +7326,7 @@ [[package]] name = "pallet-evm" version = "6.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "environmental", "evm", @@ -7268,7 +7408,7 @@ [[package]] name = "pallet-evm-precompile-simple" version = "2.0.0-dev" -source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.1.0#e99be6383ce0b0bc33768e479505cf4302dc0f8a" +source = "git+https://github.com/uniquenetwork/unique-frontier?branch=unique-polkadot-v1.2.0#099a02364fe68f7d388d9c343a77b7d18441d294" dependencies = [ "fp-evm", "ripemd", @@ -7294,7 +7434,7 @@ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "docify", "frame-benchmarking", @@ -7365,7 +7505,7 @@ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7405,7 +7545,7 @@ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7421,7 +7561,7 @@ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7441,7 +7581,7 @@ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7488,7 +7628,7 @@ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7505,7 +7645,7 @@ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7524,7 +7664,7 @@ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7542,7 +7682,7 @@ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7558,7 +7698,7 @@ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7574,7 +7714,7 @@ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -7593,7 +7733,7 @@ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7613,7 +7753,7 @@ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7645,7 +7785,7 @@ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -7662,7 +7802,7 @@ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7686,7 +7826,7 @@ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7703,7 +7843,7 @@ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7718,7 +7858,7 @@ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7736,7 +7876,7 @@ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7751,7 +7891,7 @@ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7788,9 +7928,24 @@ ] [[package]] +name = "pallet-root-testing" +version = "1.0.0-dev" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" +dependencies = [ + "frame-support", + "frame-system", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", +] + +[[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "docify", "frame-benchmarking", @@ -7808,7 +7963,7 @@ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -7830,7 +7985,7 @@ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7847,7 +8002,7 @@ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7865,7 +8020,7 @@ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7888,18 +8043,18 @@ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "log", "sp-arithmetic", @@ -7908,7 +8063,7 @@ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "sp-api", @@ -7917,7 +8072,7 @@ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -7951,8 +8106,9 @@ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "docify", "frame-benchmarking", "frame-support", "frame-system", @@ -7966,7 +8122,7 @@ [[package]] name = "pallet-template-transaction-payment" version = "3.0.0" -source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.1.0#2fbec92640f517e4812be7ed61ef7691af6e0bba" +source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.2.0#23769c7b4384a963f2ecef2a0401823ed4353752" dependencies = [ "frame-benchmarking", "frame-support", @@ -7998,8 +8154,9 @@ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "docify", "frame-benchmarking", "frame-support", "frame-system", @@ -8017,7 +8174,7 @@ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8036,7 +8193,7 @@ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -8052,7 +8209,7 @@ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8068,7 +8225,7 @@ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8080,8 +8237,9 @@ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "docify", "frame-benchmarking", "frame-support", "frame-system", @@ -8090,6 +8248,7 @@ "parity-scale-codec", "scale-info", "serde", + "sp-core", "sp-runtime", "sp-std", ] @@ -8124,7 +8283,7 @@ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8140,7 +8299,7 @@ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8155,7 +8314,7 @@ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8170,7 +8329,7 @@ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8191,7 +8350,7 @@ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-benchmarking", "frame-support", @@ -8205,29 +8364,15 @@ "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", -] - -[[package]] -name = "parachain-info" -version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "cumulus-primitives-core", - "frame-support", - "frame-system", - "parity-scale-codec", - "scale-info", - "sp-runtime", - "sp-std", ] [[package]] name = "parity-db" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab512a34b3c2c5e465731cc7668edf79208bbe520be03484eeb05e63ed221735" +checksum = "59e9ab494af9e6e813c72170f0d3c1de1500990d62c97cc05cc7576f91aa402f" dependencies = [ - "blake2", + "blake2 0.10.6", "crc32fast", "fs2", "hex", @@ -8262,7 +8407,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "312270ee71e1cd70289dacf597cab7b207aa107d2f28191c2ae45b2ece18a260" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -8282,9 +8427,9 @@ [[package]] name = "parking" -version = "2.1.1" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e52c774a4c39359c1d1c52e43f73dd91a75a614652c825408eec30c95a9b2067" +checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae" [[package]] name = "parking_lot" @@ -8304,7 +8449,7 @@ checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" dependencies = [ "lock_api", - "parking_lot_core 0.9.8", + "parking_lot_core 0.9.9", ] [[package]] @@ -8323,13 +8468,13 @@ [[package]] name = "parking_lot_core" -version = "0.9.8" +version = "0.9.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" +checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" dependencies = [ "cfg-if", "libc", - "redox_syscall 0.3.5", + "redox_syscall 0.4.1", "smallvec", "windows-targets 0.48.5", ] @@ -8357,15 +8502,6 @@ [[package]] name = "pbkdf2" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" -dependencies = [ - "digest 0.10.7", -] - -[[package]] -name = "pbkdf2" version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" @@ -8405,9 +8541,9 @@ [[package]] name = "pest" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4" +checksum = "ae9cee2a55a544be8b89dc6848072af97a20f2422603c10865be2a42b580fff5" dependencies = [ "memchr", "thiserror", @@ -8416,9 +8552,9 @@ [[package]] name = "pest_derive" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8" +checksum = "81d78524685f5ef2a3b3bd1cafbc9fcabb036253d9b1463e726a91cd16e2dfc2" dependencies = [ "pest", "pest_generator", @@ -8426,22 +8562,22 @@ [[package]] name = "pest_generator" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a" +checksum = "68bd1206e71118b5356dae5ddc61c8b11e28b09ef6a31acbd15ea48a28e0c227" dependencies = [ "pest", "pest_meta", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "pest_meta" -version = "2.7.4" +version = "2.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d" +checksum = "7c747191d4ad9e4a4ab9c8798f1e82a39affe7ef9648390b7e5548d18e099de6" dependencies = [ "once_cell", "pest", @@ -8455,7 +8591,7 @@ checksum = "e1d3afd2628e69da2be385eb6f2fd57c8ac7977ceeff6dc166ff1657b0e386a9" dependencies = [ "fixedbitset", - "indexmap 2.0.2", + "indexmap 2.1.0", ] [[package]] @@ -8475,7 +8611,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -8542,7 +8678,7 @@ [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "futures-timer", @@ -8560,7 +8696,7 @@ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "always-assert", "futures", @@ -8576,7 +8712,7 @@ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "derive_more", "fatality", @@ -8599,8 +8735,9 @@ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "async-trait", "fatality", "futures", "parity-scale-codec", @@ -8620,14 +8757,14 @@ [[package]] name = "polkadot-cli" version = "1.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "clap", "frame-benchmarking-cli", "futures", "log", "polkadot-node-metrics", - "polkadot-performance-test", + "polkadot-node-primitives", "polkadot-service", "sc-cli", "sc-executor", @@ -8647,7 +8784,7 @@ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "fatality", @@ -8669,7 +8806,7 @@ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -8681,7 +8818,7 @@ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "derive_more", "fatality", @@ -8706,7 +8843,7 @@ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8720,7 +8857,7 @@ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "futures-timer", @@ -8741,7 +8878,7 @@ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "always-assert", "async-trait", @@ -8764,7 +8901,7 @@ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "parity-scale-codec", @@ -8782,7 +8919,7 @@ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "derive_more", @@ -8811,7 +8948,7 @@ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "futures", @@ -8833,7 +8970,7 @@ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "fatality", @@ -8852,7 +8989,7 @@ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "polkadot-node-subsystem", @@ -8867,7 +9004,7 @@ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -8888,7 +9025,7 @@ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "polkadot-node-metrics", @@ -8903,7 +9040,7 @@ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "futures-timer", @@ -8920,7 +9057,7 @@ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "fatality", "futures", @@ -8939,7 +9076,7 @@ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -8956,7 +9093,7 @@ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "fatality", @@ -8973,7 +9110,7 @@ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "fatality", @@ -8990,11 +9127,13 @@ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "always-assert", + "cfg-if", "futures", "futures-timer", + "is_executable", "libc", "parity-scale-codec", "pin-project", @@ -9009,7 +9148,6 @@ "sp-core", "sp-maybe-compressed-blob", "sp-wasm-interface", - "substrate-build-script-utils", "tempfile", "tokio", "tracing-gum", @@ -9018,7 +9156,7 @@ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "polkadot-node-primitives", @@ -9034,8 +9172,9 @@ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ + "cfg-if", "cpu-time", "futures", "landlock", @@ -9046,41 +9185,19 @@ "sc-executor", "sc-executor-common", "sc-executor-wasmtime", + "seccompiler", "sp-core", "sp-externalities", "sp-io", "sp-tracing", - "tokio", + "thiserror", "tracing-gum", ] [[package]] -name = "polkadot-node-core-pvf-prepare-worker" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "futures", - "libc", - "parity-scale-codec", - "polkadot-node-core-pvf-common", - "polkadot-parachain-primitives", - "polkadot-primitives", - "rayon", - "sc-executor", - "sc-executor-common", - "sc-executor-wasmtime", - "sp-io", - "sp-maybe-compressed-blob", - "sp-tracing", - "tikv-jemalloc-ctl", - "tokio", - "tracing-gum", -] - -[[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "polkadot-node-metrics", @@ -9095,7 +9212,7 @@ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "lazy_static", "log", @@ -9113,7 +9230,7 @@ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bs58 0.5.0", "futures", @@ -9132,7 +9249,7 @@ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-channel", "async-trait", @@ -9148,7 +9265,7 @@ "rand 0.8.5", "sc-authority-discovery", "sc-network", - "strum", + "strum 0.24.1", "thiserror", "tracing-gum", ] @@ -9156,7 +9273,7 @@ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bounded-vec", "futures", @@ -9178,7 +9295,7 @@ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9188,7 +9305,7 @@ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "derive_more", @@ -9199,6 +9316,7 @@ "polkadot-node-primitives", "polkadot-primitives", "polkadot-statement-table", + "sc-client-api", "sc-network", "sc-transaction-pool-api", "smallvec", @@ -9212,7 +9330,7 @@ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "derive_more", @@ -9230,10 +9348,12 @@ "polkadot-node-network-protocol", "polkadot-node-primitives", "polkadot-node-subsystem", + "polkadot-node-subsystem-types", "polkadot-overseer", "polkadot-primitives", "prioritized-metered-channel", "rand 0.8.5", + "sc-client-api", "schnellru", "sp-application-crypto", "sp-core", @@ -9245,7 +9365,7 @@ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -9258,7 +9378,6 @@ "polkadot-node-subsystem-types", "polkadot-primitives", "sc-client-api", - "schnellru", "sp-api", "sp-core", "tikv-jemalloc-ctl", @@ -9268,11 +9387,10 @@ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bounded-collections", "derive_more", - "frame-support", "parity-scale-codec", "polkadot-core-primitives", "scale-info", @@ -9280,30 +9398,13 @@ "sp-core", "sp-runtime", "sp-std", -] - -[[package]] -name = "polkadot-performance-test" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "env_logger 0.9.3", - "log", - "polkadot-erasure-coding", - "polkadot-node-core-pvf-prepare-worker", - "polkadot-node-primitives", - "polkadot-primitives", - "quote", - "sc-executor-common", - "sp-maybe-compressed-blob", - "staging-kusama-runtime", - "thiserror", + "sp-weights", ] [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "hex-literal", @@ -9329,7 +9430,7 @@ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9356,109 +9457,12 @@ "sp-runtime", "substrate-frame-rpc-system", "substrate-state-trie-migration-rpc", -] - -[[package]] -name = "polkadot-runtime" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", - "frame-support", - "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal", - "log", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-bags-list", - "pallet-balances", - "pallet-bounties", - "pallet-child-bounties", - "pallet-collective", - "pallet-conviction-voting", - "pallet-democracy", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", - "pallet-elections-phragmen", - "pallet-fast-unstake", - "pallet-grandpa", - "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0)", - "pallet-im-online", - "pallet-indices", - "pallet-membership", - "pallet-message-queue", - "pallet-multisig", - "pallet-nomination-pools", - "pallet-nomination-pools-benchmarking", - "pallet-nomination-pools-runtime-api", - "pallet-offences", - "pallet-offences-benchmarking", - "pallet-preimage", - "pallet-proxy", - "pallet-referenda", - "pallet-scheduler", - "pallet-session", - "pallet-session-benchmarking", - "pallet-staking", - "pallet-staking-reward-curve", - "pallet-staking-runtime-api", - "pallet-timestamp", - "pallet-tips", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", - "pallet-utility", - "pallet-vesting", - "pallet-whitelist", - "pallet-xcm", - "pallet-xcm-benchmarks", - "parity-scale-codec", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-constants", - "polkadot-runtime-parachains", - "rustc-hex", - "scale-info", - "serde", - "serde_derive", - "smallvec", - "sp-api", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", - "sp-mmr-primitives", - "sp-npos-elections", - "sp-offchain", - "sp-runtime", - "sp-session", - "sp-staking", - "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", - "static_assertions", - "substrate-wasm-builder", ] [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitvec", "frame-benchmarking", @@ -9468,6 +9472,7 @@ "impl-trait-for-tuples", "libsecp256k1", "log", + "pallet-asset-rate", "pallet-authorship", "pallet-babe", "pallet-balances", @@ -9480,6 +9485,7 @@ "pallet-transaction-payment", "pallet-treasury", "pallet-vesting", + "pallet-xcm-benchmarks", "parity-scale-codec", "polkadot-primitives", "polkadot-runtime-parachains", @@ -9498,27 +9504,15 @@ "sp-staking", "sp-std", "staging-xcm", + "staging-xcm-builder", + "staging-xcm-executor", "static_assertions", ] [[package]] -name = "polkadot-runtime-constants" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" -dependencies = [ - "frame-support", - "polkadot-primitives", - "polkadot-runtime-common", - "smallvec", - "sp-core", - "sp-runtime", - "sp-weights", -] - -[[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9531,7 +9525,7 @@ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9551,6 +9545,7 @@ "pallet-timestamp", "pallet-vesting", "parity-scale-codec", + "polkadot-core-primitives", "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-runtime-metrics", @@ -9577,7 +9572,7 @@ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "frame-benchmarking", @@ -9632,8 +9627,6 @@ "polkadot-parachain-primitives", "polkadot-primitives", "polkadot-rpc", - "polkadot-runtime", - "polkadot-runtime-common", "polkadot-runtime-parachains", "polkadot-statement-distribution", "rococo-runtime", @@ -9686,7 +9679,6 @@ "sp-transaction-pool", "sp-version", "sp-weights", - "staging-kusama-runtime", "substrate-prometheus-endpoint", "thiserror", "tracing-gum", @@ -9696,7 +9688,7 @@ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9720,7 +9712,7 @@ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -9744,6 +9736,20 @@ ] [[package]] +name = "polling" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e53b6af1f60f36f8c2ac2aad5459d75a5a9b4be1e8cdd40264f315d78193e531" +dependencies = [ + "cfg-if", + "concurrent-queue", + "pin-project-lite 0.2.13", + "rustix 0.38.21", + "tracing", + "windows-sys 0.48.0", +] + +[[package]] name = "poly1305" version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -9791,11 +9797,17 @@ [[package]] name = "portable-atomic" -version = "1.4.3" +version = "1.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b" +checksum = "3bccab0e7fd7cc19f820a1c8c91720af652d0c88dc9664dd72aef2614f04af3b" [[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] name = "ppv-lite86" version = "0.2.17" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -9859,14 +9871,14 @@ checksum = "ae005bd773ab59b4725093fd7df83fd7892f7d8eafb48dbd7de6e024e4215f9d" dependencies = [ "proc-macro2", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "primitive-types" -version = "0.12.1" +version = "0.12.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f3486ccba82358b11a77516035647c34ba167dfa53312630de83b12bd4f3d66" +checksum = "0b34d9fd68ae0b74a41b21c03c2f62847aa0ffea044eee893b4c140b37e244e2" dependencies = [ "fixed-hash", "impl-codec", @@ -9878,9 +9890,9 @@ [[package]] name = "prioritized-metered-channel" -version = "0.2.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "382698e48a268c832d0b181ed438374a6bb708a82a8ca273bb0f61c74cf209c4" +checksum = "e99f0c89bd88f393aab44a4ab949351f7bc7e7e1179d11ecbfe50cbe4c47e342" dependencies = [ "coarsetime", "crossbeam-queue", @@ -9899,7 +9911,16 @@ checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" dependencies = [ "once_cell", - "toml_edit", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" +dependencies = [ + "toml_edit 0.20.7", ] [[package]] @@ -9925,29 +9946,23 @@ "quote", "version_check", ] - -[[package]] -name = "proc-macro-hack" -version = "0.5.20+deprecated" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" [[package]] name = "proc-macro-warning" -version = "0.4.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d1eaa7fa0aa1929ffdf7eeb6eac234dde6268914a14ad44d23521ab6a9b258e" +checksum = "9b698b0b09d40e9b7c1a47b132d66a8b54bcd20583d9b6d06e4535e383b4405c" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "proc-macro2" -version = "1.0.67" +version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328" +checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da" dependencies = [ "unicode-ident", ] @@ -9986,7 +10001,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -10054,7 +10069,7 @@ [[package]] name = "quartz-runtime" -version = "1.1.0" +version = "1.2.0" dependencies = [ "app-promotion-rpc", "cumulus-pallet-aura-ext", @@ -10130,7 +10145,6 @@ "pallet-unique", "pallet-utility", "pallet-xcm", - "parachain-info", "parity-scale-codec", "polkadot-parachain-primitives", "precompile-utils-macro", @@ -10151,6 +10165,7 @@ "sp-storage", "sp-transaction-pool", "sp-version", + "staging-parachain-info", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -10203,9 +10218,9 @@ [[package]] name = "quinn-proto" -version = "0.9.5" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c956be1b23f4261676aed05a0046e204e8a6836e50203902683a718af0797989" +checksum = "94b0b33c13a79f669c85defaf4c275dc86a0c0372807d0ca3d78e0bb87274863" dependencies = [ "bytes", "rand 0.8.5", @@ -10216,7 +10231,7 @@ "thiserror", "tinyvec", "tracing", - "webpki 0.22.2", + "webpki 0.22.4", ] [[package]] @@ -10297,6 +10312,16 @@ ] [[package]] +name = "rand_distr" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" +dependencies = [ + "num-traits", + "rand 0.8.5", +] + +[[package]] name = "rand_hc" version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -10384,6 +10409,15 @@ ] [[package]] +name = "redox_syscall" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" +dependencies = [ + "bitflags 1.3.2", +] + +[[package]] name = "redox_users" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -10424,7 +10458,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -10441,14 +10475,14 @@ [[package]] name = "regex" -version = "1.9.6" +version = "1.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff" +checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343" dependencies = [ "aho-corasick", "memchr", - "regex-automata 0.3.9", - "regex-syntax 0.7.5", + "regex-automata 0.4.3", + "regex-syntax 0.8.2", ] [[package]] @@ -10462,13 +10496,13 @@ [[package]] name = "regex-automata" -version = "0.3.9" +version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9" +checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f" dependencies = [ "aho-corasick", "memchr", - "regex-syntax 0.7.5", + "regex-syntax 0.8.2", ] [[package]] @@ -10479,9 +10513,9 @@ [[package]] name = "regex-syntax" -version = "0.7.5" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da" +checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "resolv-conf" @@ -10511,19 +10545,20 @@ checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" dependencies = [ "hmac 0.12.1", - "subtle", + "subtle 2.4.1", ] [[package]] name = "ring" version = "0.1.0" -source = "git+https://github.com/w3f/ring-proof?rev=0e948f3#0e948f3c28cbacecdd3020403c4841c0eb339213" +source = "git+https://github.com/w3f/ring-proof#edd1e90b847e560bf60fc2e8712235ccfa11a9a9" dependencies = [ "ark-ec", "ark-ff", "ark-poly", "ark-serialize", "ark-std", + "blake2 0.10.6", "common", "fflonk", "merlin 3.0.0", @@ -10539,12 +10574,26 @@ "libc", "once_cell", "spin 0.5.2", - "untrusted", + "untrusted 0.7.1", "web-sys", "winapi", ] [[package]] +name = "ring" +version = "0.17.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb0205304757e5d899b9c2e448b867ffd03ae7f988002e47cd24954391394d0b" +dependencies = [ + "cc", + "getrandom 0.2.10", + "libc", + "spin 0.9.8", + "untrusted 0.9.0", + "windows-sys 0.48.0", +] + +[[package]] name = "ripemd" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -10588,7 +10637,7 @@ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10600,6 +10649,7 @@ "frame-try-runtime", "hex-literal", "log", + "pallet-asset-rate", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -10609,10 +10659,11 @@ "pallet-bounties", "pallet-child-bounties", "pallet-collective", + "pallet-conviction-voting", "pallet-democracy", "pallet-elections-phragmen", "pallet-grandpa", - "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0)", + "pallet-identity 4.0.0-dev (git+https://github.com//paritytech/polkadot-sdk?branch=master)", "pallet-im-online", "pallet-indices", "pallet-membership", @@ -10623,7 +10674,10 @@ "pallet-offences", "pallet-preimage", "pallet-proxy", + "pallet-ranked-collective", "pallet-recovery", + "pallet-referenda", + "pallet-root-testing", "pallet-scheduler", "pallet-session", "pallet-society", @@ -10637,6 +10691,7 @@ "pallet-treasury", "pallet-utility", "pallet-vesting", + "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -10650,11 +10705,13 @@ "serde_derive", "smallvec", "sp-api", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", "sp-core", + "sp-genesis-builder", "sp-inherents", "sp-io", "sp-mmr-primitives", @@ -10676,7 +10733,7 @@ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "polkadot-primitives", @@ -10685,6 +10742,7 @@ "sp-core", "sp-runtime", "sp-weights", + "staging-xcm", ] [[package]] @@ -10772,7 +10830,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" dependencies = [ - "semver 1.0.19", + "semver 1.0.20", ] [[package]] @@ -10786,9 +10844,9 @@ [[package]] name = "rustix" -version = "0.36.15" +version = "0.36.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c37f1bd5ef1b5422177b7646cba67430579cfe2ace80f284fee876bca52ad941" +checksum = "305efbd14fde4139eb501df5f136994bb520b033fa9fbdce287507dc23b8c7ed" dependencies = [ "bitflags 1.3.2", "errno", @@ -10800,9 +10858,9 @@ [[package]] name = "rustix" -version = "0.37.24" +version = "0.37.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4279d76516df406a8bd37e7dff53fd37d1a093f997a3c34a5c21658c126db06d" +checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2" dependencies = [ "bitflags 1.3.2", "errno", @@ -10814,14 +10872,14 @@ [[package]] name = "rustix" -version = "0.38.15" +version = "0.38.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531" +checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" dependencies = [ - "bitflags 2.4.0", + "bitflags 2.4.1", "errno", "libc", - "linux-raw-sys 0.4.8", + "linux-raw-sys 0.4.10", "windows-sys 0.48.0", ] @@ -10846,20 +10904,20 @@ dependencies = [ "log", "ring 0.16.20", - "sct 0.7.0", - "webpki 0.22.2", + "sct 0.7.1", + "webpki 0.22.4", ] [[package]] name = "rustls" -version = "0.21.7" +version = "0.21.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8" +checksum = "446e14c5cda4f3f30fe71863c34ec70f5ac79d6087097ad0bb433e1be5edf04c" dependencies = [ "log", - "ring 0.16.20", - "rustls-webpki 0.101.6", - "sct 0.7.0", + "ring 0.17.5", + "rustls-webpki", + "sct 0.7.1", ] [[package]] @@ -10880,27 +10938,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2" dependencies = [ - "base64 0.21.4", -] - -[[package]] -name = "rustls-webpki" -version = "0.100.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6a5fc258f1c1276dfe3016516945546e2d5383911efc0fc4f1cdc5df3a4ae3" -dependencies = [ - "ring 0.16.20", - "untrusted", + "base64 0.21.5", ] [[package]] name = "rustls-webpki" -version = "0.101.6" +version = "0.101.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" dependencies = [ - "ring 0.16.20", - "untrusted", + "ring 0.17.5", + "untrusted 0.9.0", ] [[package]] @@ -10958,7 +11006,7 @@ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "log", "sp-core", @@ -10969,7 +11017,7 @@ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -10997,7 +11045,7 @@ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "futures-timer", @@ -11020,7 +11068,7 @@ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11035,7 +11083,7 @@ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11054,24 +11102,26 @@ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", + "bip39", "chrono", "clap", "fdlimit", "futures", + "itertools 0.10.5", "libp2p-identity", "log", "names", @@ -11082,6 +11132,7 @@ "sc-client-api", "sc-client-db", "sc-keystore", + "sc-mixnet", "sc-network", "sc-service", "sc-telemetry", @@ -11097,14 +11148,13 @@ "sp-runtime", "sp-version", "thiserror", - "tiny-bip39", "tokio", ] [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "fnv", "futures", @@ -11124,13 +11174,14 @@ "sp-state-machine", "sp-statement-store", "sp-storage", + "sp-trie", "substrate-prometheus-endpoint", ] [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "hash-db 0.16.0", "kvdb", @@ -11156,7 +11207,7 @@ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -11181,7 +11232,7 @@ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -11210,7 +11261,7 @@ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "fork-tree", @@ -11227,7 +11278,6 @@ "sc-consensus-slots", "sc-telemetry", "sc-transaction-pool-api", - "scale-info", "sp-api", "sp-application-crypto", "sp-block-builder", @@ -11246,7 +11296,7 @@ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "jsonrpsee", @@ -11268,9 +11318,9 @@ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "async-channel", "async-trait", "fnv", @@ -11302,7 +11352,7 @@ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "jsonrpsee", @@ -11321,7 +11371,7 @@ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11334,10 +11384,10 @@ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "ahash 0.8.3", - "array-bytes", + "ahash 0.8.6", + "array-bytes 6.1.0", "async-trait", "dyn-clone", "finality-grandpa", @@ -11375,7 +11425,7 @@ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "finality-grandpa", "futures", @@ -11395,7 +11445,7 @@ [[package]] name = "sc-consensus-manual-seal" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "assert_matches", "async-trait", @@ -11430,7 +11480,7 @@ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -11453,7 +11503,7 @@ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11475,7 +11525,7 @@ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11487,13 +11537,14 @@ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "anyhow", "cfg-if", "libc", "log", - "rustix 0.36.15", + "parking_lot 0.12.1", + "rustix 0.36.17", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -11504,7 +11555,7 @@ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "ansi_term", "futures", @@ -11520,9 +11571,9 @@ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "parking_lot 0.12.1", "serde_json", "sp-application-crypto", @@ -11532,11 +11583,39 @@ ] [[package]] +name = "sc-mixnet" +version = "0.1.0-dev" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" +dependencies = [ + "array-bytes 4.2.0", + "arrayvec 0.7.4", + "blake2 0.10.6", + "futures", + "futures-timer", + "libp2p-identity", + "log", + "mixnet", + "multiaddr", + "parity-scale-codec", + "parking_lot 0.12.1", + "sc-client-api", + "sc-network", + "sc-transaction-pool-api", + "sp-api", + "sp-consensus", + "sp-core", + "sp-keystore", + "sp-mixnet", + "sp-runtime", + "thiserror", +] + +[[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "async-channel", "async-trait", "asynchronous-codec", @@ -11575,7 +11654,7 @@ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-channel", "cid", @@ -11595,7 +11674,7 @@ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11612,9 +11691,9 @@ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "ahash 0.8.3", + "ahash 0.8.6", "futures", "futures-timer", "libp2p", @@ -11630,9 +11709,9 @@ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "async-channel", "futures", "libp2p-identity", @@ -11651,9 +11730,9 @@ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "async-channel", "async-trait", "fork-tree", @@ -11680,14 +11759,15 @@ "sp-runtime", "substrate-prometheus-endpoint", "thiserror", + "tokio-stream", ] [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "futures", "libp2p", "log", @@ -11703,9 +11783,9 @@ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "bytes", "fnv", "futures", @@ -11737,7 +11817,7 @@ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11746,7 +11826,7 @@ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "jsonrpsee", @@ -11756,6 +11836,7 @@ "sc-block-builder", "sc-chain-spec", "sc-client-api", + "sc-mixnet", "sc-rpc-api", "sc-tracing", "sc-transaction-pool-api", @@ -11777,11 +11858,12 @@ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "jsonrpsee", "parity-scale-codec", "sc-chain-spec", + "sc-mixnet", "sc-transaction-pool-api", "scale-info", "serde", @@ -11796,7 +11878,7 @@ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "http", "jsonrpsee", @@ -11811,9 +11893,9 @@ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", + "array-bytes 6.1.0", "futures", "futures-util", "hex", @@ -11839,7 +11921,7 @@ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "directories", @@ -11903,7 +11985,7 @@ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "log", "parity-scale-codec", @@ -11914,7 +11996,7 @@ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "clap", "fs4", @@ -11928,7 +12010,7 @@ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11947,7 +12029,7 @@ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "libc", @@ -11966,7 +12048,7 @@ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "chrono", "futures", @@ -11985,7 +12067,7 @@ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "ansi_term", "atty", @@ -12014,18 +12096,18 @@ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -12051,7 +12133,7 @@ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -12067,7 +12149,7 @@ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-channel", "futures", @@ -12081,9 +12163,9 @@ [[package]] name = "scale-info" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0a159d0c45c12b20c5a844feb1fe4bea86e28f17b92a5f0c42193634d3782" +checksum = "7f7d66a1128282b7ef025a8ead62a4a9fcf017382ec53b8ffbf4d7bf77bd3c60" dependencies = [ "bitvec", "cfg-if", @@ -12095,11 +12177,11 @@ [[package]] name = "scale-info-derive" -version = "2.9.0" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "912e55f6d20e0e80d63733872b40e1227c0bce1e1ab81ba67d696339bfd7fd29" +checksum = "abf2c68b89cafb3b8d918dd07b42be0da66ff202cf1155c5739a4e0c1ea0dc19" dependencies = [ - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", "syn 1.0.109", @@ -12120,7 +12202,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "772575a524feeb803e5b0fcbc6dd9f367e579488197c94c6e4023aad2305774d" dependencies = [ - "ahash 0.8.3", + "ahash 0.8.6", "cfg-if", "hashbrown 0.13.2", ] @@ -12139,7 +12221,7 @@ "rand 0.7.3", "rand_core 0.5.1", "sha2 0.8.2", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -12178,17 +12260,17 @@ checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" dependencies = [ "ring 0.16.20", - "untrusted", + "untrusted 0.7.1", ] [[package]] name = "sct" -version = "0.7.0" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" dependencies = [ - "ring 0.16.20", - "untrusted", + "ring 0.17.5", + "untrusted 0.9.0", ] [[package]] @@ -12213,7 +12295,7 @@ "der 0.6.1", "generic-array 0.14.7", "pkcs8 0.9.0", - "subtle", + "subtle 2.4.1", "zeroize", ] @@ -12227,11 +12309,20 @@ "der 0.7.8", "generic-array 0.14.7", "pkcs8 0.10.2", - "subtle", + "subtle 2.4.1", "zeroize", ] [[package]] +name = "seccompiler" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "345a3e4dddf721a478089d4697b83c6c0a8f5bf16086f6c13397e4534eb6e2e5" +dependencies = [ + "libc", +] + +[[package]] name = "secp256k1" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -12292,9 +12383,9 @@ [[package]] name = "semver" -version = "1.0.19" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad977052201c6de01a8ef2aa3378c4bd23217a056337d1d6da40468d267a4fb0" +checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" dependencies = [ "serde", ] @@ -12307,29 +12398,29 @@ [[package]] name = "serde" -version = "1.0.188" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e" +checksum = "91d3c334ca1ee894a2c6f6ad698fe8c435b76d504b13d436f0685d648d6d96f7" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.188" +version = "1.0.190" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" +checksum = "67c5609f394e5c2bd7fc51efda478004ea80ef42fee983d5c67a65e34f32c0e3" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "serde_json" -version = "1.0.107" +version = "1.0.108" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65" +checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" dependencies = [ "itoa", "ryu", @@ -12338,9 +12429,9 @@ [[package]] name = "serde_spanned" -version = "0.6.3" +version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186" +checksum = "12022b835073e5b11e90a14f86838ceb1c8fb0325b72416845c487ac0fa95e80" dependencies = [ "serde", ] @@ -12436,9 +12527,9 @@ [[package]] name = "sharded-slab" -version = "0.1.6" +version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1b21f559e07218024e7e9f90f96f601825397de0e25420135f7f952453fed0b" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" dependencies = [ "lazy_static", ] @@ -12448,16 +12539,6 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380" - -[[package]] -name = "signal-hook" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801" -dependencies = [ - "libc", - "signal-hook-registry", -] [[package]] name = "signal-hook-registry" @@ -12525,7 +12606,7 @@ [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "enumn", "parity-scale-codec", @@ -12558,7 +12639,7 @@ "async-channel", "async-executor", "async-fs", - "async-io", + "async-io 1.13.0", "async-lock", "async-net", "async-process", @@ -12575,7 +12656,7 @@ "arrayvec 0.7.4", "async-lock", "atomic-take", - "base64 0.21.4", + "base64 0.21.5", "bip39", "blake2-rfc", "bs58 0.5.0", @@ -12584,11 +12665,11 @@ "derive_more", "ed25519-zebra 4.0.3", "either", - "event-listener", + "event-listener 2.5.3", "fnv", "futures-lite", "futures-util", - "hashbrown 0.14.1", + "hashbrown 0.14.2", "hex", "hmac 0.12.1", "itertools 0.11.0", @@ -12628,16 +12709,16 @@ dependencies = [ "async-channel", "async-lock", - "base64 0.21.4", + "base64 0.21.5", "blake2-rfc", "derive_more", "either", - "event-listener", + "event-listener 2.5.3", "fnv", "futures-channel", "futures-lite", "futures-util", - "hashbrown 0.14.1", + "hashbrown 0.14.2", "hex", "itertools 0.11.0", "log", @@ -12669,21 +12750,21 @@ checksum = "0c9d1425eb528a21de2755c75af4c9b5d57f50a0d4c3b7f1828a4cd03f8ba155" dependencies = [ "aes-gcm 0.9.4", - "blake2", + "blake2 0.10.6", "chacha20poly1305", "curve25519-dalek 4.1.1", "rand_core 0.6.4", "ring 0.16.20", "rustc_version", "sha2 0.10.8", - "subtle", + "subtle 2.4.1", ] [[package]] name = "socket2" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" dependencies = [ "libc", "winapi", @@ -12691,9 +12772,9 @@ [[package]] name = "socket2" -version = "0.5.4" +version = "0.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e" +checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" dependencies = [ "libc", "windows-sys 0.48.0", @@ -12719,7 +12800,7 @@ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "hash-db 0.16.0", "log", @@ -12740,21 +12821,21 @@ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "Inflector", - "blake2", + "blake2 0.10.6", "expander 2.0.0", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -12767,7 +12848,7 @@ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "integer-sqrt", "num-traits", @@ -12781,7 +12862,7 @@ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -12794,7 +12875,7 @@ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "sp-api", "sp-inherents", @@ -12805,7 +12886,7 @@ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "futures", "log", @@ -12823,7 +12904,7 @@ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "futures", @@ -12838,7 +12919,7 @@ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "parity-scale-codec", @@ -12855,7 +12936,7 @@ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "parity-scale-codec", @@ -12874,7 +12955,7 @@ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "lazy_static", "parity-scale-codec", @@ -12887,13 +12968,13 @@ "sp-mmr-primitives", "sp-runtime", "sp-std", - "strum", + "strum 0.24.1", ] [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "finality-grandpa", "log", @@ -12911,7 +12992,7 @@ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -12923,13 +13004,13 @@ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "array-bytes", - "arrayvec 0.7.4", + "array-bytes 6.1.0", "bandersnatch_vrfs", + "bip39", "bitflags 1.3.2", - "blake2", + "blake2 0.10.6", "bounded-collections", "bs58 0.5.0", "dyn-clonable", @@ -12938,6 +13019,7 @@ "hash-db 0.16.0", "hash256-std-hasher", "impl-serde", + "itertools 0.10.5", "lazy_static", "libsecp256k1", "log", @@ -12962,15 +13044,15 @@ "ss58-registry", "substrate-bip39", "thiserror", - "tiny-bip39", "tracing", + "w3f-bls", "zeroize", ] [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "blake2b_simd", "byteorder", @@ -12983,17 +13065,17 @@ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "quote", "sp-core-hashing", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13002,17 +13084,17 @@ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "environmental", "parity-scale-codec", @@ -13023,7 +13105,7 @@ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "serde_json", "sp-api", @@ -13034,7 +13116,7 @@ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13048,7 +13130,7 @@ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bytes", "ed25519-dalek", @@ -13072,18 +13154,18 @@ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "lazy_static", "sp-core", "sp-runtime", - "strum", + "strum 0.24.1", ] [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13095,7 +13177,7 @@ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13104,7 +13186,7 @@ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13113,9 +13195,21 @@ ] [[package]] +name = "sp-mixnet" +version = "0.1.0-dev" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" +dependencies = [ + "parity-scale-codec", + "scale-info", + "sp-api", + "sp-application-crypto", + "sp-std", +] + +[[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13133,7 +13227,7 @@ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13147,7 +13241,7 @@ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "sp-api", "sp-core", @@ -13157,7 +13251,7 @@ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "backtrace", "lazy_static", @@ -13167,7 +13261,7 @@ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "rustc-hash", "serde", @@ -13177,7 +13271,7 @@ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "either", "hash256-std-hasher", @@ -13199,7 +13293,7 @@ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13217,19 +13311,19 @@ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "Inflector", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13244,7 +13338,7 @@ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13258,7 +13352,7 @@ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "hash-db 0.16.0", "log", @@ -13273,13 +13367,13 @@ "sp-trie", "thiserror", "tracing", - "trie-db", + "trie-db 0.28.0", ] [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13303,12 +13397,12 @@ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13321,7 +13415,7 @@ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13334,7 +13428,7 @@ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "sp-std", @@ -13346,7 +13440,7 @@ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "sp-api", "sp-runtime", @@ -13355,7 +13449,7 @@ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "parity-scale-codec", @@ -13370,9 +13464,9 @@ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "ahash 0.8.3", + "ahash 0.8.6", "hash-db 0.16.0", "hashbrown 0.13.2", "lazy_static", @@ -13380,20 +13474,21 @@ "nohash-hasher", "parity-scale-codec", "parking_lot 0.12.1", + "rand 0.8.5", "scale-info", "schnellru", "sp-core", "sp-std", "thiserror", "tracing", - "trie-db", + "trie-db 0.28.0", "trie-root", ] [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13410,18 +13505,18 @@ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13434,7 +13529,7 @@ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "parity-scale-codec", "scale-info", @@ -13454,7 +13549,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -13477,7 +13572,7 @@ dependencies = [ "lazy_static", "maplit", - "strum", + "strum 0.24.1", ] [[package]] @@ -13522,115 +13617,23 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] -name = "staging-kusama-runtime" -version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +name = "staging-parachain-info" +version = "0.1.0" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ - "binary-merkle-tree", - "bitvec", - "frame-benchmarking", - "frame-election-provider-support", - "frame-executive", + "cumulus-primitives-core", "frame-support", "frame-system", - "frame-system-benchmarking", - "frame-system-rpc-runtime-api", - "frame-try-runtime", - "hex-literal", - "kusama-runtime-constants", - "log", - "pallet-authority-discovery", - "pallet-authorship", - "pallet-babe", - "pallet-bags-list", - "pallet-balances", - "pallet-beefy", - "pallet-beefy-mmr", - "pallet-bounties", - "pallet-child-bounties", - "pallet-collective", - "pallet-conviction-voting", - "pallet-democracy", - "pallet-election-provider-multi-phase", - "pallet-election-provider-support-benchmarking", - "pallet-elections-phragmen", - "pallet-fast-unstake", - "pallet-grandpa", - "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0)", - "pallet-im-online", - "pallet-indices", - "pallet-membership", - "pallet-message-queue", - "pallet-mmr", - "pallet-multisig", - "pallet-nis", - "pallet-nomination-pools", - "pallet-nomination-pools-benchmarking", - "pallet-nomination-pools-runtime-api", - "pallet-offences", - "pallet-offences-benchmarking", - "pallet-preimage", - "pallet-proxy", - "pallet-ranked-collective", - "pallet-recovery", - "pallet-referenda", - "pallet-scheduler", - "pallet-session", - "pallet-session-benchmarking", - "pallet-society", - "pallet-staking", - "pallet-staking-runtime-api", - "pallet-state-trie-migration", - "pallet-timestamp", - "pallet-tips", - "pallet-transaction-payment", - "pallet-transaction-payment-rpc-runtime-api", - "pallet-treasury", - "pallet-utility", - "pallet-vesting", - "pallet-whitelist", - "pallet-xcm", - "pallet-xcm-benchmarks", "parity-scale-codec", - "polkadot-primitives", - "polkadot-runtime-common", - "polkadot-runtime-parachains", - "rustc-hex", "scale-info", - "serde", - "serde_derive", - "smallvec", - "sp-api", - "sp-application-crypto", - "sp-arithmetic", - "sp-authority-discovery", - "sp-block-builder", - "sp-consensus-babe", - "sp-consensus-beefy", - "sp-core", - "sp-inherents", - "sp-io", - "sp-mmr-primitives", - "sp-npos-elections", - "sp-offchain", "sp-runtime", - "sp-session", - "sp-staking", "sp-std", - "sp-storage", - "sp-transaction-pool", - "sp-version", - "staging-xcm", - "staging-xcm-builder", - "staging-xcm-executor", - "static_assertions", - "substrate-wasm-builder", ] [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "bounded-collections", "derivative", @@ -13647,7 +13650,7 @@ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "frame-system", @@ -13669,7 +13672,7 @@ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "environmental", "frame-benchmarking", @@ -13740,10 +13743,16 @@ 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" + +[[package]] name = "strum_macros" version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -13757,6 +13766,19 @@ ] [[package]] +name = "strum_macros" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "rustversion", + "syn 2.0.38", +] + +[[package]] name = "stun" version = "0.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -13768,7 +13790,7 @@ "md-5", "rand 0.8.5", "ring 0.16.20", - "subtle", + "subtle 2.4.1", "thiserror", "tokio", "url", @@ -13777,9 +13799,9 @@ [[package]] name = "substrate-bip39" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49eee6965196b32f882dd2ee85a92b1dbead41b04e53907f269de3b0dc04733c" +checksum = "e620c7098893ba667438b47169c00aacdd9e7c10e042250ce2b60b087ec97328" dependencies = [ "hmac 0.11.0", "pbkdf2 0.8.0", @@ -13791,12 +13813,12 @@ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -13815,7 +13837,7 @@ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "hyper", "log", @@ -13827,7 +13849,7 @@ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "jsonrpsee", @@ -13840,7 +13862,7 @@ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -13851,13 +13873,13 @@ "sp-runtime", "sp-state-machine", "sp-trie", - "trie-db", + "trie-db 0.28.0", ] [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "ansi_term", "build-helper", @@ -13865,7 +13887,7 @@ "filetime", "parity-wasm", "sp-maybe-compressed-blob", - "strum", + "strum 0.24.1", "tempfile", "toml 0.7.8", "walkdir", @@ -13883,6 +13905,12 @@ [[package]] name = "subtle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" + +[[package]] +name = "subtle" version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" @@ -13906,9 +13934,9 @@ [[package]] name = "syn" -version = "2.0.37" +version = "2.0.38" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8" +checksum = "e96b79aaa137db8f61e26363a0c9b47d8b4ec75da28b7d1d614c2303e232408b" dependencies = [ "proc-macro2", "quote", @@ -13956,20 +13984,20 @@ [[package]] name = "target-lexicon" -version = "0.12.11" +version = "0.12.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d0e916b1148c8e263850e1ebcbd046f333e0683c724876bb0da63ea4373dc8a" +checksum = "14c39fd04924ca3a864207c66fc2cd7d22d7c016007f9ce846cbb9326331930a" [[package]] name = "tempfile" -version = "3.8.0" +version = "3.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" +checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" dependencies = [ "cfg-if", "fastrand 2.0.1", - "redox_syscall 0.3.5", - "rustix 0.38.15", + "redox_syscall 0.4.1", + "rustix 0.38.21", "windows-sys 0.48.0", ] @@ -13983,6 +14011,16 @@ ] [[package]] +name = "terminal_size" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7" +dependencies = [ + "rustix 0.38.21", + "windows-sys 0.48.0", +] + +[[package]] name = "termtree" version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -14022,9 +14060,9 @@ [[package]] name = "thiserror" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" +checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" dependencies = [ "thiserror-impl", ] @@ -14051,13 +14089,13 @@ [[package]] name = "thiserror-impl" -version = "1.0.49" +version = "1.0.50" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" +checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -14121,12 +14159,13 @@ [[package]] name = "time" -version = "0.3.29" +version = "0.3.30" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "426f806f4089c493dcac0d24c29c01e2c38baf8e30f1b716ee37e83d200b18fe" +checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" dependencies = [ "deranged", "itoa", + "powerfmt", "serde", "time-core", "time-macros", @@ -14145,25 +14184,6 @@ checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" dependencies = [ "time-core", -] - -[[package]] -name = "tiny-bip39" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861" -dependencies = [ - "anyhow", - "hmac 0.12.1", - "once_cell", - "pbkdf2 0.11.0", - "rand 0.8.5", - "rustc-hash", - "sha2 0.10.8", - "thiserror", - "unicode-normalization", - "wasm-bindgen", - "zeroize", ] [[package]] @@ -14202,9 +14222,9 @@ [[package]] name = "tokio" -version = "1.32.0" +version = "1.33.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" +checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" dependencies = [ "backtrace", "bytes", @@ -14214,7 +14234,7 @@ "parking_lot 0.12.1", "pin-project-lite 0.2.13", "signal-hook-registry", - "socket2 0.5.4", + "socket2 0.5.5", "tokio-macros", "windows-sys 0.48.0", ] @@ -14227,7 +14247,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -14247,7 +14267,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" dependencies = [ - "rustls 0.21.7", + "rustls 0.21.8", "tokio", ] @@ -14265,9 +14285,9 @@ [[package]] name = "tokio-util" -version = "0.7.9" +version = "0.7.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d" +checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" dependencies = [ "bytes", "futures-core", @@ -14296,14 +14316,14 @@ "serde", "serde_spanned", "toml_datetime", - "toml_edit", + "toml_edit 0.19.15", ] [[package]] name = "toml_datetime" -version = "0.6.3" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" dependencies = [ "serde", ] @@ -14314,7 +14334,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" dependencies = [ - "indexmap 2.0.2", + "indexmap 2.1.0", "serde", "serde_spanned", "toml_datetime", @@ -14322,6 +14342,17 @@ ] [[package]] +name = "toml_edit" +version = "0.20.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" +dependencies = [ + "indexmap 2.1.0", + "toml_datetime", + "winnow", +] + +[[package]] name = "tower" version = "0.4.13" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -14338,7 +14369,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" dependencies = [ - "bitflags 2.4.0", + "bitflags 2.4.1", "bytes", "futures-core", "futures-util", @@ -14364,11 +14395,10 @@ [[package]] name = "tracing" -version = "0.1.37" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" dependencies = [ - "cfg-if", "log", "pin-project-lite 0.2.13", "tracing-attributes", @@ -14377,20 +14407,20 @@ [[package]] name = "tracing-attributes" -version = "0.1.26" +version = "0.1.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" +checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "tracing-core" -version = "0.1.31" +version = "0.1.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" +checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" dependencies = [ "once_cell", "valuable", @@ -14409,7 +14439,7 @@ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14421,23 +14451,23 @@ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "expander 2.0.0", - "proc-macro-crate", + "proc-macro-crate 1.3.1", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] name = "tracing-log" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" dependencies = [ - "lazy_static", "log", + "once_cell", "tracing-core", ] @@ -14483,6 +14513,18 @@ "hash-db 0.16.0", "hashbrown 0.13.2", "log", + "smallvec", +] + +[[package]] +name = "trie-db" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff28e0f815c2fea41ebddf148e008b077d2faddb026c9555b29696114d602642" +dependencies = [ + "hash-db 0.16.0", + "hashbrown 0.13.2", + "log", "rustc-hex", "smallvec", ] @@ -14524,7 +14566,7 @@ "lazy_static", "rand 0.8.5", "smallvec", - "socket2 0.4.9", + "socket2 0.4.10", "thiserror", "tinyvec", "tokio", @@ -14561,7 +14603,7 @@ [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "async-trait", "clap", @@ -14662,7 +14704,7 @@ "sp-runtime", "sp-state-machine", "sp-trie", - "trie-db", + "trie-db 0.27.1", "unique-runtime", "up-common", "up-data-structs", @@ -14724,7 +14766,7 @@ [[package]] name = "unique-node" -version = "1.1.0" +version = "1.2.0" dependencies = [ "app-promotion-rpc", "clap", @@ -14808,7 +14850,7 @@ [[package]] name = "unique-runtime" -version = "1.1.0" +version = "1.2.0" dependencies = [ "app-promotion-rpc", "cumulus-pallet-aura-ext", @@ -14884,7 +14926,6 @@ "pallet-unique", "pallet-utility", "pallet-xcm", - "parachain-info", "parity-scale-codec", "polkadot-parachain-primitives", "precompile-utils-macro", @@ -14905,6 +14946,7 @@ "sp-storage", "sp-transaction-pool", "sp-version", + "staging-parachain-info", "staging-xcm", "staging-xcm-builder", "staging-xcm-executor", @@ -14923,7 +14965,7 @@ checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" dependencies = [ "generic-array 0.14.7", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -14933,7 +14975,7 @@ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea" dependencies = [ "crypto-common", - "subtle", + "subtle 2.4.1", ] [[package]] @@ -14955,8 +14997,14 @@ checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" [[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] name = "up-common" -version = "1.1.0" +version = "1.2.0" dependencies = [ "cumulus-primitives-core", "fp-rpc", @@ -15017,7 +15065,7 @@ [[package]] name = "up-sponsorship" version = "0.1.0" -source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.1.0#2fbec92640f517e4812be7ed61ef7691af6e0bba" +source = "git+https://github.com/uniquenetwork/pallet-sponsoring?branch=polkadot-v1.2.0#23769c7b4384a963f2ecef2a0401823ed4353752" dependencies = [ "impl-trait-for-tuples", ] @@ -15041,9 +15089,9 @@ [[package]] name = "uuid" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" dependencies = [ "getrandom 0.2.10", ] @@ -15073,6 +15121,30 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] +name = "w3f-bls" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7335e4c132c28cc43caef6adb339789e599e39adbe78da0c4d547fad48cbc331" +dependencies = [ + "ark-bls12-377", + "ark-bls12-381", + "ark-ec", + "ark-ff", + "ark-serialize", + "ark-serialize-derive", + "arrayref", + "constcat", + "digest 0.10.7", + "rand 0.8.5", + "rand_chacha 0.3.1", + "rand_core 0.6.4", + "sha2 0.10.8", + "sha3 0.10.8", + "thiserror", + "zeroize", +] + +[[package]] name = "waitgroup" version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -15139,7 +15211,7 @@ "once_cell", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", "wasm-bindgen-shared", ] @@ -15173,7 +15245,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -15195,14 +15267,14 @@ [[package]] name = "wasm-opt" -version = "0.114.1" +version = "0.116.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d005a95f934878a1fb446a816d51c3601a0120ff929005ba3bab3c749cfd1c7" +checksum = "fc942673e7684671f0c5708fc18993569d184265fd5223bb51fc8e5b9b6cfd52" dependencies = [ "anyhow", "libc", - "strum", - "strum_macros", + "strum 0.24.1", + "strum_macros 0.24.3", "tempfile", "thiserror", "wasm-opt-cxx-sys", @@ -15211,9 +15283,9 @@ [[package]] name = "wasm-opt-cxx-sys" -version = "0.114.1" +version = "0.116.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d04e240598162810fad3b2e96fa0dec6dba1eb65a03f3bd99a9248ab8b56caa" +checksum = "8c57b28207aa724318fcec6575fe74803c23f6f266fce10cbc9f3f116762f12e" dependencies = [ "anyhow", "cxx", @@ -15223,9 +15295,9 @@ [[package]] name = "wasm-opt-sys" -version = "0.114.1" +version = "0.116.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2efd2aaca519d64098c4faefc8b7433a97ed511caf4c9e516384eb6aef1ff4f9" +checksum = "8a1cce564dc768dacbdb718fc29df2dba80bd21cb47d8f77ae7e3d95ceb98cbe" dependencies = [ "anyhow", "cc", @@ -15342,12 +15414,12 @@ checksum = "c86437fa68626fe896e5afc69234bb2b5894949083586535f200385adfd71213" dependencies = [ "anyhow", - "base64 0.21.4", + "base64 0.21.5", "bincode", "directories-next", "file-per-thread-logger", "log", - "rustix 0.36.15", + "rustix 0.36.17", "serde", "sha2 0.10.8", "toml 0.5.11", @@ -15443,7 +15515,7 @@ dependencies = [ "object 0.30.4", "once_cell", - "rustix 0.36.15", + "rustix 0.36.17", ] [[package]] @@ -15474,7 +15546,7 @@ "memoffset 0.8.0", "paste", "rand 0.8.5", - "rustix 0.36.15", + "rustix 0.36.17", "wasmtime-asm-macros", "wasmtime-environ", "wasmtime-jit-debug", @@ -15510,17 +15582,17 @@ checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" dependencies = [ "ring 0.16.20", - "untrusted", + "untrusted 0.7.1", ] [[package]] name = "webpki" -version = "0.22.2" +version = "0.22.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07ecc0cd7cac091bf682ec5efa18b1cff79d617b84181f38b3951dbe135f607f" +checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" dependencies = [ - "ring 0.16.20", - "untrusted", + "ring 0.17.5", + "untrusted 0.9.0", ] [[package]] @@ -15529,16 +15601,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" dependencies = [ - "webpki 0.22.2", -] - -[[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.3", + "webpki 0.22.4", ] [[package]] @@ -15634,7 +15697,7 @@ "sha1", "sha2 0.10.8", "signature 1.6.4", - "subtle", + "subtle 2.4.1", "thiserror", "tokio", "webpki 0.21.4", @@ -15674,7 +15737,7 @@ checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" dependencies = [ "log", - "socket2 0.4.9", + "socket2 0.4.10", "thiserror", "tokio", "webrtc-util", @@ -15728,7 +15791,7 @@ "rtcp", "rtp", "sha-1", - "subtle", + "subtle 2.4.1", "thiserror", "tokio", "webrtc-util", @@ -15758,7 +15821,7 @@ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15772,6 +15835,7 @@ "frame-try-runtime", "hex-literal", "log", + "pallet-asset-rate", "pallet-authority-discovery", "pallet-authorship", "pallet-babe", @@ -15780,13 +15844,14 @@ "pallet-beefy", "pallet-beefy-mmr", "pallet-collective", + "pallet-conviction-voting", "pallet-democracy", "pallet-election-provider-multi-phase", "pallet-election-provider-support-benchmarking", "pallet-elections-phragmen", "pallet-fast-unstake", "pallet-grandpa", - "pallet-identity 4.0.0-dev (git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0)", + "pallet-identity 4.0.0-dev (git+https://github.com//paritytech/polkadot-sdk?branch=master)", "pallet-im-online", "pallet-indices", "pallet-membership", @@ -15801,6 +15866,8 @@ "pallet-preimage", "pallet-proxy", "pallet-recovery", + "pallet-referenda", + "pallet-root-testing", "pallet-scheduler", "pallet-session", "pallet-session-benchmarking", @@ -15816,6 +15883,7 @@ "pallet-treasury", "pallet-utility", "pallet-vesting", + "pallet-whitelist", "pallet-xcm", "pallet-xcm-benchmarks", "parity-scale-codec", @@ -15830,11 +15898,13 @@ "smallvec", "sp-api", "sp-application-crypto", + "sp-arithmetic", "sp-authority-discovery", "sp-block-builder", "sp-consensus-babe", "sp-consensus-beefy", "sp-core", + "sp-genesis-builder", "sp-inherents", "sp-io", "sp-mmr-primitives", @@ -15857,7 +15927,7 @@ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "frame-support", "polkadot-primitives", @@ -15866,6 +15936,7 @@ "sp-core", "sp-runtime", "sp-weights", + "staging-xcm", ] [[package]] @@ -15877,14 +15948,14 @@ "either", "home", "once_cell", - "rustix 0.38.15", + "rustix 0.38.21", ] [[package]] name = "wide" -version = "0.7.12" +version = "0.7.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebecebefc38ff1860b4bc47550bbfa63af5746061cf0d29fcd7fa63171602598" +checksum = "c68938b57b33da363195412cfc5fc37c9ed49aa9cfe2156fde64b8d2c9498242" dependencies = [ "bytemuck", "safe_arch", @@ -15929,22 +16000,19 @@ [[package]] name = "windows" -version = "0.34.0" +version = "0.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "45296b64204227616fdbf2614cefa4c236b98ee64dfaaaa435207ed99fe7829f" +checksum = "ca229916c5ee38c2f2bc1e9d8f04df975b4bd93f9955dc69fabb5d91270045c9" dependencies = [ - "windows_aarch64_msvc 0.34.0", - "windows_i686_gnu 0.34.0", - "windows_i686_msvc 0.34.0", - "windows_x86_64_gnu 0.34.0", - "windows_x86_64_msvc 0.34.0", + "windows-core", + "windows-targets 0.48.5", ] [[package]] -name = "windows" -version = "0.48.0" +name = "windows-core" +version = "0.51.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" dependencies = [ "windows-targets 0.48.5", ] @@ -16008,12 +16076,6 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d" [[package]] name = "windows_aarch64_msvc" @@ -16026,12 +16088,6 @@ version = "0.48.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - -[[package]] -name = "windows_i686_gnu" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed" [[package]] name = "windows_i686_gnu" @@ -16047,12 +16103,6 @@ [[package]] name = "windows_i686_msvc" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956" - -[[package]] -name = "windows_i686_msvc" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" @@ -16065,12 +16115,6 @@ [[package]] name = "windows_x86_64_gnu" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4" - -[[package]] -name = "windows_x86_64_gnu" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" @@ -16095,12 +16139,6 @@ [[package]] name = "windows_x86_64_msvc" -version = "0.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9" - -[[package]] -name = "windows_x86_64_msvc" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" @@ -16113,9 +16151,9 @@ [[package]] name = "winnow" -version = "0.5.15" +version = "0.5.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc" +checksum = "176b6138793677221d420fd2f0aeeced263f197688b36484660da767bca2fa32" dependencies = [ "memchr", ] @@ -16202,12 +16240,12 @@ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/paritytech/polkadot-sdk?branch=release-polkadot-v1.1.0#f60318f68687e601c47de5ad5ca88e2c3f8139a7" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" dependencies = [ "Inflector", "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -16234,6 +16272,26 @@ ] [[package]] +name = "zerocopy" +version = "0.7.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "686b7e407015242119c33dab17b8f61ba6843534de936d94368856528eae4dcc" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020f3dfe25dfc38dfea49ce62d5d45ecdd7f0d8a724fa63eb36b6eba4ec76806" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.38", +] + +[[package]] name = "zeroize" version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -16250,7 +16308,7 @@ dependencies = [ "proc-macro2", "quote", - "syn 2.0.37", + "syn 2.0.38", ] [[package]] @@ -16293,11 +16351,15 @@ [[package]] name = "zstd-sys" -version = "2.0.8+zstd.1.5.5" +version = "2.0.9+zstd.1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" +checksum = "9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656" dependencies = [ "cc", - "libc", "pkg-config", ] + +[[patch.unused]] +name = "polkadot-node-core-pvf-prepare-worker" +version = "1.0.0" +source = "git+https://github.com//paritytech/polkadot-sdk?branch=master#37f3269c4513827cd1473bce49b0401cc285f5bf" --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ 'runtime/tests', 'runtime/unique', ] -package.version = "1.1.0" +package.version = "1.2.0" resolver = "2" [profile.release] @@ -34,7 +34,7 @@ evm-coder = { version = "0.4.2", default-features = false, features = ['bondrewd'] } pallet-app-promotion = { path = "pallets/app-promotion", default-features = false } pallet-balances-adapter = { default-features = false, path = "pallets/balances-adapter" } -pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.1.0" } +pallet-charge-transaction = { package = "pallet-template-transaction-payment", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.2.0" } pallet-collator-selection = { default-features = false, path = "pallets/collator-selection" } pallet-common = { default-features = false, path = "pallets/common" } pallet-configuration = { default-features = false, path = "pallets/configuration" } @@ -61,7 +61,7 @@ up-data-structs = { path = "primitives/data-structs", default-features = false } up-pov-estimate-rpc = { path = "primitives/pov-estimate-rpc", default-features = false } up-rpc = { path = "primitives/rpc", default-features = false } -up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.1.0" } +up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.2.0" } # Unique: Runtimes opal-runtime = { path = "runtime/opal" } @@ -69,25 +69,155 @@ unique-runtime = { path = "runtime/unique" } # Frontier (Unique patches over the Parity version) -fc-api = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-api = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fc-db = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fc-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fc-rpc-core = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fp-rpc = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } fp-self-contained = { default-features = false, features = [ "serde", -], git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } -pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +], git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +fp-storage = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +pallet-base-fee = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } +pallet-evm-precompile-simple = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.2.0" } # Parity codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.6.5" } +cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-pallet-aura-ext = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-pallet-dmp-queue = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-pallet-parachain-system = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-pallet-xcmp-queue = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-primitives-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-primitives-parachain-inherent = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-primitives-timestamp = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-primitives-utility = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-executive = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-support = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-system = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-authorship = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-collective = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-democracy = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-membership = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-preimage = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-ranked-collective = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-referenda = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-scheduler = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-session = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-state-trie-migration = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-sudo = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-treasury = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-utility = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +staging-parachain-info = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false } +polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-chain-spec = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-client-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-consensus = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-consensus-manual-seal = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-network-sync = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-rpc-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-sysinfo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } +sp-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-block-builder = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-core = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-inherents = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-io = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-offchain = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-session = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-staking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-std = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-storage = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-trie = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-version = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +sp-weights = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +staging-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +staging-xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +staging-xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0", default-features = false } +substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } + +# Parity: Build utils +substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } + +# Parity: Benchmarking +frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } + +# Parity: Try Runtime +frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } +try-runtime-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.2.0" } + +# ORML +orml-tokens = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "substrate-master" } +orml-traits = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "substrate-master" } +orml-vesting = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "substrate-master" } +orml-xcm-support = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "substrate-master" } +orml-xtokens = { default-features = false, git = "https://github.com/uniquenetwork/open-runtime-module-library", branch = "substrate-master" } + +# Other +derivative = { version = "2.2.0", features = ["use_core"] } +ethereum = { version = "0.14.0", default-features = false } +evm-core = { git = "https://github.com/rust-blockchain/evm", rev = "b7b82c7e1fc57b7449d6dfa6826600de37cc1e65", default-features = false } +hex-literal = "0.4.1" +impl-trait-for-tuples = "0.2.2" +jsonrpsee = { version = "0.16.3", features = ["macros", "server"] } +log = { version = "0.4.20", default-features = false } +num_enum = { version = "0.7.0", default-features = false } +serde = { default-features = false, features = ['derive'], version = "1.0.188" } +smallvec = "1.11.1" + +[workspace.metadata.deppatcher.originals.workspace.dependencies] cumulus-client-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-client-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } @@ -95,47 +225,47 @@ cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-client-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-pallet-aura-ext = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-pallet-dmp-queue = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-pallet-parachain-system = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-pallet-xcm = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-pallet-xcmp-queue = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-primitives-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-primitives-core = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-primitives-parachain-inherent = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-primitives-timestamp = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -cumulus-primitives-utility = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-pallet-aura-ext = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-pallet-dmp-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-pallet-parachain-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-pallet-xcmp-queue = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-primitives-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-primitives-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-primitives-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +cumulus-primitives-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } cumulus-relay-chain-minimal-node = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -frame-executive = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -frame-support = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -frame-system = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-authorship = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-balances = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-collective = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-democracy = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-membership = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-preimage = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-ranked-collective = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-referenda = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-scheduler = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-session = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-state-trie-migration = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-sudo = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-executive = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-support = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-collective = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-democracy = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-membership = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-preimage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-ranked-collective = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-referenda = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-scheduler = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-state-trie-migration = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-sudo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-transaction-payment = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-treasury = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-utility = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } -parachain-info = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-treasury = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-utility = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +pallet-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +staging-parachain-info = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } polkadot-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } +polkadot-parachain-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +polkadot-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } polkadot-primitives = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } polkadot-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sc-basic-authorship = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } @@ -154,64 +284,323 @@ sc-telemetry = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sc-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sc-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -scale-info = { version = "2.9.0", default-features = false, features = ["derive"] } -sp-api = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-block-builder = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-api = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-arithmetic = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-block-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-blockchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-core = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-externalities = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-inherents = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-io = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-inherents = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-io = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-keystore = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-offchain = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-session = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-staking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-offchain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-staking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-std = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-storage = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-std = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-storage = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-timestamp = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } sp-tracing = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-trie = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-version = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -sp-weights = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -staging-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } -staging-xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } -staging-xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0", default-features = false } +sp-transaction-pool = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-trie = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-version = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +staging-xcm = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +staging-xcm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +staging-xcm-executor = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } substrate-frame-rpc-system = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } substrate-prometheus-endpoint = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } - -# Parity: Build utils substrate-build-script-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } - -# Parity: Benchmarking -frame-benchmarking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } frame-benchmarking-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } -frame-system-benchmarking = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } - -# Parity: Try Runtime -frame-try-runtime = { default-features = false, git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-system-benchmarking = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +frame-try-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } try-runtime-cli = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.1.0" } +orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } +orml-traits = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } +orml-vesting = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } +orml-xcm-support = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } +orml-xtokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } +fc-api = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-consensus = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-db = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-mapping-sync = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fc-rpc-core = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fp-evm = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fp-rpc = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fp-self-contained = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +fp-storage = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +pallet-base-fee = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +pallet-ethereum = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +pallet-evm = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +pallet-evm-precompile-simple = { git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v1.1.0" } +pallet-template-transaction-payment = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.1.0" } +up-sponsorship = { git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v1.1.0" } -# ORML -orml-tokens = { default-features = false, git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } -orml-traits = { default-features = false, git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } -orml-vesting = { default-features = false, git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } -orml-xcm-support = { default-features = false, git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } -orml-xtokens = { default-features = false, git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v1.1.0" } -# Other -derivative = { version = "2.2.0", features = ["use_core"] } -ethereum = { version = "0.14.0", default-features = false } -evm-core = { git = "https://github.com/rust-blockchain/evm", rev = "b7b82c7e1fc57b7449d6dfa6826600de37cc1e65", default-features = false } -hex-literal = "0.4.1" -impl-trait-for-tuples = "0.2.2" -jsonrpsee = { version = "0.16.3", features = ["macros", "server"] } -log = { version = "0.4.20", default-features = false } -num_enum = { version = "0.7.0", default-features = false } -serde = { default-features = false, features = ['derive'], version = "1.0.188" } -smallvec = "1.11.1" +[patch."https://github.com/paritytech/polkadot-sdk"] +binary-merkle-tree = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-cli = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-collator = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-consensus-aura = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-consensus-common = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-consensus-proposer = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-network = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-pov-recovery = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-client-service = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-aura-ext = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-dmp-queue = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-parachain-system = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-parachain-system-proc-macro = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-xcm = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-pallet-xcmp-queue = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-primitives-aura = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-primitives-core = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-primitives-parachain-inherent = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-primitives-timestamp = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-primitives-utility = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-relay-chain-inprocess-interface = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-relay-chain-interface = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-relay-chain-minimal-node = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-relay-chain-rpc-interface = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +cumulus-test-relay-sproof-builder = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +fork-tree = { version = "3.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-benchmarking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-benchmarking-cli = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-election-provider-solution-type = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-election-provider-support = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-executive = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-remote-externalities = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-support = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-support-procedural = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-support-procedural-tools = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-support-procedural-tools-derive = { version = "3.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-system = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-system-benchmarking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-system-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +frame-try-runtime = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +mmr-gadget = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +mmr-rpc = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-aura = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-authority-discovery = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-authorship = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-babe = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-bags-list = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-balances = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-beefy = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-beefy-mmr = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-bounties = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-child-bounties = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-collective = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-conviction-voting = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-democracy = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-election-provider-multi-phase = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-election-provider-support-benchmarking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-elections-phragmen = { version = "5.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-fast-unstake = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-grandpa = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-identity = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-im-online = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-indices = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-membership = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-message-queue = { version = "7.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-mmr = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-multisig = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-nis = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-nomination-pools = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-nomination-pools-benchmarking = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-nomination-pools-runtime-api = { version = "1.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-offences = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-offences-benchmarking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-preimage = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-proxy = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-ranked-collective = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-recovery = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-referenda = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-scheduler = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-session = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-session-benchmarking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-society = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-staking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-staking-reward-curve = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-staking-reward-fn = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-staking-runtime-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-state-trie-migration = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-sudo = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-timestamp = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-tips = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-transaction-payment = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-transaction-payment-rpc = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-treasury = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-utility = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-vesting = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-whitelist = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-xcm = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +pallet-xcm-benchmarks = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +staging-parachain-info = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-approval-distribution = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-availability-bitfield-distribution = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-availability-distribution = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-availability-recovery = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-cli = { version = "1.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-collator-protocol = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-core-primitives = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-dispute-distribution = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-erasure-coding = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-gossip-support = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-network-bridge = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-collation-generation = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-approval-voting = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-av-store = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-backing = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-bitfield-signing = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-candidate-validation = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-chain-api = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-chain-selection = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-dispute-coordinator = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-parachains-inherent = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-prospective-parachains = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-provisioner = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-pvf = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-pvf-checker = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-pvf-common = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-pvf-prepare-worker = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-core-runtime-api = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-jaeger = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-metrics = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-network-protocol = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-primitives = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-subsystem = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-subsystem-types = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-node-subsystem-util = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-overseer = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-parachain-primitives = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-primitives = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-rpc = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-runtime-common = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-runtime-metrics = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-runtime-parachains = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-service = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-statement-distribution = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +polkadot-statement-table = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +rococo-runtime = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +rococo-runtime-constants = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-allocator = { version = "4.1.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-authority-discovery = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-basic-authorship = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-block-builder = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-chain-spec = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-chain-spec-derive = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-cli = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-client-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-client-db = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-aura = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-babe = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-babe-rpc = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-beefy-rpc = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-epochs = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-grandpa = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-grandpa-rpc = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-manual-seal = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-consensus-slots = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-executor = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-executor-common = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-executor-wasmtime = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-informant = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-keystore = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-bitswap = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-common = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-gossip = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-light = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-sync = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-network-transactions = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-offchain = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-proposer-metrics = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-rpc = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-rpc-api = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-rpc-server = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-rpc-spec-v2 = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-service = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-state-db = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-storage-monitor = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-sync-state-rpc = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-sysinfo = { version = "6.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-telemetry = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-tracing = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-tracing-proc-macro = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-transaction-pool = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-transaction-pool-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sc-utils = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +slot-range-helper = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-api = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-api-proc-macro = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-application-crypto = { version = "23.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-arithmetic = { version = "16.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-authority-discovery = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-block-builder = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-blockchain = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus-aura = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus-babe = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus-beefy = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus-grandpa = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-consensus-slots = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-core = { version = "21.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-core-hashing = { version = "9.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-core-hashing-proc-macro = { version = "9.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-database = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-debug-derive = { version = "8.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-externalities = { version = "0.19.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-genesis-builder = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-inherents = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-io = { version = "23.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-keyring = { version = "24.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-keystore = { version = "0.27.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-maybe-compressed-blob = { version = "4.1.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-metadata-ir = { version = "0.1.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-mmr-primitives = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-npos-elections = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-offchain = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-panic-handler = { version = "8.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-rpc = { version = "6.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-runtime = { version = "24.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-runtime-interface = { version = "17.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-runtime-interface-proc-macro = { version = "11.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-session = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-staking = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-state-machine = { version = "0.28.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-statement-store = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-std = { version = "8.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-storage = { version = "13.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-timestamp = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-tracing = { version = "10.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-transaction-pool = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-transaction-storage-proof = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-trie = { version = "22.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-version = { version = "22.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-version-proc-macro = { version = "8.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-wasm-interface = { version = "14.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +sp-weights = { version = "20.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +staging-xcm = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +staging-xcm-builder = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +staging-xcm-executor = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-build-script-utils = { version = "3.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-frame-rpc-system = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-prometheus-endpoint = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-rpc-client = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-state-trie-migration-rpc = { version = "4.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +tracing-gum = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +tracing-gum-proc-macro = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +try-runtime-cli = { version = "0.10.0-dev", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +westend-runtime = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +westend-runtime-constants = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } +xcm-procedural = { version = "1.0.0", git = "https://github.com//paritytech/polkadot-sdk", branch = "master" } --- a/runtime/common/config/parachain.rs +++ b/runtime/common/config/parachain.rs @@ -26,7 +26,7 @@ impl cumulus_pallet_parachain_system::Config for Runtime { type RuntimeEvent = RuntimeEvent; - type SelfParaId = parachain_info::Pallet; + type SelfParaId = staging_parachain_info::Pallet; type OnSystemEvent = (); // type DownwardMessageHandlers = cumulus_primitives_utility::UnqueuedDmpAsParent< // MaxDownwardMessageWeight, @@ -47,7 +47,7 @@ type ConsensusHook = ConsensusHook; } -impl parachain_info::Config for Runtime {} +impl staging_parachain_info::Config for Runtime {} impl cumulus_pallet_aura_ext::Config for Runtime {} --- a/runtime/common/config/substrate.rs +++ b/runtime/common/config/substrate.rs @@ -17,7 +17,7 @@ use frame_support::{ dispatch::DispatchClass, ord_parameter_types, parameter_types, - traits::{ConstBool, ConstU32, ConstU64, Everything, NeverEnsureOrigin}, + traits::{ConstBool, ConstU32, ConstU64, Everything, NeverEnsureOrigin, tokens::{PayFromAccount, UnityAssetBalanceConversion}}, weights::{ constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight}, ConstantMultiplier, @@ -31,7 +31,7 @@ use pallet_transaction_payment::{ConstFeeMultiplier, Multiplier}; use sp_arithmetic::traits::One; use sp_runtime::{ - traits::{AccountIdLookup, BlakeTwo256}, + traits::{AccountIdLookup, BlakeTwo256, IdentityLookup}, Perbill, Percent, Permill, }; use sp_std::vec; @@ -39,7 +39,7 @@ use crate::{ runtime_common::DealWithFees, Balances, Block, OriginCaller, PalletInfo, Runtime, RuntimeCall, - RuntimeEvent, RuntimeHoldReason, RuntimeOrigin, SS58Prefix, System, Version, + RuntimeEvent, RuntimeHoldReason, RuntimeFreezeReason, RuntimeOrigin, SS58Prefix, System, Version, Treasury, }; parameter_types! { @@ -170,6 +170,7 @@ type AccountStore = System; type WeightInfo = pallet_balances::weights::SubstrateWeight; type RuntimeHoldReason = RuntimeHoldReason; + type RuntimeFreezeReason = RuntimeFreezeReason; type FreezeIdentifier = [u8; 16]; type MaxHolds = MaxHolds; type MaxFreezes = MaxFreezes; @@ -205,6 +206,7 @@ pub const BountyDepositBase: Balance = 1 * UNIQUE; pub const BountyDepositPayoutDelay: BlockNumber = 1 * DAYS; pub const TreasuryModuleId: PalletId = PalletId(*b"py/trsry"); + pub TreasuryAccount: AccountId = Treasury::account_id(); pub const BountyUpdatePeriod: BlockNumber = 14 * DAYS; pub const MaximumReasonLength: u32 = 16384; pub const BountyCuratorDeposit: Permill = Permill::from_percent(50); @@ -229,6 +231,12 @@ type SpendFunds = (); type WeightInfo = pallet_treasury::weights::SubstrateWeight; type MaxApprovals = MaxApprovals; + type AssetKind = (); + type Beneficiary = AccountId; + type BeneficiaryLookup = IdentityLookup; + type Paymaster = PayFromAccount; + type BalanceConverter = UnityAssetBalanceConversion; + type PayoutPeriod = ConstU32<10>; } impl pallet_sudo::Config for Runtime { --- a/runtime/common/config/xcm/foreignassets.rs +++ b/runtime/common/config/xcm/foreignassets.rs @@ -132,7 +132,7 @@ fn check_out(_dest: &MultiLocation, _what: &MultiAsset, _context: &XcmContext) {} - fn deposit_asset(what: &MultiAsset, who: &MultiLocation, context: &XcmContext) -> XcmResult { + fn deposit_asset(what: &MultiAsset, who: &MultiLocation, context: Option<&XcmContext>) -> XcmResult { FungiblesTransactor::deposit_asset(what, who, context) } --- a/runtime/common/config/xcm/mod.rs +++ b/runtime/common/config/xcm/mod.rs @@ -36,6 +36,8 @@ XcmExecutor, }; use up_common::types::AccountId; +use cumulus_primitives_core::ParaId; +use polkadot_runtime_common::xcm_sender::NoPriceForMessageDelivery; use crate::{ xcm_barrier::Barrier, AllPalletsWithSystem, Balances, ParachainInfo, ParachainSystem, @@ -283,7 +285,6 @@ type RuntimeEvent = RuntimeEvent; type XcmExecutor = XcmExecutor>; } - impl cumulus_pallet_xcmp_queue::Config for Runtime { type WeightInfo = (); type RuntimeEvent = RuntimeEvent; @@ -299,7 +300,7 @@ type ControllerOrigin = frame_system::EnsureRoot; type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin; - type PriceForSiblingDelivery = (); + type PriceForSiblingDelivery = NoPriceForMessageDelivery; } impl cumulus_pallet_dmp_queue::Config for Runtime { --- a/runtime/common/construct_runtime.rs +++ b/runtime/common/construct_runtime.rs @@ -24,7 +24,7 @@ StateTrieMigration: pallet_state_trie_migration = 1, ParachainSystem: cumulus_pallet_parachain_system = 20, - ParachainInfo: parachain_info = 21, + ParachainInfo: staging_parachain_info = 21, #[cfg(feature = "collator-selection")] Authorship: pallet_authorship = 22, --- a/runtime/opal/Cargo.toml +++ b/runtime/opal/Cargo.toml @@ -126,7 +126,8 @@ 'pallet-treasury/std', 'pallet-unique/std', 'pallet-utility/std', - 'parachain-info/std', + 'staging-parachain-info/std', + 'polkadot-runtime-common/std', 'serde', 'sp-api/std', 'sp-block-builder/std', @@ -220,7 +221,8 @@ 'pallet-unique/try-runtime', 'pallet-utility/try-runtime', 'pallet-xcm/try-runtime', - 'parachain-info/try-runtime', + 'staging-parachain-info/try-runtime', + 'polkadot-runtime-common/try-runtime', ] app-promotion = [] @@ -228,7 +230,7 @@ foreign-assets = [] gov-test-timings = [] governance = [] -lookahead = [] +lookahead = ['cumulus-pallet-parachain-system/parameterized-consensus-hook', 'pallet-aura/experimental'] preimage = [] refungible = [] session-test-timings = [] @@ -269,9 +271,10 @@ pallet-treasury = { workspace = true } pallet-utility = { workspace = true } pallet-xcm = { workspace = true } -parachain-info = { workspace = true } +staging-parachain-info = { workspace = true } parity-scale-codec = { workspace = true } polkadot-parachain-primitives = { workspace = true } +polkadot-runtime-common = { workspace = true } smallvec = { workspace = true } sp-api = { workspace = true } sp-arithmetic = { workspace = true } --- a/runtime/quartz/Cargo.toml +++ b/runtime/quartz/Cargo.toml @@ -126,7 +126,7 @@ 'pallet-treasury/std', 'pallet-unique/std', 'pallet-utility/std', - 'parachain-info/std', + 'staging-parachain-info/std', 'serde', 'sp-api/std', 'sp-block-builder/std', @@ -210,7 +210,7 @@ 'pallet-unique/try-runtime', 'pallet-utility/try-runtime', 'pallet-xcm/try-runtime', - 'parachain-info/try-runtime', + 'staging-parachain-info/try-runtime', ] app-promotion = [] @@ -257,7 +257,7 @@ pallet-treasury = { workspace = true } pallet-utility = { workspace = true } pallet-xcm = { workspace = true } -parachain-info = { workspace = true } +staging-parachain-info = { workspace = true } parity-scale-codec = { workspace = true } polkadot-parachain-primitives = { workspace = true } smallvec = { workspace = true } --- a/runtime/unique/Cargo.toml +++ b/runtime/unique/Cargo.toml @@ -124,7 +124,7 @@ 'pallet-treasury/std', 'pallet-unique/std', 'pallet-utility/std', - 'parachain-info/std', + 'staging-parachain-info/std', 'sp-api/std', 'sp-block-builder/std', 'sp-core/std', @@ -212,7 +212,7 @@ 'pallet-unique/try-runtime', 'pallet-utility/try-runtime', 'pallet-xcm/try-runtime', - 'parachain-info/try-runtime', + 'staging-parachain-info/try-runtime', ] unique-runtime = ['app-promotion', 'foreign-assets', 'refungible', 'governance', 'preimage'] @@ -260,7 +260,7 @@ pallet-treasury = { workspace = true } pallet-utility = { workspace = true } pallet-xcm = { workspace = true } -parachain-info = { workspace = true } +staging-parachain-info = { workspace = true } parity-scale-codec = { workspace = true } polkadot-parachain-primitives = { workspace = true } smallvec = { workspace = true } -- gitstuff