From 4b245d27ffaeca2c9e1732e7dfd07728d2534b9f Mon Sep 17 00:00:00 2001 From: Joshy Orndorff Date: Wed, 3 May 2023 13:46:06 -0400 Subject: [PATCH] Update Substrate and other dependencies (#78) * update the deps * Type Info. Reflect https://github.com/paritytech/substrate/pull/13272 * can't update jsonrpsee because substrate hasn't yet. * fix warning reflect let executor = sc_service::new_native_or_wasm_executor(&config); * clippy --- Cargo.lock | 1191 ++++++++++------- node/Cargo.toml | 56 +- node/src/service.rs | 7 +- tuxedo-core/Cargo.toml | 14 +- tuxedo-core/src/dynamic_typing.rs | 3 +- tuxedo-core/src/types.rs | 9 +- tuxedo-core/src/verifier.rs | 7 +- tuxedo-template-runtime/Cargo.toml | 40 +- tuxedo-template-runtime/src/amoeba.rs | 7 +- tuxedo-template-runtime/src/lib.rs | 5 +- tuxedo-template-runtime/src/poe.rs | 7 +- .../src/runtime_upgrade.rs | 3 +- wallet/Cargo.toml | 8 +- 13 files changed, 822 insertions(+), 535 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 071207caa..41af10f4e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -42,7 +42,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -51,18 +51,18 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "rand_core 0.6.4", ] [[package]] name = "aead" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c192eb8f11fc081b0fe4259ba5af04217d4e0faddd02417310a927911abd7c8" +checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ "crypto-common", - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -119,7 +119,7 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" dependencies = [ - "aead 0.5.1", + "aead 0.5.2", "aes 0.8.2", "cipher 0.4.4", "ctr 0.9.2", @@ -161,7 +161,7 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" dependencies = [ - "getrandom 0.2.8", + "getrandom 0.2.9", "once_cell", "version_check", ] @@ -173,7 +173,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" dependencies = [ "cfg-if", - "getrandom 0.2.8", + "getrandom 0.2.9", "once_cell", "version_check", ] @@ -187,6 +187,15 @@ dependencies = [ "memchr", ] +[[package]] +name = "aho-corasick" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" +dependencies = [ + "memchr", +] + [[package]] name = "android_system_properties" version = "0.1.5" @@ -205,11 +214,60 @@ dependencies = [ "winapi", ] +[[package]] +name = "anstream" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is-terminal", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" + +[[package]] +name = "anstyle-parse" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b" +dependencies = [ + "windows-sys 0.48.0", +] + +[[package]] +name = "anstyle-wincon" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188" +dependencies = [ + "anstyle", + "windows-sys 0.48.0", +] + [[package]] name = "anyhow" -version = "1.0.70" +version = "1.0.71" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4" +checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" [[package]] name = "arc-swap" @@ -225,15 +283,15 @@ checksum = "f52f63c5c1316a16a4b35eaac8b76a98248961a533f061684cb2a7cb0eafb6c6" [[package]] name = "array-bytes" -version = "6.0.0" +version = "6.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22f72e9d6fac4bc80778ea470b20197b88d28c292bb7d60c3fb099280003cd19" +checksum = "d9b1c5a481ec30a5abd8dfbd94ab5cf1bb4e9a66be7f1b3b322f2f1170c200fd" [[package]] name = "arrayref" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" +checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" [[package]] name = "arrayvec" @@ -316,9 +374,9 @@ dependencies = [ [[package]] name = "asn1_der" -version = "0.7.5" +version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e22d1f4b888c298a027c99dc9048015fac177587de20fc30232a057dfbe24a21" +checksum = "155a5a185e42c6b77ac7b88a15143d930a9e9727a5b7b77eed417404ab15c247" [[package]] name = "async-channel" @@ -333,22 +391,22 @@ dependencies = [ [[package]] name = "async-io" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8c374dda1ed3e7d8f0d9ba58715f924862c63eae6849c92d3a18e7fbde9e2794" +checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" dependencies = [ "async-lock", "autocfg", + "cfg-if", "concurrent-queue", "futures-lite", - "libc", "log", "parking", "polling", + "rustix 0.37.18", "slab", "socket2", "waker-fn", - "windows-sys 0.42.0", ] [[package]] @@ -362,9 +420,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.67" +version = "0.1.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86ea188f25f0255d8f92797797c97ebf5631fa88178beb1a46fdf5622c9a00e4" +checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" dependencies = [ "proc-macro2", "quote", @@ -386,9 +444,9 @@ dependencies = [ [[package]] name = "atomic-waker" -version = "1.1.0" +version = "1.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "debc29dde2e69f9e47506b525f639ed42300fc014a3e007832592448fa8e4599" +checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" [[package]] name = "atty" @@ -417,7 +475,7 @@ dependencies = [ "cc", "cfg-if", "libc", - "miniz_oxide", + "miniz_oxide 0.6.2", "object 0.30.3", "rustc-demangle", ] @@ -482,7 +540,7 @@ version = "0.64.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4243e6031260db77ede97ad86c27e501d646a27ab57b59a574f725d98ab1fb4" dependencies = [ - "bitflags 1.3.2", + "bitflags", "cexpr", "clang-sys", "lazy_static", @@ -502,12 +560,6 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -[[package]] -name = "bitflags" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" - [[package]] name = "bitvec" version = "1.0.1" @@ -582,7 +634,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -591,7 +643,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -621,9 +673,9 @@ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" [[package]] name = "bounded-collections" -version = "0.1.5" +version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a071c348a5ef6da1d3a87166b408170b46002382b1dda83992b5c2208cefb370" +checksum = "e3888522b497857eb606bf51695988dba7096941822c1bcf676e3a929a9ae7a0" dependencies = [ "log", "parity-scale-codec", @@ -658,9 +710,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.12.0" +version = "3.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d261e256854913907f67ed06efbc3338dfe6179796deefc1ff763fc1aee5535" +checksum = "9b1ce199063694f33ffb7dd4e0ee620741495c32833cde5aa08f02a0bf96f0c8" [[package]] name = "byte-slice-cast" @@ -717,9 +769,9 @@ dependencies = [ [[package]] name = "cargo_metadata" -version = "0.15.3" +version = "0.15.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08a1ec454bc3eead8719cb56e15dbbfecdbc14e4b3a3ae4936cc6e31f5fc0d07" +checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a" dependencies = [ "camino", "cargo-platform", @@ -838,7 +890,7 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -847,7 +899,7 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -862,9 +914,9 @@ dependencies = [ [[package]] name = "clang-sys" -version = "1.6.0" +version = "1.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ed9a53e5d4d9c573ae844bfac6872b159cb1d1585a83b29e7a64b7eef7332a" +checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f" dependencies = [ "glob", "libc", @@ -873,40 +925,45 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.11" +version = "4.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098" +checksum = "8a1f23fa97e1d1641371b51f35535cb26959b8e27ab50d167a8b996b5bada819" dependencies = [ - "bitflags 2.0.2", + "clap_builder", "clap_derive", - "clap_lex", - "is-terminal", "once_cell", +] + +[[package]] +name = "clap_builder" +version = "4.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fdc5d93c358224b4d6867ef1356d740de2303e9892edc06c5340daeccd96bab" +dependencies = [ + "anstream", + "anstyle", + "bitflags", + "clap_lex", "strsim", - "termcolor", ] [[package]] name = "clap_derive" -version = "4.1.9" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644" +checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" dependencies = [ "heck", - "proc-macro-error", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "clap_lex" -version = "0.3.3" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "033f6b7a4acb1f358c742aaca805c939ee73b4c6209ae4318ec7aca81c42e646" -dependencies = [ - "os_str_bytes", -] +checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] name = "codespan-reporting" @@ -918,11 +975,17 @@ dependencies = [ "unicode-width", ] +[[package]] +name = "colorchoice" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" + [[package]] name = "concurrent-queue" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c278839b831783b70278b14df4d45e1beb1aad306c07bb796637de9a0e323e8e" +checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" dependencies = [ "crossbeam-utils", ] @@ -951,9 +1014,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.3" +version = "0.8.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" +checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" [[package]] name = "core2" @@ -975,27 +1038,27 @@ dependencies = [ [[package]] name = "cpufeatures" -version = "0.2.5" +version = "0.2.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320" +checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" dependencies = [ "libc", ] [[package]] name = "cranelift-bforest" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7379abaacee0f14abf3204a7606118f0465785252169d186337bcb75030815a" +checksum = "2bc42ba2e232e5b20ff7dc299a812d53337dadce9a7e39a238e6a5cb82d2e57b" dependencies = [ "cranelift-entity", ] [[package]] name = "cranelift-codegen" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9489fa336927df749631f1008007ced2871068544f40a202ce6d93fbf2366a7b" +checksum = "253531aca9b6f56103c9420369db3263e784df39aa1c90685a1f69cfbba0623e" dependencies = [ "arrayvec 0.7.2", "bumpalo", @@ -1014,33 +1077,33 @@ dependencies = [ [[package]] name = "cranelift-codegen-meta" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05bbb67da91ec721ed57cef2f7c5ef7728e1cd9bde9ffd3ef8601022e73e3239" +checksum = "72f2154365e2bff1b1b8537a7181591fdff50d8e27fa6e40d5c69c3bad0ca7c8" dependencies = [ "cranelift-codegen-shared", ] [[package]] name = "cranelift-codegen-shared" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418ecb2f36032f6665dc1a5e2060a143dbab41d83b784882e97710e890a7a16d" +checksum = "687e14e3f5775248930e0d5a84195abef8b829958e9794bf8d525104993612b4" [[package]] name = "cranelift-entity" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cf583f7b093f291005f9fb1323e2c37f6ee4c7909e39ce016b2e8360d461705" +checksum = "f42ea692c7b450ad18b8c9889661505d51c09ec4380cf1c2d278dbb2da22cae1" dependencies = [ "serde", ] [[package]] name = "cranelift-frontend" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b66bf9e916f57fbbd0f7703ec6286f4624866bf45000111627c70d272c8dda1" +checksum = "8483c2db6f45fe9ace984e5adc5d058102227e4c62e5aa2054e16b0275fd3a6e" dependencies = [ "cranelift-codegen", "log", @@ -1050,15 +1113,15 @@ dependencies = [ [[package]] name = "cranelift-isle" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "649782a39ce99798dd6b4029e2bb318a2fbeaade1b4fa25330763c10c65bc358" +checksum = "e9793158837678902446c411741d87b43f57dadfb944f2440db4287cda8cbd59" [[package]] name = "cranelift-native" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "937e021e089c51f9749d09e7ad1c4f255c2f8686cb8c3df63a34b3ec9921bc41" +checksum = "72668c7755f2b880665cb422c8ad2d56db58a88b9bebfef0b73edc2277c13c49" dependencies = [ "cranelift-codegen", "libc", @@ -1067,9 +1130,9 @@ dependencies = [ [[package]] name = "cranelift-wasm" -version = "0.93.1" +version = "0.93.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d850cf6775477747c9dfda9ae23355dd70512ffebc70cf82b85a5b111ae668b5" +checksum = "3852ce4b088b44ac4e29459573943009a70d1b192c8d77ef949b4e814f656fc1" dependencies = [ "cranelift-codegen", "cranelift-entity", @@ -1107,9 +1170,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.7" +version = "0.5.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf2b3e8478797446514c91ef04bafcb59faba183e621ad488df88983cc14128c" +checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" dependencies = [ "cfg-if", "crossbeam-utils", @@ -1160,7 +1223,7 @@ version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "rand_core 0.6.4", "subtle", "zeroize", @@ -1168,11 +1231,11 @@ dependencies = [ [[package]] name = "crypto-bigint" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c2538c4e68e52548bacb3e83ac549f903d44f011ac9d5abb5e132e67d0808f7" +checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "rand_core 0.6.4", "subtle", "zeroize", @@ -1184,7 +1247,7 @@ version = "0.1.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "rand_core 0.6.4", "typenum", ] @@ -1195,7 +1258,7 @@ version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "subtle", ] @@ -1205,7 +1268,7 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "subtle", ] @@ -1269,9 +1332,9 @@ dependencies = [ [[package]] name = "cxx" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a9c00419335c41018365ddf7e4d5f1c12ee3659ddcf3e01974650ba1de73d038" +checksum = "f61f1b6389c3fe1c316bf8a4dccc90a38208354b330925bce1f74a6c4756eb93" dependencies = [ "cc", "cxxbridge-flags", @@ -1281,9 +1344,9 @@ dependencies = [ [[package]] name = "cxx-build" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb8307ad413a98fff033c8545ecf133e3257747b3bae935e7602aab8aa92d4ca" +checksum = "12cee708e8962df2aeb38f594aae5d827c022b6460ac71a7a3e2c3c2aae5a07b" dependencies = [ "cc", "codespan-reporting", @@ -1296,15 +1359,15 @@ dependencies = [ [[package]] name = "cxxbridge-flags" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edc52e2eb08915cb12596d29d55f0b5384f00d697a646dbd269b6ecb0fbd9d31" +checksum = "7944172ae7e4068c533afbb984114a56c46e9ccddda550499caa222902c7f7bb" [[package]] name = "cxxbridge-macro" -version = "1.0.93" +version = "1.0.94" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "631569015d0d8d54e6c241733f944042623ab6df7bc3be7466874b05fcdb1c5f" +checksum = "2345488264226bf682893e25de0769f3360aac9957980ec49361b083ddaa5bc5" dependencies = [ "proc-macro2", "quote", @@ -1385,9 +1448,9 @@ dependencies = [ [[package]] name = "der" -version = "0.7.3" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b10af9f9f9f2134a42d3f8aa74658660f2e0234b0eb81bd171df8aa32779ed" +checksum = "05e58dffcdcc8ee7b22f0c1f71a69243d7c2d9ad87b5a14361f2424a1565c219" dependencies = [ "const-oid", "zeroize", @@ -1495,7 +1558,7 @@ version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -1521,11 +1584,11 @@ dependencies = [ [[package]] name = "directories" -version = "5.0.0" +version = "5.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74be3be809c18e089de43bdc504652bb2bc473fca8756131f8689db8cf079ba9" +checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35" dependencies = [ - "dirs-sys 0.4.0", + "dirs-sys 0.4.1", ] [[package]] @@ -1551,13 +1614,14 @@ dependencies = [ [[package]] name = "dirs-sys" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" dependencies = [ "libc", + "option-ext", "redox_users", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -1645,7 +1709,7 @@ version = "0.16.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a48e5d537b8a30c0b023116d981b16334be1485af7ca68db3a2b7024cbc957fd" dependencies = [ - "der 0.7.3", + "der 0.7.5", "digest 0.10.6", "elliptic-curve 0.13.4", "rfc6979 0.4.0", @@ -1706,7 +1770,7 @@ dependencies = [ "der 0.6.1", "digest 0.10.6", "ff 0.12.1", - "generic-array 0.14.6", + "generic-array 0.14.7", "group 0.12.1", "hkdf", "pem-rfc7468", @@ -1724,14 +1788,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75c71eaa367f2e5d556414a8eea812bc62985c879748d6403edabd9cb03f16e7" dependencies = [ "base16ct 0.2.0", - "crypto-bigint 0.5.1", + "crypto-bigint 0.5.2", "digest 0.10.6", "ff 0.13.0", - "generic-array 0.14.6", + "generic-array 0.14.7", "group 0.13.0", "pkcs8 0.10.2", "rand_core 0.6.4", - "sec1 0.7.1", + "sec1 0.7.2", "subtle", "zeroize", ] @@ -1778,6 +1842,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "errno" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" +dependencies = [ + "errno-dragonfly", + "libc", + "windows-sys 0.48.0", +] + [[package]] name = "errno-dragonfly" version = "0.1.2" @@ -1895,9 +1970,9 @@ dependencies = [ [[package]] name = "fiat-crypto" -version = "0.1.19" +version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93ace6ec7cc19c8ed33a32eaa9ea692d7faea05006b5356b9e2b668ec4bc3955" +checksum = "e825f6987101665dea6ec934c09ec6d721de7bc1bf92248e1d5810c8cd636b77" [[package]] name = "file-per-thread-logger" @@ -1911,14 +1986,14 @@ dependencies = [ [[package]] name = "filetime" -version = "0.2.20" +version = "0.2.21" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412" +checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" dependencies = [ "cfg-if", "libc", - "redox_syscall", - "windows-sys 0.45.0", + "redox_syscall 0.2.16", + "windows-sys 0.48.0", ] [[package]] @@ -1957,13 +2032,13 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flate2" -version = "1.0.25" +version = "1.0.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841" +checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" dependencies = [ "crc32fast", "libz-sys", - "miniz_oxide", + "miniz_oxide 0.7.1", ] [[package]] @@ -1984,7 +2059,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", ] @@ -2006,9 +2081,9 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-metadata" -version = "15.0.0" +version = "15.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df6bb8542ef006ef0de09a5c4420787d79823c0ed7924225822362fd2bf2ff2d" +checksum = "878babb0b136e731cc77ec2fd883ff02745ff21e6fb662729953d44923df009c" dependencies = [ "cfg-if", "parity-scale-codec", @@ -2019,9 +2094,9 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ - "bitflags 1.3.2", + "bitflags", "environmental", "frame-metadata", "frame-support-procedural", @@ -2052,44 +2127,45 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "Inflector", "cfg-expr", "derive-syn-parse", "frame-support-procedural-tools", "itertools", + "proc-macro-warning", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "frame-support", "log", @@ -2188,9 +2264,9 @@ checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" [[package]] name = "futures-lite" -version = "1.12.0" +version = "1.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48" +checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" dependencies = [ "fastrand", "futures-core", @@ -2279,9 +2355,9 @@ dependencies = [ [[package]] name = "generic-array" -version = "0.14.6" +version = "0.14.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", "version_check", @@ -2301,9 +2377,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.8" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" dependencies = [ "cfg-if", "libc", @@ -2359,7 +2435,7 @@ version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc" dependencies = [ - "aho-corasick", + "aho-corasick 0.7.20", "bstr", "fnv", "log", @@ -2390,9 +2466,9 @@ dependencies = [ [[package]] name = "h2" -version = "0.3.16" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d" +checksum = "17f8a914c2987b688368b5138aa05321db91f4090cf26118185672ad588bce21" dependencies = [ "bytes", "fnv", @@ -2476,12 +2552,6 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -[[package]] -name = "hex-literal" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0" - [[package]] name = "hex-literal" version = "0.4.1" @@ -2533,7 +2603,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17ea0a1394df5b6574da6e0c1ade9e78868c9fb0a4e5ef4428e32da4676b85b1" dependencies = [ "digest 0.9.0", - "generic-array 0.14.6", + "generic-array 0.14.7", "hmac 0.8.1", ] @@ -2596,9 +2666,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "hyper" -version = "0.14.25" +version = "0.14.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899" +checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" dependencies = [ "bytes", "futures-channel", @@ -2636,16 +2706,16 @@ dependencies = [ [[package]] name = "iana-time-zone" -version = "0.1.53" +version = "0.1.56" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" +checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" dependencies = [ "android_system_properties", "core-foundation-sys", "iana-time-zone-haiku", "js-sys", "wasm-bindgen", - "winapi", + "windows 0.48.0", ] [[package]] @@ -2697,9 +2767,9 @@ dependencies = [ [[package]] name = "if-watch" -version = "3.0.0" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba7abdbb86e485125dad06c2691e1e393bf3b08c7b743b43aa162a00fd39062e" +checksum = "a9465340214b296cd17a0009acdb890d6160010b8adf8f78a00d0d7ab270f79f" dependencies = [ "async-io", "core-foundation", @@ -2711,7 +2781,7 @@ dependencies = [ "rtnetlink", "system-configuration", "tokio", - "windows", + "windows 0.34.0", ] [[package]] @@ -2754,9 +2824,9 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.9.2" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" dependencies = [ "autocfg", "hashbrown 0.12.3", @@ -2769,7 +2839,7 @@ version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", ] [[package]] @@ -2817,13 +2887,13 @@ checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" [[package]] name = "io-lifetimes" -version = "1.0.9" +version = "1.0.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09270fd4fa1111bc614ed2246c7ef56239a3063d5be0d1ec3b589c505d400aeb" +checksum = "9c66c74d2ae7e79a5a8f7ac924adbe38ee42a859c6539ad869eb51f0b52dc220" dependencies = [ "hermit-abi 0.3.1", "libc", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -2846,20 +2916,20 @@ dependencies = [ [[package]] name = "ipnet" -version = "2.7.1" +version = "2.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30e22bd8629359895450b59ea7a776c850561b96a3b1d31321c1949d9e6c9146" +checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" [[package]] name = "is-terminal" -version = "0.4.5" +version = "0.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e" +checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f" dependencies = [ "hermit-abi 0.3.1", - "io-lifetimes 1.0.9", - "rustix 0.36.11", - "windows-sys 0.45.0", + "io-lifetimes 1.0.10", + "rustix 0.37.18", + "windows-sys 0.48.0", ] [[package]] @@ -3046,9 +3116,9 @@ dependencies = [ [[package]] name = "kvdb-rocksdb" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2182b8219fee6bd83aacaab7344e840179ae079d5216aa4e249b4d704646a844" +checksum = "fe7a749456510c45f795e8b04a6a3e0976d0139213ecbf465843830ad55e2217" dependencies = [ "kvdb", "num_cpus", @@ -3072,9 +3142,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" [[package]] name = "libc" -version = "0.2.140" +version = "0.2.142" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c" +checksum = "6a987beff54b60ffa6d51982e1aa1146bc42f19bd26be28b0586f252fccf5317" [[package]] name = "libloading" @@ -3107,7 +3177,7 @@ dependencies = [ "bytes", "futures", "futures-timer", - "getrandom 0.2.8", + "getrandom 0.2.9", "instant", "libp2p-core 0.38.0", "libp2p-dns", @@ -3168,9 +3238,9 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.39.1" +version = "0.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b7f8b7d65c070a5a1b5f8f0510648189da08f787b8963f8e21219e0710733af" +checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" dependencies = [ "either", "fnv", @@ -3179,7 +3249,7 @@ dependencies = [ "instant", "libp2p-identity", "log", - "multiaddr 0.17.0", + "multiaddr 0.17.1", "multihash 0.17.0", "multistream-select", "once_cell", @@ -3231,18 +3301,18 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.1.1" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a8ea433ae0cea7e3315354305237b9897afe45278b2118a7a57ca744e70fd27" +checksum = "9e2d584751cecb2aabaa56106be6be91338a60a0f4e420cf2af639204f596fc1" dependencies = [ "bs58", "ed25519-dalek", "log", - "multiaddr 0.17.0", + "multiaddr 0.17.1", "multihash 0.17.0", - "prost", "quick-protobuf", "rand 0.8.5", + "sha2 0.10.6", "thiserror", "zeroize", ] @@ -3462,7 +3532,7 @@ checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" dependencies = [ "futures", "futures-rustls", - "libp2p-core 0.39.1", + "libp2p-core 0.39.2", "libp2p-identity", "rcgen 0.10.0", "ring", @@ -3553,9 +3623,9 @@ dependencies = [ [[package]] name = "librocksdb-sys" -version = "0.8.3+7.4.4" +version = "0.10.0+7.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "557b255ff04123fcc176162f56ed0c9cd42d8f357cf55b3fabeb60f7413741b3" +checksum = "0fe4d5874f5ff2bc616e55e8c6086d478fcda13faf9495768a4aa1c22042d30b" dependencies = [ "bindgen", "bzip2-sys", @@ -3616,9 +3686,9 @@ dependencies = [ [[package]] name = "libz-sys" -version = "1.1.8" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf" +checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" dependencies = [ "cc", "pkg-config", @@ -3661,6 +3731,12 @@ version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4" +[[package]] +name = "linux-raw-sys" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b64f40e5e03e0d54f03845c8197d0291253cdbedfb1cb46b13c2c117554a9f4c" + [[package]] name = "lock_api" version = "0.4.9" @@ -3765,11 +3841,11 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" [[package]] name = "memfd" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b20a59d985586e4a5aef64564ac77299f8586d8be6cf9106a5a40207e8908efb" +checksum = "ffc89ccdc6e10d6907450f753537ebc5c5d3460d2e4e62ea74bd571db62c0f9e" dependencies = [ - "rustix 0.36.11", + "rustix 0.37.18", ] [[package]] @@ -3841,6 +3917,15 @@ dependencies = [ "adler", ] +[[package]] +name = "miniz_oxide" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +dependencies = [ + "adler", +] + [[package]] name = "mio" version = "0.8.6" @@ -3855,9 +3940,9 @@ dependencies = [ [[package]] name = "mockall" -version = "0.11.3" +version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50e4a1c770583dac7ab5e2f6c139153b783a53a1bbee9729613f193e59828326" +checksum = "4c84490118f2ee2d74570d114f3d0493cbf02790df303d2707606c3e14e07c96" dependencies = [ "cfg-if", "downcast", @@ -3870,9 +3955,9 @@ dependencies = [ [[package]] name = "mockall_derive" -version = "0.11.3" +version = "0.11.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "832663583d5fa284ca8810bf7015e46c9fff9622d3cf34bd1eea5003fec06dd0" +checksum = "22ce75669015c4f47b289fd4d4f56e894e4c96003ffdf3ac51313126f94c6cbb" dependencies = [ "cfg-if", "proc-macro2", @@ -3900,13 +3985,14 @@ dependencies = [ [[package]] name = "multiaddr" -version = "0.17.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b53e0cc5907a5c216ba6584bf74be8ab47d6d6289f72793b2dddbf15dc3bf8c" +checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" dependencies = [ "arrayref", "byteorder", "data-encoding", + "log", "multibase", "multihash 0.17.0", "percent-encoding", @@ -3951,9 +4037,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "835d6ff01d610179fbce3de1694d007e500bf33a7f29689838941d6bf783ae40" dependencies = [ "core2", - "digest 0.10.6", "multihash-derive", - "sha2 0.10.6", "unsigned-varint", ] @@ -4019,7 +4103,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9ea4302b9759a7a88242299225ea3688e63c85ea136371bb6cf94fd674efaab" dependencies = [ "anyhow", - "bitflags 1.3.2", + "bitflags", "byteorder", "libc", "netlink-packet-core", @@ -4072,7 +4156,7 @@ version = "0.24.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069" dependencies = [ - "bitflags 1.3.2", + "bitflags", "cfg-if", "libc", "memoffset 0.6.5", @@ -4263,10 +4347,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" [[package]] -name = "os_str_bytes" -version = "6.5.0" +name = "option-ext" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "p256" @@ -4303,7 +4387,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "frame-support", "frame-system", @@ -4319,7 +4403,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -4335,7 +4419,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -4434,9 +4518,9 @@ checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" [[package]] name = "parking" -version = "2.0.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72" +checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" [[package]] name = "parking_lot" @@ -4468,7 +4552,7 @@ dependencies = [ "cfg-if", "instant", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", "winapi", ] @@ -4481,7 +4565,7 @@ checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.2.16", "smallvec", "windows-sys 0.45.0", ] @@ -4604,7 +4688,7 @@ version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der 0.7.3", + "der 0.7.5", "spki 0.7.1", ] @@ -4628,18 +4712,18 @@ checksum = "e3d7ddaed09e0eb771a79ab0fd64609ba0afb0a8366421957936ad14cbd13630" [[package]] name = "polling" -version = "2.6.0" +version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e1f879b2998099c2d69ab9605d145d5b661195627eccc680002c4918a7fb6fa" +checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" dependencies = [ "autocfg", - "bitflags 1.3.2", + "bitflags", "cfg-if", "concurrent-queue", "libc", "log", "pin-project-lite 0.2.9", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] @@ -4744,7 +4828,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a" dependencies = [ "thiserror", - "toml", + "toml 0.5.11", ] [[package]] @@ -4771,6 +4855,17 @@ dependencies = [ "version_check", ] +[[package]] +name = "proc-macro-warning" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e99670bafb56b9a106419397343bdbc8b8742c3cc449fec6345f86173f47cd4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.15", +] + [[package]] name = "proc-macro2" version = "1.0.56" @@ -4819,9 +4914,9 @@ dependencies = [ [[package]] name = "prost" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e48e50df39172a3e7eb17e14642445da64996989bc212b583015435d39a58537" +checksum = "0b82eaa1d779e9a4bc1c3217db8ffbeabaae1dca241bf70183242128d48681cd" dependencies = [ "bytes", "prost-derive", @@ -4829,9 +4924,9 @@ dependencies = [ [[package]] name = "prost-build" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c828f93f5ca4826f97fedcbd3f9a536c16b12cff3dbbb4a007f932bbad95b12" +checksum = "119533552c9a7ffacc21e099c24a0ac8bb19c2a2a3f363de84cd9b844feab270" dependencies = [ "bytes", "heck", @@ -4864,9 +4959,9 @@ dependencies = [ [[package]] name = "prost-derive" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ea9b0f8cbe5e15a8a042d030bd96668db28ecb567ec37d691971ff5731d2b1b" +checksum = "e5d2d8d10f3c6ded6da8b05b5fb3b8a5082514344d56c9f871412d29b4e075b4" dependencies = [ "anyhow", "itertools", @@ -4877,9 +4972,9 @@ dependencies = [ [[package]] name = "prost-types" -version = "0.11.8" +version = "0.11.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "379119666929a1afd7a043aa6cf96fa67a6dce9af60c88095a4686dbce4c9c88" +checksum = "213622a1460818959ac1181aaeb2dc9c7f63df720db7d788b3e24eacd1983e13" dependencies = [ "prost", ] @@ -4921,9 +5016,9 @@ dependencies = [ [[package]] name = "quinn-proto" -version = "0.9.2" +version = "0.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72ef4ced82a24bb281af338b9e8f94429b6eca01b4e66d899f40031f074e74c9" +checksum = "67c10f662eee9c94ddd7135043e544f3c82fa839a1e7b865911331961b53186c" dependencies = [ "bytes", "rand 0.8.5", @@ -5011,7 +5106,7 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" dependencies = [ - "getrandom 0.2.8", + "getrandom 0.2.9", ] [[package]] @@ -5085,7 +5180,16 @@ version = "0.2.16" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" dependencies = [ - "bitflags 1.3.2", + "bitflags", +] + +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags", ] [[package]] @@ -5094,8 +5198,8 @@ version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" dependencies = [ - "getrandom 0.2.8", - "redox_syscall", + "getrandom 0.2.9", + "redox_syscall 0.2.16", "thiserror", ] @@ -5133,13 +5237,13 @@ dependencies = [ [[package]] name = "regex" -version = "1.7.1" +version = "1.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733" +checksum = "af83e617f331cc6ae2da5443c602dfa5af81e517212d9d611a5b3ba1777b5370" dependencies = [ - "aho-corasick", + "aho-corasick 1.0.1", "memchr", - "regex-syntax", + "regex-syntax 0.7.1", ] [[package]] @@ -5148,14 +5252,20 @@ version = "0.1.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" dependencies = [ - "regex-syntax", + "regex-syntax 0.6.29", ] [[package]] name = "regex-syntax" -version = "0.6.28" +version = "0.6.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" + +[[package]] +name = "regex-syntax" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" +checksum = "a5996294f19bd3aae0453a862ad728f60e6600695733dd5df01da90c54363a3c" [[package]] name = "region" @@ -5163,7 +5273,7 @@ version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e" dependencies = [ - "bitflags 1.3.2", + "bitflags", "libc", "mach", "winapi", @@ -5227,9 +5337,9 @@ dependencies = [ [[package]] name = "rocksdb" -version = "0.19.0" +version = "0.20.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e9562ea1d70c0cc63a34a22d977753b50cca91cc6b6527750463bd5dd8697bc" +checksum = "015439787fce1e75d55f279078d33ff14b4af5d93d995e8838ee4631301c8a99" dependencies = [ "libc", "librocksdb-sys", @@ -5298,9 +5408,9 @@ dependencies = [ [[package]] name = "rustc-demangle" -version = "0.1.21" +version = "0.1.23" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" +checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" [[package]] name = "rustc-hash" @@ -5338,8 +5448,8 @@ version = "0.35.13" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" dependencies = [ - "bitflags 1.3.2", - "errno", + "bitflags", + "errno 0.2.8", "io-lifetimes 0.7.5", "libc", "linux-raw-sys 0.0.46", @@ -5348,18 +5458,32 @@ dependencies = [ [[package]] name = "rustix" -version = "0.36.11" +version = "0.36.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db4165c9963ab29e422d6c26fbc1d37f15bace6b2810221f9d925023480fcf0e" +checksum = "3a38f9520be93aba504e8ca974197f46158de5dcaa9fa04b57c57cd6a679d658" dependencies = [ - "bitflags 1.3.2", - "errno", - "io-lifetimes 1.0.9", + "bitflags", + "errno 0.3.1", + "io-lifetimes 1.0.10", "libc", "linux-raw-sys 0.1.4", "windows-sys 0.45.0", ] +[[package]] +name = "rustix" +version = "0.37.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8bbfc1d1c7c40c01715f47d71444744a81669ca84e8b63e25a55e169b1f86433" +dependencies = [ + "bitflags", + "errno 0.3.1", + "io-lifetimes 1.0.10", + "libc", + "linux-raw-sys 0.3.6", + "windows-sys 0.48.0", +] + [[package]] name = "rustls" version = "0.19.1" @@ -5441,7 +5565,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "log", "sp-core", @@ -5452,7 +5576,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", "futures-timer", @@ -5475,7 +5599,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -5490,7 +5614,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -5509,18 +5633,18 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "chrono", @@ -5560,7 +5684,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "fnv", "futures", @@ -5586,7 +5710,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "hash-db", "kvdb", @@ -5612,7 +5736,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -5637,7 +5761,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -5666,7 +5790,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ahash 0.8.3", "array-bytes 4.2.0", @@ -5706,7 +5830,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -5729,7 +5853,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "lru", "parity-scale-codec", @@ -5753,7 +5877,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -5766,7 +5890,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmi" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "log", "sc-allocator", @@ -5779,14 +5903,14 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "anyhow", "cfg-if", "libc", "log", "once_cell", - "rustix 0.36.11", + "rustix 0.36.13", "sc-allocator", "sc-executor-common", "sp-runtime-interface", @@ -5797,7 +5921,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ansi_term", "futures", @@ -5813,7 +5937,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -5828,7 +5952,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "async-channel", @@ -5858,6 +5982,7 @@ dependencies = [ "serde", "serde_json", "smallvec", + "snow", "sp-arithmetic", "sp-blockchain", "sp-consensus", @@ -5872,7 +5997,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "cid", "futures", @@ -5892,11 +6017,11 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "async-trait", - "bitflags 1.3.2", + "bitflags", "bytes", "futures", "futures-timer", @@ -5920,7 +6045,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ahash 0.8.3", "futures", @@ -5939,7 +6064,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "futures", @@ -5961,7 +6086,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "async-trait", @@ -5995,7 +6120,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "futures", @@ -6015,7 +6140,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "bytes", @@ -6046,7 +6171,7 @@ dependencies = [ [[package]] name = "sc-peerset" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", "libp2p", @@ -6059,7 +6184,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -6068,7 +6193,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", "jsonrpsee", @@ -6098,7 +6223,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -6117,7 +6242,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "http", "jsonrpsee", @@ -6132,7 +6257,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", "futures", @@ -6158,7 +6283,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "directories 4.0.1", @@ -6224,7 +6349,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "log", "parity-scale-codec", @@ -6235,7 +6360,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "clap", "fs4", @@ -6251,7 +6376,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", "libc", @@ -6270,7 +6395,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "chrono", "futures", @@ -6289,7 +6414,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ansi_term", "atty", @@ -6320,18 +6445,18 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -6358,7 +6483,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -6372,7 +6497,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-channel", "futures", @@ -6386,9 +6511,9 @@ dependencies = [ [[package]] name = "scale-info" -version = "2.3.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "001cf62ece89779fd16105b5f515ad0e5cedcd5440d3dd806bb067978e7c3608" +checksum = "dfdef77228a4c05dc94211441595746732131ad7f6530c6c18f045da7b7ab937" dependencies = [ "bitvec", "cfg-if", @@ -6400,9 +6525,9 @@ dependencies = [ [[package]] name = "scale-info-derive" -version = "2.3.1" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "303959cf613a6f6efd19ed4b4ad5bf79966a13352716299ad532cfb115f4205c" +checksum = "53012eae69e5aa5c14671942a5dd47de59d4cdcff8532a6dd0e081faf1119482" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -6500,7 +6625,7 @@ checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" dependencies = [ "base16ct 0.1.1", "der 0.6.1", - "generic-array 0.14.6", + "generic-array 0.14.7", "pkcs8 0.9.0", "subtle", "zeroize", @@ -6508,13 +6633,13 @@ dependencies = [ [[package]] name = "sec1" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48518a2b5775ba8ca5b46596aae011caa431e6ce7e4a67ead66d92f08884220e" +checksum = "f0aec48e813d6b90b15f0b8948af3c63483992dee44c03e9930b3eebdabe046e" dependencies = [ "base16ct 0.2.0", - "der 0.7.3", - "generic-array 0.14.6", + "der 0.7.5", + "generic-array 0.14.7", "pkcs8 0.10.2", "subtle", "zeroize", @@ -6553,7 +6678,7 @@ version = "2.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a332be01508d814fed64bf28f798a146d73792121129962fdf335bb3c49a4254" dependencies = [ - "bitflags 1.3.2", + "bitflags", "core-foundation", "core-foundation-sys", "libc", @@ -6596,18 +6721,18 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.158" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9" +checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.158" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad" +checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" dependencies = [ "proc-macro2", "quote", @@ -6616,15 +6741,24 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "itoa", "ryu", "serde", ] +[[package]] +name = "serde_spanned" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4" +dependencies = [ + "serde", +] + [[package]] name = "sha-1" version = "0.9.8" @@ -6687,9 +6821,9 @@ dependencies = [ [[package]] name = "sha3" -version = "0.10.6" +version = "0.10.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bdf0c33fae925bdc080598b84bc15c55e7b9a4a43b3c704da051f977469691c9" +checksum = "54c2bb1a323307527314a36bfb73f24febb08ce2b8a554bf4ffd6f51ad15198c" dependencies = [ "digest 0.10.6", "keccak", @@ -6835,13 +6969,15 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "hash-db", "log", "parity-scale-codec", + "scale-info", "sp-api-proc-macro", "sp-core", + "sp-metadata-ir", "sp-runtime", "sp-state-machine", "sp-std", @@ -6853,7 +6989,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "Inflector", "blake2", @@ -6861,13 +6997,13 @@ dependencies = [ "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sp-application-crypto" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "scale-info", @@ -6880,7 +7016,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "integer-sqrt", "num-traits", @@ -6894,7 +7030,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "sp-api", @@ -6906,7 +7042,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", "log", @@ -6924,7 +7060,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures", @@ -6939,7 +7075,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "parity-scale-codec", @@ -6957,7 +7093,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "finality-grandpa", "log", @@ -6975,7 +7111,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "scale-info", @@ -6987,10 +7123,10 @@ dependencies = [ [[package]] name = "sp-core" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "array-bytes 4.2.0", - "bitflags 1.3.2", + "bitflags", "blake2", "bounded-collections", "bs58", @@ -7006,6 +7142,7 @@ dependencies = [ "merlin", "parity-scale-codec", "parking_lot 0.12.1", + "paste", "primitive-types", "rand 0.8.5", "regex", @@ -7030,7 +7167,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "blake2b_simd", "byteorder", @@ -7044,18 +7181,18 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "proc-macro2", "quote", "sp-core-hashing", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -7064,17 +7201,17 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sp-externalities" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "environmental", "parity-scale-codec", @@ -7085,7 +7222,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -7100,7 +7237,7 @@ dependencies = [ [[package]] name = "sp-io" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "bytes", "ed25519", @@ -7126,7 +7263,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "lazy_static", "sp-core", @@ -7137,13 +7274,11 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "futures", - "merlin", "parity-scale-codec", "parking_lot 0.12.1", - "schnorrkel", "serde", "sp-core", "sp-externalities", @@ -7153,16 +7288,27 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "thiserror", - "zstd", + "zstd 0.12.3+zstd.1.5.2", +] + +[[package]] +name = "sp-metadata-ir" +version = "0.1.0" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" +dependencies = [ + "frame-metadata", + "parity-scale-codec", + "scale-info", + "sp-std", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "sp-api", "sp-core", @@ -7172,7 +7318,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "backtrace", "lazy_static", @@ -7182,7 +7328,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "rustc-hash", "serde", @@ -7192,7 +7338,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "either", "hash256-std-hasher", @@ -7214,7 +7360,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -7232,19 +7378,19 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "Inflector", "proc-macro-crate", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "scale-info", @@ -7258,10 +7404,11 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "scale-info", + "serde", "sp-core", "sp-runtime", "sp-std", @@ -7270,7 +7417,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.13.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "hash-db", "log", @@ -7290,12 +7437,12 @@ dependencies = [ [[package]] name = "sp-std" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" [[package]] name = "sp-storage" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -7308,7 +7455,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "futures-timer", @@ -7323,7 +7470,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "6.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "sp-std", @@ -7335,7 +7482,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "sp-api", "sp-runtime", @@ -7344,7 +7491,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "async-trait", "log", @@ -7360,7 +7507,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ahash 0.8.3", "hash-db", @@ -7383,7 +7530,7 @@ dependencies = [ [[package]] name = "sp-version" version = "5.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "impl-serde", "parity-scale-codec", @@ -7400,18 +7547,18 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] name = "sp-wasm-interface" version = "7.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -7425,7 +7572,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "4.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "parity-scale-codec", "scale-info", @@ -7460,14 +7607,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37a5be806ab6f127c3da44b7378837ebf01dadca8510a0e572460216b228bd0e" dependencies = [ "base64ct", - "der 0.7.3", + "der 0.7.5", ] [[package]] name = "ss58-registry" -version = "1.39.0" +version = "1.40.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ecf0bd63593ef78eca595a7fc25e9a443ca46fe69fd472f8f09f5245cdcd769d" +checksum = "eb47a8ad42e5fc72d5b1eb104a5546937eaf39843499948bb666d6e93c62423b" dependencies = [ "Inflector", "num-format", @@ -7496,7 +7643,7 @@ version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a2a1c578e98c1c16fc3b8ec1328f7659a500737d7a0c6d625e73e830ff9c1f6" dependencies = [ - "bitflags 1.3.2", + "bitflags", "cfg_aliases", "libc", "parking_lot 0.11.2", @@ -7581,7 +7728,7 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "platforms 2.0.0", ] @@ -7589,7 +7736,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "hyper", "log", @@ -7601,7 +7748,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-04#75dee3c6fc72f6399a43f498e0e42f94fb82a7bd" +source = "git+https://github.com/paritytech/substrate.git?tag=monthly-2023-05#bc8f2db2cca2bac2d780569050c9ba4d751be45c" dependencies = [ "ansi_term", "build-helper", @@ -7610,7 +7757,7 @@ dependencies = [ "sp-maybe-compressed-blob", "strum", "tempfile", - "toml", + "toml 0.7.3", "walkdir", "wasm-opt", ] @@ -7670,7 +7817,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d75182f12f490e953596550b65ee31bda7c8e043d9386174b353bda50838c3fd" dependencies = [ - "bitflags 1.3.2", + "bitflags", "core-foundation", "system-configuration-sys", ] @@ -7693,21 +7840,21 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "target-lexicon" -version = "0.12.6" +version = "0.12.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae9980cab1db3fceee2f6c6f643d5d8de2997c58ee8d25fb0cc8a9e9e7348e5" +checksum = "fd1ba337640d60c3e96bc6f0638a939b9c9a7f2c316a1598c279828b3d1dc8c5" [[package]] name = "tempfile" -version = "3.4.0" +version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95" +checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" dependencies = [ "cfg-if", "fastrand", - "redox_syscall", - "rustix 0.36.11", - "windows-sys 0.42.0", + "redox_syscall 0.3.5", + "rustix 0.37.18", + "windows-sys 0.45.0", ] [[package]] @@ -7867,14 +8014,13 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.26.0" +version = "1.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03201d01c3c27a29c8a5cee5b55a93ddae1ccf6f08f65365c2c918f8c1b76f64" +checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f" dependencies = [ "autocfg", "bytes", "libc", - "memchr", "mio", "num_cpus", "parking_lot 0.12.1", @@ -7882,18 +8028,18 @@ dependencies = [ "signal-hook-registry", "socket2", "tokio-macros", - "windows-sys 0.45.0", + "windows-sys 0.48.0", ] [[package]] name = "tokio-macros" -version = "1.8.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8" +checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] @@ -7909,9 +8055,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.12" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" +checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", "pin-project-lite 0.2.9", @@ -7921,9 +8067,9 @@ dependencies = [ [[package]] name = "tokio-util" -version = "0.7.7" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" dependencies = [ "bytes", "futures-core", @@ -7943,6 +8089,40 @@ dependencies = [ "serde", ] +[[package]] +name = "toml" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.19.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13" +dependencies = [ + "indexmap", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + [[package]] name = "tower" version = "0.4.13" @@ -7960,7 +8140,7 @@ version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858" dependencies = [ - "bitflags 1.3.2", + "bitflags", "bytes", "futures-core", "futures-util", @@ -7999,13 +8179,13 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.23" +version = "0.1.24" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" +checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", + "syn 2.0.15", ] [[package]] @@ -8176,7 +8356,7 @@ name = "tuxedo-core" version = "1.0.0-dev" dependencies = [ "aggregator", - "array-bytes 6.0.0", + "array-bytes 6.1.0", "log", "parity-scale-codec", "parity-util-mem", @@ -8195,7 +8375,7 @@ dependencies = [ name = "tuxedo-template-runtime" version = "1.0.0-dev" dependencies = [ - "hex-literal 0.3.4", + "hex-literal", "log", "parity-scale-codec", "parity-util-mem", @@ -8229,11 +8409,11 @@ version = "1.0.0-dev" dependencies = [ "anyhow", "clap", - "directories 5.0.0", + "directories 5.0.1", "env_logger", "futures", "hex", - "hex-literal 0.4.1", + "hex-literal", "jsonrpsee", "log", "parity-scale-codec", @@ -8280,9 +8460,9 @@ dependencies = [ [[package]] name = "unicode-bidi" -version = "0.3.12" +version = "0.3.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d502c968c6a838ead8e69b2ee18ec708802f99db92a0d156705ec9ef801993b" +checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" [[package]] name = "unicode-ident" @@ -8317,7 +8497,7 @@ version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" dependencies = [ - "generic-array 0.14.6", + "generic-array 0.14.7", "subtle", ] @@ -8360,13 +8540,19 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "utf8parse" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" + [[package]] name = "uuid" -version = "1.3.0" +version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1674845326ee10d37ca60470760d4288a6f80f304007d92e5c53bab78c9cfd79" +checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" dependencies = [ - "getrandom 0.2.8", + "getrandom 0.2.9", ] [[package]] @@ -8623,9 +8809,9 @@ dependencies = [ [[package]] name = "wasmtime" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6e89f9819523447330ffd70367ef4a18d8c832e24e8150fe054d1d912841632" +checksum = "76a222f5fa1e14b2cefc286f1b68494d7a965f4bf57ec04c59bb62673d639af6" dependencies = [ "anyhow", "bincode", @@ -8651,18 +8837,18 @@ dependencies = [ [[package]] name = "wasmtime-asm-macros" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9bd3a5e46c198032da934469f3a6e48649d1f9142438e4fd4617b68a35644b8a" +checksum = "4407a7246e7d2f3d8fb1cf0c72fda8dbafdb6dd34d555ae8bea0e5ae031089cc" dependencies = [ "cfg-if", ] [[package]] name = "wasmtime-cache" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b389ae9b678b9c3851091a4804f4182d688d27aff7abc9aa37fa7be37d8ecffa" +checksum = "5ceb3adf61d654be0be67fffdce42447b0880481348785be5fe40b5dd7663a4c" dependencies = [ "anyhow", "base64 0.13.1", @@ -8670,19 +8856,19 @@ dependencies = [ "directories-next", "file-per-thread-logger", "log", - "rustix 0.36.11", + "rustix 0.36.13", "serde", "sha2 0.10.6", - "toml", + "toml 0.5.11", "windows-sys 0.42.0", - "zstd", + "zstd 0.11.2+zstd.1.5.2", ] [[package]] name = "wasmtime-cranelift" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59b2c92a08c0db6efffd88fdc97d7aa9c7c63b03edb0971dbca745469f820e8c" +checksum = "3c366bb8647e01fd08cb5589976284b00abfded5529b33d7e7f3f086c68304a4" dependencies = [ "anyhow", "cranelift-codegen", @@ -8701,9 +8887,9 @@ dependencies = [ [[package]] name = "wasmtime-environ" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a6db9fc52985ba06ca601f2ff0ff1f526c5d724c7ac267b47326304b0c97883" +checksum = "47b8b50962eae38ee319f7b24900b7cf371f03eebdc17400c1dc8575fc10c9a7" dependencies = [ "anyhow", "cranelift-entity", @@ -8720,9 +8906,9 @@ dependencies = [ [[package]] name = "wasmtime-jit" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b77e3a52cd84d0f7f18554afa8060cfe564ccac61e3b0802d3fd4084772fa5f6" +checksum = "ffaed4f9a234ba5225d8e64eac7b4a5d13b994aeb37353cde2cbeb3febda9eaa" dependencies = [ "addr2line 0.17.0", "anyhow", @@ -8744,20 +8930,20 @@ dependencies = [ [[package]] name = "wasmtime-jit-debug" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0245e8a9347017c7185a72e215218a802ff561545c242953c11ba00fccc930f" +checksum = "eed41cbcbf74ce3ff6f1d07d1b707888166dc408d1a880f651268f4f7c9194b2" dependencies = [ "object 0.29.0", "once_cell", - "rustix 0.36.11", + "rustix 0.36.13", ] [[package]] name = "wasmtime-jit-icache-coherence" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67d412e9340ab1c83867051d8d1d7c90aa8c9afc91da086088068e2734e25064" +checksum = "43a28ae1e648461bfdbb79db3efdaee1bca5b940872e4175390f465593a2e54c" dependencies = [ "cfg-if", "libc", @@ -8766,9 +8952,9 @@ dependencies = [ [[package]] name = "wasmtime-runtime" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d594e791b5fdd4dbaf8cf7ae62f2e4ff85018ce90f483ca6f42947688e48827d" +checksum = "e704b126e4252788ccfc3526d4d4511d4b23c521bf123e447ac726c14545217b" dependencies = [ "anyhow", "cc", @@ -8781,7 +8967,7 @@ dependencies = [ "memoffset 0.6.5", "paste", "rand 0.8.5", - "rustix 0.36.11", + "rustix 0.36.13", "wasmtime-asm-macros", "wasmtime-environ", "wasmtime-jit-debug", @@ -8790,9 +8976,9 @@ dependencies = [ [[package]] name = "wasmtime-types" -version = "6.0.1" +version = "6.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6688d6f96d4dbc1f89fab626c56c1778936d122b5f4ae7a57c2eb42b8d982e2" +checksum = "83e5572c5727c1ee7e8f28717aaa8400e4d22dcbd714ea5457d85b5005206568" dependencies = [ "cranelift-entity", "serde", @@ -8975,18 +9161,15 @@ dependencies = [ [[package]] name = "webrtc-media" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee2a3c157a040324e5049bcbd644ffc9079e6738fa2cfab2bcff64e5cc4c00d7" +checksum = "f72e1650a8ae006017d1a5280efb49e2610c19ccc3c0905b03b648aee9554991" dependencies = [ "byteorder", "bytes", - "derive_builder", - "displaydoc", "rand 0.8.5", "rtp", "thiserror", - "webrtc-util", ] [[package]] @@ -9037,7 +9220,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87" dependencies = [ "async-trait", - "bitflags 1.3.2", + "bitflags", "bytes", "cc", "ipnet", @@ -9112,18 +9295,27 @@ dependencies = [ "windows_x86_64_msvc 0.34.0", ] +[[package]] +name = "windows" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" +dependencies = [ + "windows-targets 0.48.0", +] + [[package]] name = "windows-sys" version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" dependencies = [ - "windows_aarch64_gnullvm", + "windows_aarch64_gnullvm 0.42.2", "windows_aarch64_msvc 0.42.2", "windows_i686_gnu 0.42.2", "windows_i686_msvc 0.42.2", "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm", + "windows_x86_64_gnullvm 0.42.2", "windows_x86_64_msvc 0.42.2", ] @@ -9133,7 +9325,16 @@ version = "0.45.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" dependencies = [ - "windows-targets", + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.0", ] [[package]] @@ -9142,21 +9343,42 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" dependencies = [ - "windows_aarch64_gnullvm", + "windows_aarch64_gnullvm 0.42.2", "windows_aarch64_msvc 0.42.2", "windows_i686_gnu 0.42.2", "windows_i686_msvc 0.42.2", "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm", + "windows_x86_64_gnullvm 0.42.2", "windows_x86_64_msvc 0.42.2", ] +[[package]] +name = "windows-targets" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" +dependencies = [ + "windows_aarch64_gnullvm 0.48.0", + "windows_aarch64_msvc 0.48.0", + "windows_i686_gnu 0.48.0", + "windows_i686_msvc 0.48.0", + "windows_x86_64_gnu 0.48.0", + "windows_x86_64_gnullvm 0.48.0", + "windows_x86_64_msvc 0.48.0", +] + [[package]] name = "windows_aarch64_gnullvm" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" + [[package]] name = "windows_aarch64_msvc" version = "0.34.0" @@ -9169,6 +9391,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" + [[package]] name = "windows_i686_gnu" version = "0.34.0" @@ -9181,6 +9409,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" +[[package]] +name = "windows_i686_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" + [[package]] name = "windows_i686_msvc" version = "0.34.0" @@ -9193,6 +9427,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" +[[package]] +name = "windows_i686_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" + [[package]] name = "windows_x86_64_gnu" version = "0.34.0" @@ -9205,12 +9445,24 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" + [[package]] name = "windows_x86_64_gnullvm" version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" + [[package]] name = "windows_x86_64_msvc" version = "0.34.0" @@ -9223,6 +9475,21 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" + +[[package]] +name = "winnow" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5617da7e1f97bf363947d767b91aaf3c2bbc19db7fda9c65af1278713d58e0a2" +dependencies = [ + "memchr", +] + [[package]] name = "winreg" version = "0.10.1" @@ -9316,32 +9583,31 @@ dependencies = [ [[package]] name = "yasna" -version = "0.5.1" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aed2e7a52e3744ab4d0c05c20aa065258e84c49fd4226f5191b2ed29712710b4" +checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" dependencies = [ "time 0.3.20", ] [[package]] name = "zeroize" -version = "1.5.7" +version = "1.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f" +checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" dependencies = [ "zeroize_derive", ] [[package]] name = "zeroize_derive" -version = "1.3.3" +version = "1.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" dependencies = [ "proc-macro2", "quote", - "syn 1.0.109", - "synstructure", + "syn 2.0.15", ] [[package]] @@ -9350,7 +9616,16 @@ version = "0.11.2+zstd.1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4" dependencies = [ - "zstd-safe", + "zstd-safe 5.0.2+zstd.1.5.2", +] + +[[package]] +name = "zstd" +version = "0.12.3+zstd.1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806" +dependencies = [ + "zstd-safe 6.0.5+zstd.1.5.4", ] [[package]] @@ -9363,11 +9638,21 @@ dependencies = [ "zstd-sys", ] +[[package]] +name = "zstd-safe" +version = "6.0.5+zstd.1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d56d9e60b4b1758206c238a10165fbcae3ca37b01744e394c463463f6529d23b" +dependencies = [ + "libc", + "zstd-sys", +] + [[package]] name = "zstd-sys" -version = "2.0.7+zstd.1.5.4" +version = "2.0.8+zstd.1.5.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5" +checksum = "5556e6ee25d32df2586c098bbfa278803692a20d0ab9565e049480d52707ec8c" dependencies = [ "cc", "libc", diff --git a/node/Cargo.toml b/node/Cargo.toml index 840454dae..98f0b90d4 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -16,42 +16,42 @@ name = "node-template" [dependencies] clap = { version = "4.0.29", features = ["derive"] } -sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } +sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } # These dependencies are used for the node template's RPCs jsonrpsee = { version = "0.16.2", features = ["server"] } -sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } -pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } +sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } +pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } # Local Dependencies node-template-runtime = { package = "tuxedo-template-runtime", path = "../tuxedo-template-runtime" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } +substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } [features] default = [] diff --git a/node/src/service.rs b/node/src/service.rs index 90297b8c7..7d322b839 100644 --- a/node/src/service.rs +++ b/node/src/service.rs @@ -65,12 +65,7 @@ pub fn new_partial( }) .transpose()?; - let executor = NativeElseWasmExecutor::::new( - config.wasm_method, - config.default_heap_pages, - config.max_runtime_instances, - config.runtime_cache_size, - ); + let executor = sc_service::new_native_or_wasm_executor(config); let (client, backend, keystore_container, task_manager) = sc_service::new_full_parts::( diff --git a/tuxedo-core/Cargo.toml b/tuxedo-core/Cargo.toml index b118356fd..8a5a6c0af 100644 --- a/tuxedo-core/Cargo.toml +++ b/tuxedo-core/Cargo.toml @@ -15,13 +15,13 @@ parity-util-mem = { version = '0.12.0', optional = true } aggregator = { path = "aggregator" } -sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false, features = ["force-debug"] } -sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false, features = ["with-tracing"] } -sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} +sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["force-debug"] } +sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["with-tracing"] } +sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} [dev-dependencies] array-bytes = "6.0.0" diff --git a/tuxedo-core/src/dynamic_typing.rs b/tuxedo-core/src/dynamic_typing.rs index dc0e1d560..b7f96c9e8 100644 --- a/tuxedo-core/src/dynamic_typing.rs +++ b/tuxedo-core/src/dynamic_typing.rs @@ -47,6 +47,7 @@ //! around by, for example, hashing the Debug strong, but that is ugly use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_std::vec::Vec; @@ -54,7 +55,7 @@ use sp_std::vec::Vec; /// A piece of encoded data with a type id associated /// Strongly typed data can be extracted #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct DynamicallyTypedData { pub data: Vec, pub type_id: [u8; 4], diff --git a/tuxedo-core/src/types.rs b/tuxedo-core/src/types.rs index 5026e7c08..9b64c7a8f 100644 --- a/tuxedo-core/src/types.rs +++ b/tuxedo-core/src/types.rs @@ -2,6 +2,7 @@ use crate::dynamic_typing::DynamicallyTypedData; use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_core::H256; @@ -10,7 +11,7 @@ use sp_std::vec::Vec; /// A reference to a output that is expected to exist in the state. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct OutputRef { /// A hash of the transaction that created this output pub tx_hash: H256, @@ -33,7 +34,7 @@ pub struct OutputRef { /// In the future, there may be additional notions of peeks (inputs that are not consumed) /// and evictions (inputs that are forcefully consumed.) #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Debug, PartialEq, Eq, Clone)] +#[derive(Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct Transaction { pub inputs: Vec, //Todo peeks: Vec, @@ -101,7 +102,7 @@ impl Extrinsic for Transaction { /// A reference the a utxo that will be consumed along with proof that it may be consumed #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct Input { /// a reference to the output being consumed pub output_ref: OutputRef, @@ -133,7 +134,7 @@ pub type DispatchResult = Result<(), UtxoError>; /// In a cryptocurrency, the data represents a single coin. In Tuxedo, the type of /// the contained data is generic. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct Output { pub payload: DynamicallyTypedData, pub verifier: V, diff --git a/tuxedo-core/src/verifier.rs b/tuxedo-core/src/verifier.rs index 79e9a0a6a..2a70a468e 100644 --- a/tuxedo-core/src/verifier.rs +++ b/tuxedo-core/src/verifier.rs @@ -6,6 +6,7 @@ //! use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_core::sr25519::{Public, Signature}; @@ -25,7 +26,7 @@ pub trait Verifier: Debug + Encode + Decode + Clone { /// A typical verifier that checks an sr25519 signature #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct SigCheck { pub owner_pubkey: H256, } @@ -43,7 +44,7 @@ impl Verifier for SigCheck { /// A simple verifier that allows anyone to consume an output at any time #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct UpForGrabs; impl Verifier for UpForGrabs { @@ -57,7 +58,7 @@ impl Verifier for UpForGrabs { /// `threshold` of the signatories. If the threshold is greater than the number of signatories /// the input can never be consumed. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct ThresholdMultiSignature { /// The minimum number of valid signatures needed to consume this input pub threshold: u8, diff --git a/tuxedo-template-runtime/Cargo.toml b/tuxedo-template-runtime/Cargo.toml index 453e41cfe..455f875fa 100644 --- a/tuxedo-template-runtime/Cargo.toml +++ b/tuxedo-template-runtime/Cargo.toml @@ -13,35 +13,35 @@ parity-scale-codec = { version = '3.4.0', default-features = false, features = [ scale-info = { version = "2.1.1", default-features = false, features = ["derive"] } parity-util-mem = { version = '0.12.0', optional = true } -sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false, features = ["force-debug"] } -sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false, features = ["with-tracing"] } -sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} +sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["force-debug"] } +sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["with-tracing"] } +sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} # These were added for Aura / Grandpa API support -hex-literal = "0.3.4" -sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} -sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false} +hex-literal = "0.4.1" +sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} +sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false} # Tuxedo Core tuxedo-core = { path = '../tuxedo-core', default-features = false } [build-dependencies] -substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-04" } +substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" } [dev-dependencies] -sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04", default_features = false } +sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false } [features] default = ["std"] diff --git a/tuxedo-template-runtime/src/amoeba.rs b/tuxedo-template-runtime/src/amoeba.rs index 8d59f631e..8b592afd4 100644 --- a/tuxedo-template-runtime/src/amoeba.rs +++ b/tuxedo-template-runtime/src/amoeba.rs @@ -9,6 +9,7 @@ //! mother amoeba and creates, in its place two new daughter amoebas. use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_runtime::transaction_validity::TransactionPriority; @@ -75,7 +76,7 @@ pub enum ConstraintCheckerError { /// 2. There are exactly two daughter amoebas /// 3. Each Daughter amoeba has a generation one higher than its mother. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct AmoebaMitosis; impl SimpleConstraintChecker for AmoebaMitosis { @@ -133,7 +134,7 @@ impl SimpleConstraintChecker for AmoebaMitosis { /// Any amoeba can be killed by providing it as the sole input to this constraint checker. No /// new outputs are ever created. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct AmoebaDeath; impl SimpleConstraintChecker for AmoebaDeath { @@ -172,7 +173,7 @@ impl SimpleConstraintChecker for AmoebaDeath { /// A new amoeba can be created by providing it as the sole output to this constraint checker. No /// inputs are ever consumed. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct AmoebaCreation; impl SimpleConstraintChecker for AmoebaCreation { diff --git a/tuxedo-template-runtime/src/lib.rs b/tuxedo-template-runtime/src/lib.rs index 566f827a5..ed2db54a9 100644 --- a/tuxedo-template-runtime/src/lib.rs +++ b/tuxedo-template-runtime/src/lib.rs @@ -4,6 +4,7 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; use sp_consensus_aura::sr25519::AuthorityId as AuraId; use sp_consensus_grandpa::AuthorityId as GrandpaId; @@ -184,7 +185,7 @@ const BLOCK_TIME: u64 = 3000; /// A verifier checks that an individual input can be consumed. For example that it is signed properly /// To begin playing, we will have two kinds. A simple signature check, and an anyone-can-consume check. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] #[tuxedo_verifier] pub enum OuterVerifier { SigCheck(SigCheck), @@ -200,7 +201,7 @@ pub enum OuterVerifier { /// For any given Tuxedo runtime there is a finite set of such constraint checkers. /// For example, this may check that input token values exceed output token values. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] #[tuxedo_constraint_checker] pub enum OuterConstraintChecker { /// Checks monetary transactions in a basic fungible cryptocurrency diff --git a/tuxedo-template-runtime/src/poe.rs b/tuxedo-template-runtime/src/poe.rs index 575c19e43..21914bf64 100644 --- a/tuxedo-template-runtime/src/poe.rs +++ b/tuxedo-template-runtime/src/poe.rs @@ -16,6 +16,7 @@ //! https://cannerlaw.com/blog/the-difference-of-recorded-and-registered-land/ use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_core::H256; @@ -65,7 +66,7 @@ pub enum ConstraintCheckerError { /// It also allows the creation of zero claims, although such a transaction is useless and is simply a /// waste of caller fees. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct PoeClaim; impl SimpleConstraintChecker for PoeClaim { @@ -108,7 +109,7 @@ impl SimpleConstraintChecker for PoeClaim { /// /// Like the creation constraint checker, this allows batch revocation. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct PoeRevoke; impl SimpleConstraintChecker for PoeRevoke { @@ -147,7 +148,7 @@ impl SimpleConstraintChecker for PoeRevoke { /// Another, weaker example, is when trying o implement something like sudo. Where we want a signature, /// but we want to authorized signer to come from the a different part of state. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct PoeDispute; impl SimpleConstraintChecker for PoeDispute { diff --git a/tuxedo-template-runtime/src/runtime_upgrade.rs b/tuxedo-template-runtime/src/runtime_upgrade.rs index f5afb70b6..72799edda 100644 --- a/tuxedo-template-runtime/src/runtime_upgrade.rs +++ b/tuxedo-template-runtime/src/runtime_upgrade.rs @@ -12,6 +12,7 @@ //! it to the well-known key as a side effect. use parity_scale_codec::{Decode, Encode}; +use scale_info::TypeInfo; #[cfg(feature = "std")] use serde::{Deserialize, Serialize}; use sp_runtime::transaction_validity::TransactionPriority; @@ -63,7 +64,7 @@ pub enum ConstraintCheckerError { /// writes the full wasm code to the well-known `:code` storage key. This is /// necessary to satisfy Substrate's assumptions that this will happen. #[cfg_attr(feature = "std", derive(Serialize, Deserialize))] -#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone)] +#[derive(Encode, Decode, Debug, PartialEq, Eq, Clone, TypeInfo)] pub struct RuntimeUpgrade { full_wasm: Vec, } diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index d7ad46b48..cdf9f8c99 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -24,7 +24,7 @@ futures = "0.3" env_logger = "0.10.0" log = "0.4.17" -sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04" } -sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04" } -sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04" } -sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-04" } \ No newline at end of file +sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" } +sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" } +sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" } +sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" } \ No newline at end of file