From 51f5e168c12995c88012b6293ec1748f08fc9649 Mon Sep 17 00:00:00 2001 From: dandanlen <3168260+dandanlen@users.noreply.github.com> Date: Wed, 13 Sep 2023 10:49:36 +0200 Subject: [PATCH 1/2] feat: update substrate dependency (#3994) --- Cargo.lock | 1586 +++++++++++++---- api/bin/chainflip-broker-api/Cargo.toml | 2 +- api/bin/chainflip-cli/Cargo.toml | 2 +- api/bin/chainflip-lp-api/Cargo.toml | 2 +- api/lib/Cargo.toml | 8 +- engine/Cargo.toml | 16 +- engine/multisig/Cargo.toml | 4 +- state-chain/amm/Cargo.toml | 4 +- state-chain/cf-integration-tests/Cargo.toml | 42 +- .../cf-session-benchmarking/Cargo.toml | 12 +- state-chain/chains/Cargo.toml | 8 +- state-chain/custom-rpc/Cargo.toml | 8 +- state-chain/node/Cargo.toml | 72 +- .../pallets/cf-account-roles/Cargo.toml | 14 +- state-chain/pallets/cf-broadcast/Cargo.toml | 14 +- .../pallets/cf-chain-tracking/Cargo.toml | 14 +- state-chain/pallets/cf-emissions/Cargo.toml | 16 +- state-chain/pallets/cf-environment/Cargo.toml | 14 +- state-chain/pallets/cf-flip/Cargo.toml | 16 +- state-chain/pallets/cf-funding/Cargo.toml | 14 +- state-chain/pallets/cf-governance/Cargo.toml | 14 +- .../pallets/cf-ingress-egress/Cargo.toml | 14 +- state-chain/pallets/cf-lp/Cargo.toml | 14 +- state-chain/pallets/cf-pools/Cargo.toml | 16 +- state-chain/pallets/cf-reputation/Cargo.toml | 18 +- state-chain/pallets/cf-swapping/Cargo.toml | 16 +- .../pallets/cf-threshold-signature/Cargo.toml | 14 +- .../cf-tokenholder-governance/Cargo.toml | 14 +- state-chain/pallets/cf-validator/Cargo.toml | 18 +- state-chain/pallets/cf-vaults/Cargo.toml | 14 +- state-chain/pallets/cf-witnesser/Cargo.toml | 14 +- state-chain/primitives/Cargo.toml | 8 +- .../runtime-upgrade-utilities/Cargo.toml | 6 +- state-chain/runtime-utilities/Cargo.toml | 8 +- state-chain/runtime/Cargo.toml | 54 +- state-chain/test-utilities/Cargo.toml | 10 +- state-chain/traits/Cargo.toml | 12 +- utilities/Cargo.toml | 2 +- 38 files changed, 1553 insertions(+), 581 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0671395073..8ce360c605 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -36,6 +36,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" +[[package]] +name = "aead" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" +dependencies = [ + "generic-array 0.14.7", +] + [[package]] name = "aead" version = "0.4.3" @@ -43,6 +52,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" dependencies = [ "generic-array 0.14.7", + "rand_core 0.6.4", ] [[package]] @@ -55,6 +65,17 @@ dependencies = [ "generic-array 0.14.7", ] +[[package]] +name = "aes" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" +dependencies = [ + "aes-soft", + "aesni", + "cipher 0.2.5", +] + [[package]] name = "aes" version = "0.7.5" @@ -106,6 +127,26 @@ dependencies = [ "subtle", ] +[[package]] +name = "aes-soft" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" +dependencies = [ + "cipher 0.2.5", + "opaque-debug 0.3.0", +] + +[[package]] +name = "aesni" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" +dependencies = [ + "cipher 0.2.5", + "opaque-debug 0.3.0", +] + [[package]] name = "ahash" version = "0.7.6" @@ -240,6 +281,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "arc-swap" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6" + [[package]] name = "array-bytes" version = "6.1.0" @@ -282,6 +329,73 @@ dependencies = [ "term", ] +[[package]] +name = "asn1-rs" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33" +dependencies = [ + "asn1-rs-derive 0.1.0", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time 0.3.25", +] + +[[package]] +name = "asn1-rs" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f6fd5ddaf0351dff5b8da21b2fb4ff8e08ddd02857f0bf69c47639106c0fff0" +dependencies = [ + "asn1-rs-derive 0.4.0", + "asn1-rs-impl", + "displaydoc", + "nom", + "num-traits", + "rusticata-macros", + "thiserror", + "time 0.3.25", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "synstructure", +] + +[[package]] +name = "asn1-rs-derive" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "726535892e8eae7e70657b4c8ea93d26b8553afb1ce617caee529ef96d7dee6c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", + "synstructure", +] + +[[package]] +name = "asn1-rs-impl" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "async-broadcast" version = "0.4.1" @@ -513,6 +627,12 @@ version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" +[[package]] +name = "base16ct" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" + [[package]] name = "base16ct" version = "0.2.0" @@ -748,7 +868,7 @@ version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" dependencies = [ - "block-padding", + "block-padding 0.1.5", "byte-tools", "byteorder", "generic-array 0.12.4", @@ -772,6 +892,16 @@ dependencies = [ "generic-array 0.14.7", ] +[[package]] +name = "block-modes" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a0e8073e8baa88212fb5823574c02ebccb395136ba9a164ab89379ec6072f0" +dependencies = [ + "block-padding 0.2.1", + "cipher 0.2.5", +] + [[package]] name = "block-padding" version = "0.1.5" @@ -781,6 +911,12 @@ dependencies = [ "byte-tools", ] +[[package]] +name = "block-padding" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" + [[package]] name = "blocking" version = "1.3.1" @@ -947,6 +1083,17 @@ dependencies = [ "libc", ] +[[package]] +name = "ccm" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aca1a8fbc20b50ac9673ff014abfb2b5f4085ee1a850d408f14a159c5853ac7" +dependencies = [ + "aead 0.3.2", + "cipher 0.2.5", + "subtle", +] + [[package]] name = "cexpr" version = "0.6.0" @@ -966,7 +1113,7 @@ dependencies = [ "scale-info", "serde", "sp-core", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "utilities", ] @@ -996,7 +1143,7 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "ss58-registry", "utilities", ] @@ -1052,7 +1199,7 @@ dependencies = [ "sp-offchain", "sp-runtime", "sp-session", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-transaction-pool", "sp-version", "state-chain-runtime", @@ -1070,7 +1217,7 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "strum 0.24.1", "strum_macros 0.24.3", ] @@ -1090,7 +1237,7 @@ dependencies = [ "frame-support", "log", "sp-io", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -1103,7 +1250,7 @@ dependencies = [ "parity-scale-codec", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -1116,7 +1263,7 @@ dependencies = [ "pallet-session", "rand 0.8.5", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -1146,7 +1293,7 @@ dependencies = [ "scale-info", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -1478,11 +1625,20 @@ checksum = "b9b68e3193982cd54187d71afdb2a271ad4cf8af157858e9cb911b91321de143" dependencies = [ "core2", "multibase", - "multihash 0.17.0", + "multihash", "serde", "unsigned-varint", ] +[[package]] +name = "cipher" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" +dependencies = [ + "generic-array 0.14.7", +] + [[package]] name = "cipher" version = "0.3.0" @@ -1919,6 +2075,21 @@ dependencies = [ "wasmtime-types", ] +[[package]] +name = "crc" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" +dependencies = [ + "crc-catalog", +] + +[[package]] +name = "crc-catalog" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" + [[package]] name = "crc32fast" version = "1.3.2" @@ -1987,6 +2158,18 @@ version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +[[package]] +name = "crypto-bigint" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef" +dependencies = [ + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + [[package]] name = "crypto-bigint" version = "0.5.2" @@ -2320,6 +2503,17 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "der" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", +] + [[package]] name = "der" version = "0.7.8" @@ -2330,6 +2524,34 @@ dependencies = [ "zeroize", ] +[[package]] +name = "der-parser" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82" +dependencies = [ + "asn1-rs 0.3.1", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + +[[package]] +name = "der-parser" +version = "8.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbd676fbbab537128ef0278adb5576cf363cff6aa22a7b24effe97347cfab61e" +dependencies = [ + "asn1-rs 0.5.2", + "displaydoc", + "nom", + "num-bigint", + "num-traits", + "rusticata-macros", +] + [[package]] name = "deranged" version = "0.3.7" @@ -2365,12 +2587,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0" dependencies = [ "darling 0.10.2", - "derive_builder_core", + "derive_builder_core 0.9.0", "proc-macro2", "quote", "syn 1.0.109", ] +[[package]] +name = "derive_builder" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3" +dependencies = [ + "derive_builder_macro", +] + [[package]] name = "derive_builder_core" version = "0.9.0" @@ -2383,6 +2614,28 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "derive_builder_core" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4" +dependencies = [ + "darling 0.14.4", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "derive_builder_macro" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68" +dependencies = [ + "derive_builder_core 0.11.2", + "syn 1.0.109", +] + [[package]] name = "derive_more" version = "0.99.17" @@ -2489,6 +2742,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "displaydoc" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.28", +] + [[package]] name = "dlv-list" version = "0.3.0" @@ -2558,18 +2822,30 @@ version = "1.0.12" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "304e6508efa593091e97a9abbc10f90aa7ca635b6d2784feff3c89d41dd12272" +[[package]] +name = "ecdsa" +version = "0.14.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c" +dependencies = [ + "der 0.6.1", + "elliptic-curve 0.12.3", + "rfc6979 0.3.1", + "signature 1.6.4", +] + [[package]] name = "ecdsa" version = "0.16.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4" dependencies = [ - "der", + "der 0.7.8", "digest 0.10.7", - "elliptic-curve", - "rfc6979", + "elliptic-curve 0.13.5", + "rfc6979 0.4.0", "signature 2.1.0", - "spki", + "spki 0.7.2", ] [[package]] @@ -2630,21 +2906,43 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +[[package]] +name = "elliptic-curve" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3" +dependencies = [ + "base16ct 0.1.1", + "crypto-bigint 0.4.9", + "der 0.6.1", + "digest 0.10.7", + "ff 0.12.1", + "generic-array 0.14.7", + "group 0.12.1", + "hkdf", + "pem-rfc7468", + "pkcs8 0.9.0", + "rand_core 0.6.4", + "sec1 0.3.0", + "subtle", + "zeroize", +] + [[package]] name = "elliptic-curve" version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b" dependencies = [ - "base16ct", - "crypto-bigint", + "base16ct 0.2.0", + "crypto-bigint 0.5.2", "digest 0.10.7", - "ff", + "ff 0.13.0", "generic-array 0.14.7", - "group", - "pkcs8", + "group 0.13.0", + "pkcs8 0.10.2", "rand_core 0.6.4", - "sec1", + "sec1 0.7.3", "subtle", "zeroize", ] @@ -2802,7 +3100,7 @@ dependencies = [ "sha2 0.10.7", "sha3", "thiserror", - "uuid", + "uuid 0.8.2", ] [[package]] @@ -2969,7 +3267,7 @@ dependencies = [ "bytes", "cargo_metadata", "chrono", - "elliptic-curve", + "elliptic-curve 0.13.5", "ethabi", "generic-array 0.14.7", "hex", @@ -3076,7 +3374,7 @@ dependencies = [ "async-trait", "coins-bip32", "coins-bip39", - "elliptic-curve", + "elliptic-curve 0.13.5", "eth-keystore", "ethers-core", "hex", @@ -3191,6 +3489,16 @@ dependencies = [ "libc", ] +[[package]] +name = "ff" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160" +dependencies = [ + "rand_core 0.6.4", + "subtle", +] + [[package]] name = "ff" version = "0.13.0" @@ -3270,6 +3578,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" dependencies = [ "crc32fast", + "libz-sys", "miniz_oxide", ] @@ -3306,7 +3615,7 @@ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", ] @@ -3329,7 +3638,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-support-procedural", @@ -3346,7 +3655,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-runtime-interface", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-storage", "static_assertions", ] @@ -3354,7 +3663,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "Inflector", "array-bytes", @@ -3402,7 +3711,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-system", @@ -3412,7 +3721,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-tracing", ] @@ -3442,7 +3751,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-recursion", "futures", @@ -3463,7 +3772,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "aquamarine", "bitflags 1.3.2", @@ -3491,7 +3800,7 @@ dependencies = [ "sp-runtime", "sp-staking", "sp-state-machine", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-tracing", "sp-weights", "tt-call", @@ -3500,7 +3809,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "Inflector", "cfg-expr", @@ -3518,7 +3827,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3530,7 +3839,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "proc-macro2", "quote", @@ -3540,7 +3849,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "cfg-if", "frame-support", @@ -3551,7 +3860,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-version", "sp-weights", ] @@ -3559,7 +3868,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-benchmarking", "frame-support", @@ -3568,13 +3877,13 @@ dependencies = [ "scale-info", "sp-core", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "sp-api", @@ -3583,13 +3892,13 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "parity-scale-codec", "sp-api", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -3713,7 +4022,7 @@ checksum = "d2411eed028cdf8c8034eaf21f9915f956b6c3abec4d4c7949ee67f0721127bd" dependencies = [ "futures-io", "rustls 0.20.8", - "webpki", + "webpki 0.22.0", ] [[package]] @@ -3955,13 +4264,24 @@ dependencies = [ "web-sys", ] +[[package]] +name = "group" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7" +dependencies = [ + "ff 0.12.1", + "rand_core 0.6.4", + "subtle", +] + [[package]] name = "group" version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" dependencies = [ - "ff", + "ff 0.13.0", "rand_core 0.6.4", "subtle", ] @@ -4306,7 +4626,7 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6eea26c5d0b6ab9d72219f65000af310f042a740926f7b2fa3553e774036e2e7" dependencies = [ - "derive_builder", + "derive_builder 0.9.0", "dns-lookup", "hyper", "tokio", @@ -4536,6 +4856,25 @@ dependencies = [ "num-traits", ] +[[package]] +name = "interceptor" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e8a11ae2da61704edada656798b61c94b35ecac2c58eb955156987d5e6be90b" +dependencies = [ + "async-trait", + "bytes", + "log", + "rand 0.8.5", + "rtcp", + "rtp", + "thiserror", + "tokio", + "waitgroup", + "webrtc-srtp", + "webrtc-util", +] + [[package]] name = "intx" version = "0.1.0" @@ -4985,8 +5324,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc" dependencies = [ "cfg-if", - "ecdsa", - "elliptic-curve", + "ecdsa 0.16.8", + "elliptic-curve 0.13.5", "once_cell", "sha2 0.10.7", "signature 2.1.0", @@ -5110,9 +5449,9 @@ checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4" [[package]] name = "libp2p" -version = "0.52.2" +version = "0.51.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca4894076bfa3051e4f1725747308861af1e6641213640aeeb784f583e40e7d9" +checksum = "f210d259724eae82005b5c48078619b7745edb7b76de370b03f8ba59ea103097" dependencies = [ "bytes", "futures", @@ -5130,10 +5469,12 @@ dependencies = [ "libp2p-metrics", "libp2p-noise", "libp2p-ping", + "libp2p-quic", "libp2p-request-response", "libp2p-swarm", "libp2p-tcp", "libp2p-wasm-ext", + "libp2p-webrtc", "libp2p-websocket", "libp2p-yamux", "multiaddr", @@ -5142,9 +5483,9 @@ dependencies = [ [[package]] name = "libp2p-allow-block-list" -version = "0.2.0" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "55b46558c5c0bf99d3e2a1a38fd54ff5476ca66dd1737b12466a1824dd219311" +checksum = "510daa05efbc25184458db837f6f9a5143888f1caa742426d92e1833ddd38a50" dependencies = [ "libp2p-core", "libp2p-identity", @@ -5154,9 +5495,9 @@ dependencies = [ [[package]] name = "libp2p-connection-limits" -version = "0.2.1" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f5107ad45cb20b2f6c3628c7b6014b996fcb13a88053f4569c872c6e30abf58" +checksum = "4caa33f1d26ed664c4fe2cca81a08c8e07d4c1c04f2f4ac7655c2dd85467fda0" dependencies = [ "libp2p-core", "libp2p-identity", @@ -5166,9 +5507,9 @@ dependencies = [ [[package]] name = "libp2p-core" -version = "0.40.0" +version = "0.39.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef7dd7b09e71aac9271c60031d0e558966cdb3253ba0308ab369bb2de80630d0" +checksum = "3c1df63c0b582aa434fb09b2d86897fa2b419ffeccf934b36f87fcedc8e835c2" dependencies = [ "either", "fnv", @@ -5178,7 +5519,7 @@ dependencies = [ "libp2p-identity", "log", "multiaddr", - "multihash 0.19.1", + "multihash", "multistream-select", "once_cell", "parking_lot 0.12.1", @@ -5194,13 +5535,12 @@ dependencies = [ [[package]] name = "libp2p-dns" -version = "0.40.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd4394c81c0c06d7b4a60f3face7e8e8a9b246840f98d2c80508d0721b032147" +checksum = "146ff7034daae62077c415c2376b8057368042df6ab95f5432ad5e88568b1554" dependencies = [ "futures", "libp2p-core", - "libp2p-identity", "log", "parking_lot 0.12.1", "smallvec", @@ -5209,9 +5549,9 @@ dependencies = [ [[package]] name = "libp2p-identify" -version = "0.43.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a29675a32dbcc87790db6cf599709e64308f1ae9d5ecea2d259155889982db8" +checksum = "5455f472243e63b9c497ff320ded0314254a9eb751799a39c283c6f20b793f3c" dependencies = [ "asynchronous-codec", "either", @@ -5231,14 +5571,15 @@ dependencies = [ [[package]] name = "libp2p-identity" -version = "0.2.2" +version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a38d6012784fe4cc14e6d443eb415b11fc7c456dc15d9f0d90d9b70bc7ac3ec1" +checksum = "9e2d584751cecb2aabaa56106be6be91338a60a0f4e420cf2af639204f596fc1" dependencies = [ - "bs58 0.5.0", + "bs58 0.4.0", "ed25519-dalek", "log", - "multihash 0.19.1", + "multiaddr", + "multihash", "quick-protobuf", "rand 0.8.5", "sha2 0.10.7", @@ -5248,9 +5589,9 @@ dependencies = [ [[package]] name = "libp2p-kad" -version = "0.44.4" +version = "0.43.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc125f83d8f75322c79e4ade74677d299b34aa5c9d9b5251c03ec28c683cb765" +checksum = "39d5ef876a2b2323d63c258e63c2f8e36f205fe5a11f0b3095d59635650790ff" dependencies = [ "arrayvec 0.7.4", "asynchronous-codec", @@ -5276,9 +5617,9 @@ dependencies = [ [[package]] name = "libp2p-mdns" -version = "0.44.0" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42a2567c305232f5ef54185e9604579a894fd0674819402bb0ac0246da82f52a" +checksum = "19983e1f949f979a928f2c603de1cf180cc0dc23e4ac93a62651ccb18341460b" dependencies = [ "data-encoding", "futures", @@ -5289,7 +5630,7 @@ dependencies = [ "log", "rand 0.8.5", "smallvec", - "socket2 0.5.3", + "socket2 0.4.9", "tokio", "trust-dns-proto 0.22.0", "void", @@ -5297,26 +5638,23 @@ dependencies = [ [[package]] name = "libp2p-metrics" -version = "0.13.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "239ba7d28f8d0b5d77760dc6619c05c7e88e74ec8fbbe97f856f20a56745e620" +checksum = "a42ec91e227d7d0dafa4ce88b333cdf5f277253873ab087555c92798db2ddd46" dependencies = [ - "instant", "libp2p-core", "libp2p-identify", - "libp2p-identity", "libp2p-kad", "libp2p-ping", "libp2p-swarm", - "once_cell", "prometheus-client", ] [[package]] name = "libp2p-noise" -version = "0.43.0" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87945db2b3f977af09b62b9aa0a5f3e4870995a577ecd845cdeba94cdf6bbca7" +checksum = "9c3673da89d29936bc6435bafc638e2f184180d554ce844db65915113f86ec5e" dependencies = [ "bytes", "curve25519-dalek 3.2.0", @@ -5324,8 +5662,6 @@ dependencies = [ "libp2p-core", "libp2p-identity", "log", - "multiaddr", - "multihash 0.19.1", "once_cell", "quick-protobuf", "rand 0.8.5", @@ -5339,27 +5675,48 @@ dependencies = [ [[package]] name = "libp2p-ping" -version = "0.43.0" +version = "0.42.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cd5ee3270229443a2b34b27ed0cb7470ef6b4a6e45e54e89a8771fa683bab48" +checksum = "3e57759c19c28a73ef1eb3585ca410cefb72c1a709fcf6de1612a378e4219202" dependencies = [ "either", "futures", "futures-timer", "instant", "libp2p-core", - "libp2p-identity", "libp2p-swarm", "log", "rand 0.8.5", "void", ] +[[package]] +name = "libp2p-quic" +version = "0.7.0-alpha.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6b26abd81cd2398382a1edfe739b539775be8a90fa6914f39b2ab49571ec735" +dependencies = [ + "bytes", + "futures", + "futures-timer", + "if-watch", + "libp2p-core", + "libp2p-identity", + "libp2p-tls", + "log", + "parking_lot 0.12.1", + "quinn-proto", + "rand 0.8.5", + "rustls 0.20.8", + "thiserror", + "tokio", +] + [[package]] name = "libp2p-request-response" -version = "0.25.1" +version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49e2cb9befb57e55f53d9463a6ea9b1b8a09a48174ad7be149c9cbebaa5e8e9b" +checksum = "7ffdb374267d42dc5ed5bc53f6e601d4a64ac5964779c6e40bb9e4f14c1e30d5" dependencies = [ "async-trait", "futures", @@ -5367,17 +5724,15 @@ dependencies = [ "libp2p-core", "libp2p-identity", "libp2p-swarm", - "log", "rand 0.8.5", "smallvec", - "void", ] [[package]] name = "libp2p-swarm" -version = "0.43.3" +version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28016944851bd73526d3c146aabf0fa9bbe27c558f080f9e5447da3a1772c01a" +checksum = "903b3d592d7694e56204d211f29d31bc004be99386644ba8731fc3e3ef27b296" dependencies = [ "either", "fnv", @@ -5388,8 +5743,6 @@ dependencies = [ "libp2p-identity", "libp2p-swarm-derive", "log", - "multistream-select", - "once_cell", "rand 0.8.5", "smallvec", "tokio", @@ -5398,73 +5751,119 @@ dependencies = [ [[package]] name = "libp2p-swarm-derive" -version = "0.33.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4d5ec2a3df00c7836d7696c136274c9c59705bac69133253696a6c932cd1d74" +checksum = "0fba456131824ab6acd4c7bf61e9c0f0a3014b5fc9868ccb8e10d344594cdc4f" dependencies = [ "heck", - "proc-macro-warning", - "proc-macro2", "quote", - "syn 2.0.28", + "syn 1.0.109", ] [[package]] name = "libp2p-tcp" -version = "0.40.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09bfdfb6f945c5c014b87872a0bdb6e0aef90e92f380ef57cd9013f118f9289d" +checksum = "33d33698596d7722d85d3ab0c86c2c322254fce1241e91208e3679b4eb3026cf" dependencies = [ "futures", "futures-timer", "if-watch", "libc", "libp2p-core", - "libp2p-identity", "log", - "socket2 0.5.3", + "socket2 0.4.9", "tokio", ] +[[package]] +name = "libp2p-tls" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff08d13d0dc66e5e9ba6279c1de417b84fa0d0adc3b03e5732928c180ec02781" +dependencies = [ + "futures", + "futures-rustls", + "libp2p-core", + "libp2p-identity", + "rcgen 0.10.0", + "ring", + "rustls 0.20.8", + "thiserror", + "webpki 0.22.0", + "x509-parser 0.14.0", + "yasna", +] + [[package]] name = "libp2p-wasm-ext" -version = "0.40.0" +version = "0.39.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e5d8e3a9e07da0ef5b55a9f26c009c8fb3c725d492d8bb4b431715786eea79c" +checksum = "77dff9d32353a5887adb86c8afc1de1a94d9e8c3bc6df8b2201d7cdf5c848f43" dependencies = [ "futures", "js-sys", "libp2p-core", - "send_wrapper 0.6.0", + "parity-send-wrapper", "wasm-bindgen", "wasm-bindgen-futures", ] +[[package]] +name = "libp2p-webrtc" +version = "0.4.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dba48592edbc2f60b4bc7c10d65445b0c3964c07df26fdf493b6880d33be36f8" +dependencies = [ + "async-trait", + "asynchronous-codec", + "bytes", + "futures", + "futures-timer", + "hex", + "if-watch", + "libp2p-core", + "libp2p-identity", + "libp2p-noise", + "log", + "multihash", + "quick-protobuf", + "quick-protobuf-codec", + "rand 0.8.5", + "rcgen 0.9.3", + "serde", + "stun", + "thiserror", + "tinytemplate", + "tokio", + "tokio-util", + "webrtc", +] + [[package]] name = "libp2p-websocket" -version = "0.42.0" +version = "0.41.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "956d981ebc84abc3377e5875483c06d94ff57bc6b25f725047f9fd52592f72d4" +checksum = "111273f7b3d3510524c752e8b7a5314b7f7a1fee7e68161c01a7d72cbb06db9f" dependencies = [ "either", "futures", "futures-rustls", "libp2p-core", - "libp2p-identity", "log", "parking_lot 0.12.1", "quicksink", "rw-stream-sink", "soketto", "url", - "webpki-roots 0.23.1", + "webpki-roots 0.22.6", ] [[package]] name = "libp2p-yamux" -version = "0.44.1" +version = "0.43.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eedcb62824c4300efb9cfd4e2a6edaf3ca097b9e68b36dabe45a44469fd6a85" +checksum = "4dcd21d950662700a385d4c6d68e2f5f54d778e97068cdd718522222ef513bda" dependencies = [ "futures", "libp2p-core", @@ -5789,6 +6188,15 @@ dependencies = [ "libc", ] +[[package]] +name = "memoffset" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +dependencies = [ + "autocfg", +] + [[package]] name = "memoffset" version = "0.8.0" @@ -5940,16 +6348,16 @@ dependencies = [ [[package]] name = "multiaddr" -version = "0.18.0" +version = "0.17.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92a651988b3ed3ad1bc8c87d016bb92f6f395b84ed1db9b926b32b1fc5a2c8b5" +checksum = "2b36f567c7099511fa8612bbbb52dda2419ce0bdbacf31714e3a5ffdb766d3bd" dependencies = [ "arrayref", "byteorder", "data-encoding", - "libp2p-identity", + "log", "multibase", - "multihash 0.19.1", + "multihash", "percent-encoding", "serde", "static_assertions", @@ -5985,16 +6393,6 @@ dependencies = [ "unsigned-varint", ] -[[package]] -name = "multihash" -version = "0.19.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076d548d76a0e2a0d4ab471d0b1c36c577786dfc4471242035d97a12a735c492" -dependencies = [ - "core2", - "unsigned-varint", -] - [[package]] name = "multihash-derive" version = "0.8.1" @@ -6064,9 +6462,9 @@ dependencies = [ [[package]] name = "multistream-select" -version = "0.13.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea0df8e5eec2298a62b326ee4f0d7fe1a6b90a09dfcf9df37b38f947a8c42f19" +checksum = "c8552ab875c1313b97b8d20cb857b9fd63e2d1d6a0a1b53ce9821e575405f27a" dependencies = [ "bytes", "futures", @@ -6226,6 +6624,7 @@ dependencies = [ "bitflags 1.3.2", "cfg-if", "libc", + "memoffset 0.6.5", ] [[package]] @@ -6413,6 +6812,24 @@ dependencies = [ "memchr", ] +[[package]] +name = "oid-registry" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a" +dependencies = [ + "asn1-rs 0.3.1", +] + +[[package]] +name = "oid-registry" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bedf36ffb6ba96c2eb7144ef6270557b52e54b20c0a8e1eb2ff99a6c6959bff" +dependencies = [ + "asn1-rs 0.5.2", +] + [[package]] name = "once_cell" version = "1.18.0" @@ -6522,6 +6939,28 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" +[[package]] +name = "p256" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594" +dependencies = [ + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.7", +] + +[[package]] +name = "p384" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc8c5bf642dde52bb9e87c0ecd8ca5a76faac2eeed98dedb7c717997e1080aa" +dependencies = [ + "ecdsa 0.14.8", + "elliptic-curve 0.12.3", + "sha2 0.10.7", +] + [[package]] name = "packed_simd_2" version = "0.3.8" @@ -6535,7 +6974,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-system", @@ -6545,13 +6984,13 @@ dependencies = [ "sp-application-crypto", "sp-consensus-aura", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-system", @@ -6559,7 +6998,7 @@ dependencies = [ "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6579,7 +7018,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6600,7 +7039,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6621,7 +7060,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6644,7 +7083,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6667,7 +7106,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6688,7 +7127,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6710,7 +7149,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6729,7 +7168,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6752,7 +7191,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6773,7 +7212,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6795,7 +7234,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6818,7 +7257,7 @@ dependencies = [ "sp-io", "sp-runtime", "sp-staking", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6840,7 +7279,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6865,7 +7304,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6886,7 +7325,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -6913,7 +7352,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "utilities", ] @@ -6937,7 +7376,7 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "utilities", ] @@ -6958,14 +7397,14 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "utilities", ] [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-benchmarking", "frame-support", @@ -6982,13 +7421,13 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-system", @@ -7002,14 +7441,14 @@ dependencies = [ "sp-runtime", "sp-session", "sp-staking", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-trie", ] [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-benchmarking", "frame-support", @@ -7020,14 +7459,14 @@ dependencies = [ "sp-inherents", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-timestamp", ] [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-support", "frame-system", @@ -7037,13 +7476,13 @@ dependencies = [ "sp-core", "sp-io", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "jsonrpsee 0.16.2", "pallet-transaction-payment-rpc-runtime-api", @@ -7059,7 +7498,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -7115,6 +7554,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "parity-send-wrapper" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9777aa91b8ad9dd5aaa04a9b6bcb02c7f1deb952fca5a66034d5e63afc5c6f" + [[package]] name = "parity-wasm" version = "0.45.0" @@ -7247,6 +7692,24 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" +[[package]] +name = "pem" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8" +dependencies = [ + "base64 0.13.1", +] + +[[package]] +name = "pem-rfc7468" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac" +dependencies = [ + "base64ct", +] + [[package]] name = "percent-encoding" version = "2.3.0" @@ -7406,14 +7869,24 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" +[[package]] +name = "pkcs8" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba" +dependencies = [ + "der 0.6.1", + "spki 0.6.0", +] + [[package]] name = "pkcs8" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" dependencies = [ - "der", - "spki", + "der 0.7.8", + "spki 0.7.2", ] [[package]] @@ -7652,9 +8125,9 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.21.2" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c99afa9a01501019ac3a14d71d9f94050346f55ca471ce90c799a15c58f61e2" +checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" dependencies = [ "dtoa", "itoa", @@ -7774,9 +8247,9 @@ dependencies = [ [[package]] name = "quick-protobuf-codec" -version = "0.2.0" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ededb1cd78531627244d51dd0c7139fbe736c7d57af0092a76f0ffb2f56e98" +checksum = "1693116345026436eb2f10b677806169c1a1260c1c60eaaffe3fb5a29ae23d8b" dependencies = [ "asynchronous-codec", "bytes", @@ -7818,6 +8291,24 @@ dependencies = [ "pin-project-lite 0.1.12", ] +[[package]] +name = "quinn-proto" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31999cfc7927c4e212e60fd50934ab40e8e8bfd2d493d6095d2d306bc0764d9" +dependencies = [ + "bytes", + "rand 0.8.5", + "ring", + "rustc-hash", + "rustls 0.20.8", + "slab", + "thiserror", + "tinyvec", + "tracing", + "webpki 0.22.0", +] + [[package]] name = "quote" version = "1.0.32" @@ -7957,6 +8448,31 @@ dependencies = [ "num_cpus", ] +[[package]] +name = "rcgen" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6413f3de1edee53342e6138e75b56d32e7bc6e332b3bd62d497b1929d4cfbcdd" +dependencies = [ + "pem", + "ring", + "time 0.3.25", + "x509-parser 0.13.2", + "yasna", +] + +[[package]] +name = "rcgen" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbe84efe2f38dea12e9bfc1f65377fdf03e53a18cb3b995faedf7934c7e785b" +dependencies = [ + "pem", + "ring", + "time 0.3.25", + "yasna", +] + [[package]] name = "redox_syscall" version = "0.2.16" @@ -8114,6 +8630,17 @@ dependencies = [ "quick-error", ] +[[package]] +name = "rfc6979" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb" +dependencies = [ + "crypto-bigint 0.4.9", + "hmac 0.12.1", + "zeroize", +] + [[package]] name = "rfc6979" version = "0.4.0" @@ -8208,6 +8735,17 @@ dependencies = [ "winapi", ] +[[package]] +name = "rtcp" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1919efd6d4a6a85d13388f9487549bb8e359f17198cc03ffd72f79b553873691" +dependencies = [ + "bytes", + "thiserror", + "webrtc-util", +] + [[package]] name = "rtnetlink" version = "0.10.1" @@ -8233,6 +8771,20 @@ dependencies = [ "winapi", ] +[[package]] +name = "rtp" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2a095411ff00eed7b12e4c6a118ba984d113e1079582570d56a5ee723f11f80" +dependencies = [ + "async-trait", + "bytes", + "rand 0.8.5", + "serde", + "thiserror", + "webrtc-util", +] + [[package]] name = "rust-ini" version = "0.18.0" @@ -8270,6 +8822,15 @@ dependencies = [ "semver 1.0.18", ] +[[package]] +name = "rusticata-macros" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" +dependencies = [ + "nom", +] + [[package]] name = "rustix" version = "0.36.15" @@ -8311,6 +8872,19 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "rustls" +version = "0.19.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7" +dependencies = [ + "base64 0.13.1", + "log", + "ring", + "sct 0.6.1", + "webpki 0.21.4", +] + [[package]] name = "rustls" version = "0.20.8" @@ -8319,8 +8893,8 @@ checksum = "fff78fc74d175294f4e83b28343315ffcfb114b156f0185e9741cb5570f50e2f" dependencies = [ "log", "ring", - "sct", - "webpki", + "sct 0.7.0", + "webpki 0.22.0", ] [[package]] @@ -8332,7 +8906,7 @@ dependencies = [ "log", "ring", "rustls-webpki 0.101.3", - "sct", + "sct 0.7.0", ] [[package]] @@ -8395,9 +8969,9 @@ dependencies = [ [[package]] name = "rw-stream-sink" -version = "0.4.0" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8c9026ff5d2f23da5e45bbc283f156383001bfb09c4e44256d02c1a685fe9a1" +checksum = "26338f5e09bb721b85b135ea05af7767c90b52f6de4f087d4f4a3a9d64e7dc04" dependencies = [ "futures", "pin-project", @@ -8440,7 +9014,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "log", "sp-core", @@ -8451,7 +9025,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "futures", "futures-timer", @@ -8474,7 +9048,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -8489,7 +9063,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -8508,7 +9082,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -8519,7 +9093,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "chrono", @@ -8558,7 +9132,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "fnv", "futures", @@ -8584,7 +9158,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "hash-db 0.16.0", "kvdb", @@ -8610,7 +9184,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -8635,7 +9209,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -8664,7 +9238,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ahash 0.8.3", "array-bytes", @@ -8705,7 +9279,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "finality-grandpa", "futures", @@ -8725,7 +9299,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -8748,7 +9322,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -8770,7 +9344,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -8782,7 +9356,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "anyhow", "cfg-if", @@ -8799,7 +9373,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ansi_term", "futures", @@ -8815,7 +9389,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -8829,7 +9403,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "async-channel", @@ -8842,7 +9416,6 @@ dependencies = [ "futures-timer", "ip_network", "libp2p", - "libp2p-kad", "linked_hash_set", "log", "mockall", @@ -8864,7 +9437,6 @@ dependencies = [ "substrate-prometheus-endpoint", "thiserror", "unsigned-varint", - "void", "wasm-timer", "zeroize", ] @@ -8872,7 +9444,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-channel", "cid", @@ -8892,7 +9464,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -8909,14 +9481,13 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ahash 0.8.3", "futures", "futures-timer", - "libp2p-identity", + "libp2p", "log", - "multiaddr", "sc-network", "sc-network-common", "schnellru", @@ -8928,7 +9499,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "async-channel", @@ -8949,7 +9520,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "async-channel", @@ -8983,7 +9554,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "futures", @@ -9001,7 +9572,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "bytes", @@ -9035,7 +9606,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -9044,7 +9615,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "futures", "jsonrpsee 0.16.2", @@ -9075,7 +9646,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "jsonrpsee 0.16.2", "parity-scale-codec", @@ -9094,7 +9665,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "http", "jsonrpsee 0.16.2", @@ -9109,7 +9680,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "futures", @@ -9135,7 +9706,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "directories", @@ -9199,7 +9770,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "log", "parity-scale-codec", @@ -9210,7 +9781,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "futures", "libc", @@ -9223,13 +9794,13 @@ dependencies = [ "serde_json", "sp-core", "sp-io", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "chrono", "futures", @@ -9248,7 +9819,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ansi_term", "atty", @@ -9277,7 +9848,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -9288,7 +9859,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -9314,7 +9885,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -9330,7 +9901,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-channel", "futures", @@ -9539,6 +10110,16 @@ dependencies = [ "sha2 0.10.7", ] +[[package]] +name = "sct" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "sct" version = "0.7.0" @@ -9550,15 +10131,41 @@ dependencies = [ ] [[package]] -name = "sec1" -version = "0.7.3" +name = "sdp" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d22a5ef407871893fd72b4562ee15e4742269b173959db4b8df6f538c414e13" +dependencies = [ + "rand 0.8.5", + "substring", + "thiserror", + "url", +] + +[[package]] +name = "sec1" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928" +dependencies = [ + "base16ct 0.1.1", + "der 0.6.1", + "generic-array 0.14.7", + "pkcs8 0.9.0", + "subtle", + "zeroize", +] + +[[package]] +name = "sec1" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" dependencies = [ - "base16ct", - "der", + "base16ct 0.2.0", + "der 0.7.8", "generic-array 0.14.7", - "pkcs8", + "pkcs8 0.10.2", "subtle", "zeroize", ] @@ -9831,6 +10438,10 @@ name = "signature" version = "1.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c" +dependencies = [ + "digest 0.10.7", + "rand_core 0.6.4", +] [[package]] name = "signature" @@ -10031,6 +10642,7 @@ checksum = "41d1c5305e39e09653383c2c7244f2f78b3bcae37cf50c64cb4789c9f5096ec2" dependencies = [ "base64 0.13.1", "bytes", + "flate2", "futures", "http", "httparse", @@ -10056,7 +10668,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "hash-db 0.16.0", "log", @@ -10068,7 +10680,7 @@ dependencies = [ "sp-metadata-ir", "sp-runtime", "sp-state-machine", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-trie", "sp-version", "thiserror", @@ -10077,7 +10689,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "Inflector", "blake2", @@ -10091,45 +10703,45 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "scale-info", "serde", "sp-core", "sp-io", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "integer-sqrt", "num-traits", "parity-scale-codec", "scale-info", "serde", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "static_assertions", ] [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "sp-api", "sp-inherents", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "futures", "log", @@ -10147,7 +10759,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "futures", @@ -10162,7 +10774,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10172,14 +10784,14 @@ dependencies = [ "sp-consensus-slots", "sp-inherents", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-timestamp", ] [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10191,14 +10803,14 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-timestamp", ] [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "finality-grandpa", "log", @@ -10210,25 +10822,25 @@ dependencies = [ "sp-core", "sp-keystore", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "scale-info", "serde", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-timestamp", ] [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "array-bytes", "bitflags 1.3.2", @@ -10256,11 +10868,11 @@ dependencies = [ "secp256k1 0.24.3", "secrecy", "serde", - "sp-core-hashing 9.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-core-hashing 9.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-debug-derive", "sp-externalities", "sp-runtime-interface", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-storage", "ss58-registry", "substrate-bip39", @@ -10288,7 +10900,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "blake2b_simd", "byteorder", @@ -10301,17 +10913,17 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "quote", - "sp-core-hashing 9.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-core-hashing 9.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "syn 2.0.28", ] [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -10320,7 +10932,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "proc-macro2", "quote", @@ -10330,43 +10942,43 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "environmental", "parity-scale-codec", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-storage", ] [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "serde_json", "sp-api", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "impl-trait-for-tuples", "parity-scale-codec", "scale-info", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "thiserror", ] [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "bytes", "ed25519", @@ -10381,7 +10993,7 @@ dependencies = [ "sp-keystore", "sp-runtime-interface", "sp-state-machine", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-tracing", "sp-trie", "tracing", @@ -10391,7 +11003,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "lazy_static", "sp-core", @@ -10402,7 +11014,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -10414,7 +11026,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "thiserror", "zstd 0.12.4", @@ -10423,18 +11035,18 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-metadata 16.0.0", "parity-scale-codec", "scale-info", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "sp-api", "sp-core", @@ -10444,7 +11056,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "backtrace", "lazy_static", @@ -10454,7 +11066,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "rustc-hash", "serde", @@ -10464,7 +11076,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "either", "hash256-std-hasher", @@ -10479,14 +11091,14 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-io", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-weights", ] [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -10494,7 +11106,7 @@ dependencies = [ "primitive-types", "sp-externalities", "sp-runtime-interface-proc-macro", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-storage", "sp-tracing", "sp-wasm-interface", @@ -10504,7 +11116,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "Inflector", "proc-macro-crate", @@ -10516,7 +11128,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10525,13 +11137,13 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-staking", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -10539,13 +11151,13 @@ dependencies = [ "serde", "sp-core", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "hash-db 0.16.0", "log", @@ -10556,7 +11168,7 @@ dependencies = [ "sp-core", "sp-externalities", "sp-panic-handler", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-trie", "thiserror", "tracing", @@ -10566,7 +11178,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "aes-gcm 0.10.2", "curve25519-dalek 3.2.0", @@ -10582,7 +11194,7 @@ dependencies = [ "sp-externalities", "sp-runtime", "sp-runtime-interface", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "thiserror", "x25519-dalek 2.0.0-pre.1", ] @@ -10596,41 +11208,41 @@ checksum = "53458e3c57df53698b3401ec0934bea8e8cfce034816873c0b0abbd83d7bac0d" [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "impl-serde", "parity-scale-codec", "ref-cast", "serde", "sp-debug-derive", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "parity-scale-codec", "sp-inherents", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "thiserror", ] [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "tracing", "tracing-core", "tracing-subscriber 0.2.25", @@ -10639,7 +11251,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "sp-api", "sp-runtime", @@ -10648,7 +11260,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "parity-scale-codec", @@ -10656,14 +11268,14 @@ dependencies = [ "sp-core", "sp-inherents", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-trie", ] [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ahash 0.8.3", "hash-db 0.16.0", @@ -10676,7 +11288,7 @@ dependencies = [ "scale-info", "schnellru", "sp-core", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "thiserror", "tracing", "trie-db", @@ -10686,7 +11298,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "impl-serde", "parity-scale-codec", @@ -10695,7 +11307,7 @@ dependencies = [ "serde", "sp-core-hashing-proc-macro", "sp-runtime", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-version-proc-macro", "thiserror", ] @@ -10703,7 +11315,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -10714,20 +11326,20 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "anyhow", "impl-trait-for-tuples", "log", "parity-scale-codec", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "wasmtime", ] [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "parity-scale-codec", "scale-info", @@ -10736,7 +11348,7 @@ dependencies = [ "sp-arithmetic", "sp-core", "sp-debug-derive", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", ] [[package]] @@ -10762,6 +11374,16 @@ dependencies = [ "strum 0.24.1", ] +[[package]] +name = "spki" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b" +dependencies = [ + "base64ct", + "der 0.6.1", +] + [[package]] name = "spki" version = "0.7.2" @@ -10769,7 +11391,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" dependencies = [ "base64ct", - "der", + "der 0.7.8", ] [[package]] @@ -10851,7 +11473,7 @@ dependencies = [ "sp-offchain", "sp-runtime", "sp-session", - "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1)", + "sp-std 8.0.0 (git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2)", "sp-transaction-pool", "sp-version", "substrate-wasm-builder", @@ -10961,6 +11583,25 @@ dependencies = [ "syn 2.0.28", ] +[[package]] +name = "stun" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7e94b1ec00bad60e6410e058b52f1c66de3dc5fe4d62d09b3e52bb7d3b73e25" +dependencies = [ + "base64 0.13.1", + "crc", + "lazy_static", + "md-5", + "rand 0.8.5", + "ring", + "subtle", + "thiserror", + "tokio", + "url", + "webrtc-util", +] + [[package]] name = "substrate-bip39" version = "0.4.4" @@ -10977,12 +11618,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -11001,7 +11642,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "hyper", "log", @@ -11013,7 +11654,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "jsonrpsee 0.16.2", @@ -11026,7 +11667,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "ansi_term", "build-helper", @@ -11041,6 +11682,15 @@ dependencies = [ "wasm-opt", ] +[[package]] +name = "substring" +version = "1.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ee6433ecef213b2e72f587ef64a2f5943e7cd16fbd82dbe8bc07486c534c86" +dependencies = [ + "autocfg", +] + [[package]] name = "subtle" version = "2.4.1" @@ -11372,8 +12022,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0fdd63d58b18d663fbdf70e049f00a22c8e42be082203be7f26589213cd75ea" dependencies = [ "deranged", + "itoa", "serde", "time-core", + "time-macros", ] [[package]] @@ -11382,6 +12034,15 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" +[[package]] +name = "time-macros" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eb71511c991639bb078fd5bf97757e03914361c48100d52878b8e52b46fb92cd" +dependencies = [ + "time-core", +] + [[package]] name = "tiny-bip39" version = "1.0.0" @@ -11410,6 +12071,16 @@ dependencies = [ "crunchy", ] +[[package]] +name = "tinytemplate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" +dependencies = [ + "serde", + "serde_json", +] + [[package]] name = "tinyvec" version = "1.6.0" @@ -11484,7 +12155,7 @@ checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" dependencies = [ "rustls 0.20.8", "tokio", - "webpki", + "webpki 0.22.0", ] [[package]] @@ -11888,7 +12559,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+1#4aef762996b872992aaa675314dbb7d25204cc7e" +source = "git+https://github.com/chainflip-io/substrate.git?tag=chainflip-monthly-2023-08+2#fdf882fbc3bd18af7f35c11dcfeb42e7a61b4f8f" dependencies = [ "async-trait", "clap 4.3.21", @@ -11964,7 +12635,26 @@ dependencies = [ "thiserror", "url", "utf-8", - "webpki", + "webpki 0.22.0", +] + +[[package]] +name = "turn" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4712ee30d123ec7ae26d1e1b218395a16c87cdbaf4b3925d170d684af62ea5e8" +dependencies = [ + "async-trait", + "base64 0.13.1", + "futures", + "log", + "md-5", + "rand 0.8.5", + "ring", + "stun", + "thiserror", + "tokio", + "webrtc-util", ] [[package]] @@ -12144,6 +12834,15 @@ dependencies = [ "serde", ] +[[package]] +name = "uuid" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" +dependencies = [ + "getrandom 0.2.10", +] + [[package]] name = "valuable" version = "0.1.0" @@ -12168,6 +12867,15 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +[[package]] +name = "waitgroup" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1f50000a783467e6c0200f9d10642f4bc424e39efc1b770203e88b488f79292" +dependencies = [ + "atomic-waker", +] + [[package]] name = "waker-fn" version = "1.1.0" @@ -12670,6 +13378,16 @@ dependencies = [ "url", ] +[[package]] +name = "webpki" +version = "0.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" +dependencies = [ + "ring", + "untrusted", +] + [[package]] name = "webpki" version = "0.22.0" @@ -12686,7 +13404,7 @@ version = "0.22.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87" dependencies = [ - "webpki", + "webpki 0.22.0", ] [[package]] @@ -12704,6 +13422,215 @@ version = "0.25.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc" +[[package]] +name = "webrtc" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d3bc9049bdb2cea52f5fd4f6f728184225bdb867ed0dc2410eab6df5bdd67bb" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "hex", + "interceptor", + "lazy_static", + "log", + "rand 0.8.5", + "rcgen 0.9.3", + "regex", + "ring", + "rtcp", + "rtp", + "rustls 0.19.1", + "sdp", + "serde", + "serde_json", + "sha2 0.10.7", + "stun", + "thiserror", + "time 0.3.25", + "tokio", + "turn", + "url", + "waitgroup", + "webrtc-data", + "webrtc-dtls", + "webrtc-ice", + "webrtc-mdns", + "webrtc-media", + "webrtc-sctp", + "webrtc-srtp", + "webrtc-util", +] + +[[package]] +name = "webrtc-data" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ef36a4d12baa6e842582fe9ec16a57184ba35e1a09308307b67d43ec8883100" +dependencies = [ + "bytes", + "derive_builder 0.11.2", + "log", + "thiserror", + "tokio", + "webrtc-sctp", + "webrtc-util", +] + +[[package]] +name = "webrtc-dtls" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "942be5bd85f072c3128396f6e5a9bfb93ca8c1939ded735d177b7bcba9a13d05" +dependencies = [ + "aes 0.6.0", + "aes-gcm 0.10.2", + "async-trait", + "bincode", + "block-modes", + "byteorder", + "ccm", + "curve25519-dalek 3.2.0", + "der-parser 8.2.0", + "elliptic-curve 0.12.3", + "hkdf", + "hmac 0.12.1", + "log", + "oid-registry 0.6.1", + "p256", + "p384", + "rand 0.8.5", + "rand_core 0.6.4", + "rcgen 0.9.3", + "ring", + "rustls 0.19.1", + "sec1 0.3.0", + "serde", + "sha1", + "sha2 0.10.7", + "signature 1.6.4", + "subtle", + "thiserror", + "tokio", + "webpki 0.21.4", + "webrtc-util", + "x25519-dalek 2.0.0-pre.1", + "x509-parser 0.13.2", +] + +[[package]] +name = "webrtc-ice" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "465a03cc11e9a7d7b4f9f99870558fe37a102b65b93f8045392fef7c67b39e80" +dependencies = [ + "arc-swap", + "async-trait", + "crc", + "log", + "rand 0.8.5", + "serde", + "serde_json", + "stun", + "thiserror", + "tokio", + "turn", + "url", + "uuid 1.4.1", + "waitgroup", + "webrtc-mdns", + "webrtc-util", +] + +[[package]] +name = "webrtc-mdns" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f08dfd7a6e3987e255c4dbe710dde5d94d0f0574f8a21afa95d171376c143106" +dependencies = [ + "log", + "socket2 0.4.9", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-media" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f72e1650a8ae006017d1a5280efb49e2610c19ccc3c0905b03b648aee9554991" +dependencies = [ + "byteorder", + "bytes", + "rand 0.8.5", + "rtp", + "thiserror", +] + +[[package]] +name = "webrtc-sctp" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d47adcd9427eb3ede33d5a7f3424038f63c965491beafcc20bc650a2f6679c0" +dependencies = [ + "arc-swap", + "async-trait", + "bytes", + "crc", + "log", + "rand 0.8.5", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-srtp" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6183edc4c1c6c0175f8812eefdce84dfa0aea9c3ece71c2bf6ddd3c964de3da5" +dependencies = [ + "aead 0.4.3", + "aes 0.7.5", + "aes-gcm 0.9.4", + "async-trait", + "byteorder", + "bytes", + "ctr 0.8.0", + "hmac 0.11.0", + "log", + "rtcp", + "rtp", + "sha-1", + "subtle", + "thiserror", + "tokio", + "webrtc-util", +] + +[[package]] +name = "webrtc-util" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93f1db1727772c05cf7a2cfece52c3aca8045ca1e176cd517d323489aa3c6d87" +dependencies = [ + "async-trait", + "bitflags 1.3.2", + "bytes", + "cc", + "ipnet", + "lazy_static", + "libc", + "log", + "nix", + "rand 0.8.5", + "thiserror", + "tokio", + "winapi", +] + [[package]] name = "which" version = "4.4.0" @@ -13025,6 +13952,43 @@ dependencies = [ "zeroize", ] +[[package]] +name = "x509-parser" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c" +dependencies = [ + "asn1-rs 0.3.1", + "base64 0.13.1", + "data-encoding", + "der-parser 7.0.0", + "lazy_static", + "nom", + "oid-registry 0.4.0", + "ring", + "rusticata-macros", + "thiserror", + "time 0.3.25", +] + +[[package]] +name = "x509-parser" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0ecbeb7b67ce215e40e3cc7f2ff902f94a223acf44995934763467e7b1febc8" +dependencies = [ + "asn1-rs 0.5.2", + "base64 0.13.1", + "data-encoding", + "der-parser 8.2.0", + "lazy_static", + "nom", + "oid-registry 0.6.1", + "rusticata-macros", + "thiserror", + "time 0.3.25", +] + [[package]] name = "yaml-rust" version = "0.4.5" @@ -13036,15 +14000,14 @@ dependencies = [ [[package]] name = "yamux" -version = "0.12.0" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0329ef377816896f014435162bb3711ea7a07729c23d0960e6f8048b21b8fe91" +checksum = "e5d9ba232399af1783a58d8eb26f6b5006fbefe2dc9ef36bd283324792d03ea5" dependencies = [ "futures", "log", "nohash-hasher", "parking_lot 0.12.1", - "pin-project", "rand 0.8.5", "static_assertions", ] @@ -13061,6 +14024,15 @@ version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff4524214bc4629eba08d78ceb1d6507070cc0bcbbed23af74e19e6e924a24cf" +[[package]] +name = "yasna" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd" +dependencies = [ + "time 0.3.25", +] + [[package]] name = "zeroize" version = "1.6.0" diff --git a/api/bin/chainflip-broker-api/Cargo.toml b/api/bin/chainflip-broker-api/Cargo.toml index a1cf381660..7953361037 100644 --- a/api/bin/chainflip-broker-api/Cargo.toml +++ b/api/bin/chainflip-broker-api/Cargo.toml @@ -30,7 +30,7 @@ futures = "0.3" hex = "0.4.3" jsonrpsee = { version = "0.20", features = ["full"] } serde = { version = '1.0', features = ['derive'] } -sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } tokio = "1.20.1" tracing = "0.1.34" tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } diff --git a/api/bin/chainflip-cli/Cargo.toml b/api/bin/chainflip-cli/Cargo.toml index 4817e61e4c..ef795b70bd 100644 --- a/api/bin/chainflip-cli/Cargo.toml +++ b/api/bin/chainflip-cli/Cargo.toml @@ -22,4 +22,4 @@ cf-chains = { path = "../../../state-chain/chains" } utilities = { path = "../../../utilities" } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } diff --git a/api/bin/chainflip-lp-api/Cargo.toml b/api/bin/chainflip-lp-api/Cargo.toml index 855be42d86..28deb00b52 100644 --- a/api/bin/chainflip-lp-api/Cargo.toml +++ b/api/bin/chainflip-lp-api/Cargo.toml @@ -27,7 +27,7 @@ hex = "0.4.3" jsonrpsee = { version = "0.20", features = ["full"] } serde = { version = '1.0', features = ['derive'] } serde_json = "1.0" -sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } tokio = "1.20.1" tracing = "0.1" tracing-subscriber = { version = "0.3.3", features = ["env-filter"] } diff --git a/api/lib/Cargo.toml b/api/lib/Cargo.toml index f8114e7818..23899a95ac 100644 --- a/api/lib/Cargo.toml +++ b/api/lib/Cargo.toml @@ -40,10 +40,10 @@ pallet-cf-pools = { path = '../../state-chain/pallets/cf-pools' } pallet-cf-threshold-signature = { path = "../../state-chain/pallets/cf-threshold-signature" } pallet-cf-validator = { path = "../../state-chain/pallets/cf-validator" } state-chain-runtime = { path = "../../state-chain/runtime" } -frame-system = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1' } +frame-system = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } cf-amm = { path = "../../state-chain/amm" } # Substrate key types -sp-consensus-aura = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1' } -sp-core = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1' } -sp-consensus-grandpa = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1' } +sp-consensus-aura = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } +sp-core = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } +sp-consensus-grandpa = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 2f2319e5f4..8befe03098 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -116,14 +116,14 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = [ "derive", "full", ] } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sc-rpc-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sc-rpc-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } scale-info = { version = "2.5.0", features = ["derive"] } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [dependencies.rocksdb] version = "0.21.0" @@ -145,7 +145,7 @@ utilities = { package = "utilities", path = "../utilities", features = [ ] } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] integration-test = [] diff --git a/engine/multisig/Cargo.toml b/engine/multisig/Cargo.toml index 249a43e3e8..3d23047815 100644 --- a/engine/multisig/Cargo.toml +++ b/engine/multisig/Cargo.toml @@ -63,8 +63,8 @@ state-chain-runtime = { path = "../../state-chain/runtime" } utilities = { package = "utilities", path = "../../utilities" } # substrate deps -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [dev-dependencies] mockall = "0.11.0" diff --git a/state-chain/amm/Cargo.toml b/state-chain/amm/Cargo.toml index 3a1d4e1f07..9ec97b0480 100644 --- a/state-chain/amm/Cargo.toml +++ b/state-chain/amm/Cargo.toml @@ -21,8 +21,8 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] rand = "0.8" diff --git a/state-chain/cf-integration-tests/Cargo.toml b/state-chain/cf-integration-tests/Cargo.toml index 6b605dac44..247c28565d 100644 --- a/state-chain/cf-integration-tests/Cargo.toml +++ b/state-chain/cf-integration-tests/Cargo.toml @@ -29,7 +29,7 @@ cf-primitives = { path = '../primitives' } cf-test-utilities = { path = '../test-utilities' } cf-traits = { path = '../traits' } chainflip-node = { path = '../node' } -pallet-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +pallet-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } pallet-cf-account-roles = { path = '../pallets/cf-account-roles' } pallet-cf-broadcast = { path = '../pallets/cf-broadcast' } pallet-cf-emissions = { path = '../pallets/cf-emissions' } @@ -46,7 +46,7 @@ pallet-cf-threshold-signature = { path = '../pallets/cf-threshold-signature' } pallet-cf-validator = { path = '../pallets/cf-validator' } pallet-cf-vaults = { path = '../pallets/cf-vaults' } pallet-cf-witnesser = { path = '../pallets/cf-witnesser' } -pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", features = [ +pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", features = [ 'historical', ] } @@ -56,25 +56,25 @@ codec = { package = "parity-scale-codec", version = "3.6.1", features = [ ] } scale-info = { version = "2.5.0", features = ["derive"] } -frame-executive = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -frame-system-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +frame-executive = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +frame-system-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } -pallet-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -pallet-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +pallet-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +pallet-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } -sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } diff --git a/state-chain/cf-session-benchmarking/Cargo.toml b/state-chain/cf-session-benchmarking/Cargo.toml index 5c4684cfdd..2407bb765f 100644 --- a/state-chain/cf-session-benchmarking/Cargo.toml +++ b/state-chain/cf-session-benchmarking/Cargo.toml @@ -15,16 +15,16 @@ targets = ['x86_64-unknown-linux-gnu'] [dependencies] rand = { version = '0.8.4', default-features = false, features = ['std_rng'] } -pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false, features = [ +pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false, features = [ 'historical', ] } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [features] default = ['std'] diff --git a/state-chain/chains/Cargo.toml b/state-chain/chains/Cargo.toml index 399ed002bd..abff402b6f 100644 --- a/state-chain/chains/Cargo.toml +++ b/state-chain/chains/Cargo.toml @@ -44,12 +44,12 @@ codec = { package = 'parity-scale-codec', version = '3.6.1', default-features = scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../test-utilities' } rand = { version = '0.8.4' } diff --git a/state-chain/custom-rpc/Cargo.toml b/state-chain/custom-rpc/Cargo.toml index f0e126c6d7..9d0711f160 100644 --- a/state-chain/custom-rpc/Cargo.toml +++ b/state-chain/custom-rpc/Cargo.toml @@ -20,7 +20,7 @@ pallet-cf-governance = { path = "../pallets/cf-governance" } pallet-cf-pools = { path = "../pallets/cf-pools" } hex = '0.4.3' -sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sc-client-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sc-client-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } diff --git a/state-chain/node/Cargo.toml b/state-chain/node/Cargo.toml index 11334e6388..154d9bf2e7 100644 --- a/state-chain/node/Cargo.toml +++ b/state-chain/node/Cargo.toml @@ -36,51 +36,51 @@ log = "0.4.16" clap = { version = "4.2.5", features = ["derive"] } futures = { version = "0.3.21", features = ["thread-pool"] } -sc-cli = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-executor = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-network = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-service = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-telemetry = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-keystore = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-transaction-pool-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-consensus = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-consensus = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-consensus-grandpa-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-client-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-keyring = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -pallet-transaction-payment = { default-features = false, git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +sc-cli = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-executor = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-network = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-service = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-telemetry = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-keystore = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-transaction-pool-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-consensus = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-consensus = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-consensus-grandpa-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-client-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-keyring = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +pallet-transaction-payment = { default-features = false, git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } # These dependencies are used for the node template's RPCs jsonrpsee = { version = "0.16.2", features = ["full"] } -sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-rpc-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-blockchain = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -sc-basic-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -substrate-frame-rpc-system = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -pallet-transaction-payment-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-rpc-api = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-blockchain = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +sc-basic-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +substrate-frame-rpc-system = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +pallet-transaction-payment-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } # These dependencies are used for runtime benchmarking -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } -frame-benchmarking-cli = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } +frame-benchmarking-cli = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } # CLI-specific dependencies -try-runtime-cli = { optional = true, git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +try-runtime-cli = { optional = true, git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } [build-dependencies] -substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+1' } +substrate-build-script-utils = { git = "https://github.com/chainflip-io/substrate.git", tag = 'chainflip-monthly-2023-08+2' } [features] default = [] diff --git a/state-chain/pallets/cf-account-roles/Cargo.toml b/state-chain/pallets/cf-account-roles/Cargo.toml index 7a66ca859f..f003c1ef56 100644 --- a/state-chain/pallets/cf-account-roles/Cargo.toml +++ b/state-chain/pallets/cf-account-roles/Cargo.toml @@ -28,16 +28,16 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false, optional = true } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false, optional = true } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-broadcast/Cargo.toml b/state-chain/pallets/cf-broadcast/Cargo.toml index 4308cb7111..c3fd125d18 100644 --- a/state-chain/pallets/cf-broadcast/Cargo.toml +++ b/state-chain/pallets/cf-broadcast/Cargo.toml @@ -29,15 +29,15 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-chain-tracking/Cargo.toml b/state-chain/pallets/cf-chain-tracking/Cargo.toml index 2d294b387b..54db83af2a 100644 --- a/state-chain/pallets/cf-chain-tracking/Cargo.toml +++ b/state-chain/pallets/cf-chain-tracking/Cargo.toml @@ -29,15 +29,15 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1', default-features = false, optional = true } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2', default-features = false, optional = true } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1' } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2' } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-emissions/Cargo.toml b/state-chain/pallets/cf-emissions/Cargo.toml index 69ef9fd45b..3f500d4909 100644 --- a/state-chain/pallets/cf-emissions/Cargo.toml +++ b/state-chain/pallets/cf-emissions/Cargo.toml @@ -30,18 +30,18 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] pallet-cf-flip = { path = '../cf-flip' } cf-test-utilities = { path = '../../test-utilities' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-environment/Cargo.toml b/state-chain/pallets/cf-environment/Cargo.toml index 957308f49a..c26f9927e4 100644 --- a/state-chain/pallets/cf-environment/Cargo.toml +++ b/state-chain/pallets/cf-environment/Cargo.toml @@ -32,15 +32,15 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-flip/Cargo.toml b/state-chain/pallets/cf-flip/Cargo.toml index d887643d2b..ac155b978b 100644 --- a/state-chain/pallets/cf-flip/Cargo.toml +++ b/state-chain/pallets/cf-flip/Cargo.toml @@ -26,18 +26,18 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] quickcheck = '1' quickcheck_macros = '1' -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-funding/Cargo.toml b/state-chain/pallets/cf-funding/Cargo.toml index 75d36b6eee..d199ff9b28 100644 --- a/state-chain/pallets/cf-funding/Cargo.toml +++ b/state-chain/pallets/cf-funding/Cargo.toml @@ -30,17 +30,17 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] pallet-cf-flip = { path = '../cf-flip' } cf-test-utilities = { path = '../../test-utilities' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-governance/Cargo.toml b/state-chain/pallets/cf-governance/Cargo.toml index eebd356fc1..fb76e39a2b 100644 --- a/state-chain/pallets/cf-governance/Cargo.toml +++ b/state-chain/pallets/cf-governance/Cargo.toml @@ -24,18 +24,18 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } cf-runtime-upgrade-utilities = { path = '../../runtime-upgrade-utilities', default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-ingress-egress/Cargo.toml b/state-chain/pallets/cf-ingress-egress/Cargo.toml index f64d3943b8..1ab44ee32d 100644 --- a/state-chain/pallets/cf-ingress-egress/Cargo.toml +++ b/state-chain/pallets/cf-ingress-egress/Cargo.toml @@ -28,16 +28,16 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] hex-literal = { version = '0.4.1' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } pallet-cf-governance = { path = '../cf-governance' } cf-test-utilities = { path = '../../test-utilities' } diff --git a/state-chain/pallets/cf-lp/Cargo.toml b/state-chain/pallets/cf-lp/Cargo.toml index a532c3461c..163d8d508e 100644 --- a/state-chain/pallets/cf-lp/Cargo.toml +++ b/state-chain/pallets/cf-lp/Cargo.toml @@ -31,17 +31,17 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] pallet-cf-account-roles = { path = '../cf-account-roles' } cf-test-utilities = { path = '../../test-utilities' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-pools/Cargo.toml b/state-chain/pallets/cf-pools/Cargo.toml index 9ceb8af62d..03cecf275f 100644 --- a/state-chain/pallets/cf-pools/Cargo.toml +++ b/state-chain/pallets/cf-pools/Cargo.toml @@ -32,16 +32,16 @@ scale-info = { version = "2.5.0", default-features = false, features = [ "derive", ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } cf-test-utilities = { path = '../../test-utilities' } [features] diff --git a/state-chain/pallets/cf-reputation/Cargo.toml b/state-chain/pallets/cf-reputation/Cargo.toml index 06ccf7179c..f3fd68e6ae 100644 --- a/state-chain/pallets/cf-reputation/Cargo.toml +++ b/state-chain/pallets/cf-reputation/Cargo.toml @@ -26,20 +26,20 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-staking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-staking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } serde = { version = '1.0.126', features = ['derive'] } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-swapping/Cargo.toml b/state-chain/pallets/cf-swapping/Cargo.toml index 66e2822f08..01e5cf4d48 100644 --- a/state-chain/pallets/cf-swapping/Cargo.toml +++ b/state-chain/pallets/cf-swapping/Cargo.toml @@ -28,19 +28,19 @@ scale-info = { version = "2.5.0", default-features = false, features = [ "derive", ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-arithmetic = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } pallet-cf-account-roles = { path = '../cf-account-roles' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-threshold-signature/Cargo.toml b/state-chain/pallets/cf-threshold-signature/Cargo.toml index b3da94c16d..50b97701a5 100644 --- a/state-chain/pallets/cf-threshold-signature/Cargo.toml +++ b/state-chain/pallets/cf-threshold-signature/Cargo.toml @@ -33,17 +33,17 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] hex-literal = { version = '0.4.1' } cf-test-utilities = { path = '../../test-utilities' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-tokenholder-governance/Cargo.toml b/state-chain/pallets/cf-tokenholder-governance/Cargo.toml index 50194ffc35..92552a7882 100644 --- a/state-chain/pallets/cf-tokenholder-governance/Cargo.toml +++ b/state-chain/pallets/cf-tokenholder-governance/Cargo.toml @@ -26,17 +26,17 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } pallet-cf-flip = { path = '../cf-flip' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-validator/Cargo.toml b/state-chain/pallets/cf-validator/Cargo.toml index 346594e1b2..1dcdda7f25 100644 --- a/state-chain/pallets/cf-validator/Cargo.toml +++ b/state-chain/pallets/cf-validator/Cargo.toml @@ -36,19 +36,19 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-application-crypto = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false, optional = true } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-application-crypto = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false, optional = true } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } lazy_static = "1.4" [features] diff --git a/state-chain/pallets/cf-vaults/Cargo.toml b/state-chain/pallets/cf-vaults/Cargo.toml index 991dba292d..85e3afaced 100644 --- a/state-chain/pallets/cf-vaults/Cargo.toml +++ b/state-chain/pallets/cf-vaults/Cargo.toml @@ -32,17 +32,17 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] hex = { version = '0.4' } cf-test-utilities = { path = '../../test-utilities' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/pallets/cf-witnesser/Cargo.toml b/state-chain/pallets/cf-witnesser/Cargo.toml index c8b0168d58..8824d105b4 100644 --- a/state-chain/pallets/cf-witnesser/Cargo.toml +++ b/state-chain/pallets/cf-witnesser/Cargo.toml @@ -33,16 +33,16 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [dev-dependencies] cf-test-utilities = { path = '../../test-utilities' } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/primitives/Cargo.toml b/state-chain/primitives/Cargo.toml index ef0c812264..639ab10bc9 100644 --- a/state-chain/primitives/Cargo.toml +++ b/state-chain/primitives/Cargo.toml @@ -15,8 +15,8 @@ ethabi = { default-features = false, version = '18.0' } strum = { default-features = false, version = '0.24' } strum_macros = { default-features = false, version = '0.24' } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } codec = { package = 'parity-scale-codec', version = '3.6.1', default-features = false, features = [ 'derive', @@ -26,8 +26,8 @@ scale-info = { version = "2.5.0", default-features = false, features = [ ] } [dev-dependencies] -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [features] default = ['std'] diff --git a/state-chain/runtime-upgrade-utilities/Cargo.toml b/state-chain/runtime-upgrade-utilities/Cargo.toml index c4e9929106..8b0dfd43c7 100644 --- a/state-chain/runtime-upgrade-utilities/Cargo.toml +++ b/state-chain/runtime-upgrade-utilities/Cargo.toml @@ -8,9 +8,9 @@ description = 'Chainflip utilities for runtime upgrades.' [dependencies] log = { version = '0.4.16', default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [features] default = ['std'] diff --git a/state-chain/runtime-utilities/Cargo.toml b/state-chain/runtime-utilities/Cargo.toml index ec213d117f..693e5d55d0 100644 --- a/state-chain/runtime-utilities/Cargo.toml +++ b/state-chain/runtime-utilities/Cargo.toml @@ -13,11 +13,11 @@ codec = { package = 'parity-scale-codec', version = '3.6.1', default-features = 'derive', ] } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } # Not used in this crate but required in order to import sp-io without conflicts. -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [features] default = ['std'] diff --git a/state-chain/runtime/Cargo.toml b/state-chain/runtime/Cargo.toml index d644597dbb..cc04345f82 100644 --- a/state-chain/runtime/Cargo.toml +++ b/state-chain/runtime/Cargo.toml @@ -12,7 +12,7 @@ repository = 'https://github.com/chainflip-io/chainflip-backend' targets = ['x86_64-unknown-linux-gnu'] [build-dependencies] -substrate-wasm-builder = { version = "5.0.0-dev", git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+1', optional = true } +substrate-wasm-builder = { version = "5.0.0-dev", git = 'https://github.com/chainflip-io/substrate.git', tag = 'chainflip-monthly-2023-08+2', optional = true } [dependencies] hex-literal = "0.4.1" @@ -60,41 +60,41 @@ scale-info = { version = '2.5.0', default-features = false, features = [ ] } # Additional FRAME pallets -pallet-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false, features = [ +pallet-authorship = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false, features = [ 'historical', ] } # Substrate dependencies -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } -frame-executive = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true, default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } +frame-executive = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true, default-features = false } -pallet-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +pallet-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-timestamp = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-transaction-payment = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { version = "8.0.0", git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-block-builder = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-consensus-aura = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-consensus-grandpa = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-inherents = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-offchain = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-session = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { version = "8.0.0", git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-transaction-pool = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-version = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -frame-try-runtime = { optional = true, tag = 'chainflip-monthly-2023-08+1', default-features = false, git = 'https://github.com/chainflip-io/substrate.git' } +frame-try-runtime = { optional = true, tag = 'chainflip-monthly-2023-08+2', default-features = false, git = 'https://github.com/chainflip-io/substrate.git' } # Used for RPCs -frame-system-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-system-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } cf-test-utilities = { path = '../test-utilities', optional = true } diff --git a/state-chain/test-utilities/Cargo.toml b/state-chain/test-utilities/Cargo.toml index 722a0d8564..aead3f5198 100644 --- a/state-chain/test-utilities/Cargo.toml +++ b/state-chain/test-utilities/Cargo.toml @@ -8,12 +8,12 @@ description = 'Chainflip test utilities used in multiple crates' [dependencies] codec = { package = 'parity-scale-codec', version = '3.6.1' } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1" } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-core = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2" } [dev-dependencies] scale-info = { version = "2.5.0", features = ["derive"] } diff --git a/state-chain/traits/Cargo.toml b/state-chain/traits/Cargo.toml index 35be43fe01..7e6b1071a7 100644 --- a/state-chain/traits/Cargo.toml +++ b/state-chain/traits/Cargo.toml @@ -20,13 +20,13 @@ scale-info = { version = '2.5.0', default-features = false, features = [ 'derive', ] } -frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false, optional = true } -frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +frame-benchmarking = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false, optional = true } +frame-support = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +frame-system = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } -sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } -sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", default-features = false } +sp-io = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-runtime = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } +sp-std = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", default-features = false } [features] default = ['std'] diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 95ebdd4656..c2d71788c1 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -31,7 +31,7 @@ tracing-subscriber = { version = "0.3", features = [ ], optional = true } pin-project = { version = "1.0.12", optional = true } warp = { version = "0.3.5", optional = true } -sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+1", optional = true } +sp-rpc = { git = "https://github.com/chainflip-io/substrate.git", tag = "chainflip-monthly-2023-08+2", optional = true } num-traits = { version = "0.2", optional = true } scopeguard = { version = "1.2.0" } jsonrpsee = { version = "0.20", features = [ From a655c2a3a97b4321a34ceeafcc70370e74c59d81 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 14 Sep 2023 15:06:22 +0200 Subject: [PATCH 2/2] fix: cargo audit --- .cargo/config.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.cargo/config.toml b/.cargo/config.toml index 437eca598b..b521701afd 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -34,6 +34,8 @@ tree --no-default-features --depth 1 --edges=features,normal # - RUSTSEC-2022-0093: This advisory is related to ed25519-dalek's public api design, which we don't expose. # - RUSTSEC-2023-0052: This advisory comes from webpki, a dependency of ethers-rs. CPU denial of service in certificate path building. # - RUSTSEC-2023-0053: This advisory comes from rustls-webpki, a dependency of ethers-rs. CPU denial of service in certificate path building. +# - RUSTSEC-2021-0060: This is a transitive dependency of libp2p and will be fixed in an upcoming release. +# - RUSTSEC-2021-0059: This is a transitive dependency of libp2p and will be fixed in an upcoming release. cf-audit = ''' audit --ignore RUSTSEC-2022-0061 --ignore RUSTSEC-2020-0071 @@ -43,4 +45,6 @@ audit --ignore RUSTSEC-2022-0061 --ignore RUSTSEC-2022-0093 --ignore RUSTSEC-2023-0052 --ignore RUSTSEC-2023-0053 + --ignore RUSTSEC-2021-0060 + --ignore RUSTSEC-2021-0059 '''