diff --git a/cumulus b/cumulus index 179759da7..7ca7ba411 160000 --- a/cumulus +++ b/cumulus @@ -1 +1 @@ -Subproject commit 179759da70109b33fcd6bb2e7afc79871b223eeb +Subproject commit 7ca7ba411f2b90c0ab74178496fad330834e6cd1 diff --git a/parachain/Cargo.lock b/parachain/Cargo.lock index efb63f920..e9777ce15 100644 --- a/parachain/Cargo.lock +++ b/parachain/Cargo.lock @@ -3320,9 +3320,9 @@ checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed" [[package]] name = "serde" -version = "1.0.159" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065" +checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c" dependencies = [ "serde_derive", ] @@ -3349,9 +3349,9 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.159" +version = "1.0.160" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585" +checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df" dependencies = [ "proc-macro2", "quote", @@ -3360,9 +3360,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.95" +version = "1.0.96" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744" +checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" dependencies = [ "itoa", "ryu", diff --git a/parachain/pallets/ethereum-beacon-client/Cargo.toml b/parachain/pallets/ethereum-beacon-client/Cargo.toml index 0dd05f38a..1f232a5d7 100644 --- a/parachain/pallets/ethereum-beacon-client/Cargo.toml +++ b/parachain/pallets/ethereum-beacon-client/Cargo.toml @@ -11,7 +11,7 @@ license = "PENDING/TBC" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -serde = { version = "1.0.159", optional = true } +serde = { version = "1.0.160", optional = true } codec = { version = "3.1.5", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } milagro_bls = { git = "https://github.com/Snowfork/milagro_bls", default-features = false } @@ -19,7 +19,7 @@ ssz-rs = { git = "https://github.com/ralexstokes/ssz-rs", default-features = fal ssz-rs-derive = { git = "https://github.com/ralexstokes/ssz-rs", default-features = false, rev="d18af912abacbf84219be37ab3b42a9abcf10d2a" } byte-slice-cast = { version = "1.2.1", default-features = false } rlp = { version = "0.5", default-features = false } -hex-literal = { version = "0.4.0", optional = true } +hex-literal = { version = "0.4.1", optional = true } frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false, optional = true } frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } @@ -36,8 +36,8 @@ snowbridge-beacon-primitives = { path = "../../primitives/beacon", default-featu [dev-dependencies] sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } snowbridge-testutils = { path = "../../primitives/testutils" } -serde_json = "1.0.95" -hex-literal = { version = "0.4.0" } +serde_json = "1.0.96" +hex-literal = { version = "0.4.1" } pallet-timestamp = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } [features] diff --git a/parachain/pallets/inbound-queue/Cargo.toml b/parachain/pallets/inbound-queue/Cargo.toml index e4ad169fa..edee5d02b 100644 --- a/parachain/pallets/inbound-queue/Cargo.toml +++ b/parachain/pallets/inbound-queue/Cargo.toml @@ -10,10 +10,10 @@ repository = "https://github.com/Snowfork/snowbridge" targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -serde = { version = "1.0.159", optional = true } +serde = { version = "1.0.160", optional = true } codec = { version = "3.1.5", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } -scale-info = { version = "2.2.0", default-features = false, features = [ "derive" ] } -hex-literal = { version = "0.4.0", optional = true } +scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } +hex-literal = { version = "0.4.1", optional = true } rlp = { version = "0.5", default-features = false, optional = true } frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false, optional = true } @@ -38,7 +38,7 @@ ethabi = { git = "https://github.com/Snowfork/ethabi-decode.git", package = "eth frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -hex-literal = { version = "0.4.0" } +hex-literal = { version = "0.4.1" } rlp = { version = "0.5" } [features] diff --git a/parachain/pallets/outbound-queue/Cargo.toml b/parachain/pallets/outbound-queue/Cargo.toml index 87d085995..f370d5a2c 100644 --- a/parachain/pallets/outbound-queue/Cargo.toml +++ b/parachain/pallets/outbound-queue/Cargo.toml @@ -10,10 +10,10 @@ repository = "https://github.com/Snowfork/snowbridge" targets = [ "x86_64-unknown-linux-gnu" ] [dependencies] -serde = { version = "1.0.159", optional = true } +serde = { version = "1.0.160", optional = true } codec = { version = "3.1.5", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } -hex-literal = { version = "0.4.0", optional = true } +hex-literal = { version = "0.4.1", optional = true } rlp = { version = "0.5", default-features = false, optional = true } frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false, optional = true } @@ -33,7 +33,7 @@ ethabi = { git = "https://github.com/Snowfork/ethabi-decode.git", package = "eth [dev-dependencies] frame-benchmarking = { git = "https://github.com/paritytech/substrate.git", branch = "master" } sp-keyring = { git = "https://github.com/paritytech/substrate.git", branch = "master" } -hex-literal = { version = "0.4.0" } +hex-literal = { version = "0.4.1" } rlp = { version = "0.5" } [features] diff --git a/parachain/pallets/outbound-queue/merkle-proof/Cargo.toml b/parachain/pallets/outbound-queue/merkle-proof/Cargo.toml index af7997c33..26c25f6e2 100644 --- a/parachain/pallets/outbound-queue/merkle-proof/Cargo.toml +++ b/parachain/pallets/outbound-queue/merkle-proof/Cargo.toml @@ -16,7 +16,7 @@ sp-core = { git = "https://github.com/paritytech/substrate.git", branch = "maste sp-runtime = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } [dev-dependencies] -hex-literal = { version = "0.4.0" } +hex-literal = { version = "0.4.1" } env_logger = "0.9" hex = "0.4" array-bytes = "4.1" diff --git a/parachain/pallets/outbound-queue/rpc/Cargo.toml b/parachain/pallets/outbound-queue/rpc/Cargo.toml index 38101a844..20b0d128a 100644 --- a/parachain/pallets/outbound-queue/rpc/Cargo.toml +++ b/parachain/pallets/outbound-queue/rpc/Cargo.toml @@ -20,5 +20,5 @@ parking_lot = "0.11.0" snowbridge-outbound-queue-merkle-proof = { path = "../merkle-proof" } [dev-dependencies] -serde_json = "1.0.79" +serde_json = "1.0.96" hex = "0.4.3" diff --git a/parachain/primitives/beacon/Cargo.toml b/parachain/primitives/beacon/Cargo.toml index 25fd9459d..ddc9dc709 100644 --- a/parachain/primitives/beacon/Cargo.toml +++ b/parachain/primitives/beacon/Cargo.toml @@ -5,7 +5,7 @@ authors = [ "Snowfork " ] edition = "2021" [dependencies] -serde = { version = "1.0.159", optional = true, features = [ "derive" ] } +serde = { version = "1.0.160", optional = true, features = [ "derive" ] } hex = { version = "0.4", default-features = false } codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } diff --git a/parachain/primitives/core/Cargo.toml b/parachain/primitives/core/Cargo.toml index ea59d18d5..b2350fd25 100644 --- a/parachain/primitives/core/Cargo.toml +++ b/parachain/primitives/core/Cargo.toml @@ -5,7 +5,7 @@ authors = [ "Snowfork " ] edition = "2021" [dependencies] -serde = { version = "1.0.159", optional = true, features = [ "derive" ] } +serde = { version = "1.0.160", optional = true, features = [ "derive" ] } codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } snowbridge-ethereum = { path = "../ethereum", default-features = false } diff --git a/parachain/primitives/ethereum/Cargo.toml b/parachain/primitives/ethereum/Cargo.toml index 6979613bd..be7825375 100644 --- a/parachain/primitives/ethereum/Cargo.toml +++ b/parachain/primitives/ethereum/Cargo.toml @@ -5,14 +5,14 @@ authors = [ "Snowfork " ] edition = "2021" [dependencies] -serde = { version = "1.0.159", optional = true } +serde = { version = "1.0.160", optional = true } serde-big-array = { version = "0.3.2", optional = true, features = [ "const-generics" ] } codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false, features = [ "derive" ] } scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } ethbloom = { version = "0.13.0", default-features = false } ethereum-types = { version = "0.14.1", default-features = false, features = [ "codec", "rlp", "serialize" ] } hex = { package = "rustc-hex", version = "2.1.0", default-features = false } -hex-literal = { version = "0.4.0", default-features = false } +hex-literal = { version = "0.4.1", default-features = false } parity-bytes = { version = "0.1.2", default-features = false } rlp = { version = "0.5", default-features = false } #getrandom = { version = "0.2.1", features = [ "js" ] } @@ -28,8 +28,8 @@ ethabi = { git = "https://github.com/snowfork/ethabi-decode.git", package = "eth wasm-bindgen-test = "0.3.19" snowbridge-testutils = { path = "../../primitives/testutils" } rand = "0.8.5" -serde = { version = "1.0.159", features = [ "derive" ] } -serde_json = "1.0.95" +serde = { version = "1.0.160", features = [ "derive" ] } +serde_json = "1.0.96" [features] default = [ "std" ] diff --git a/parachain/primitives/router/Cargo.toml b/parachain/primitives/router/Cargo.toml index e255960b9..fe788a76a 100644 --- a/parachain/primitives/router/Cargo.toml +++ b/parachain/primitives/router/Cargo.toml @@ -5,9 +5,9 @@ authors = [ "Snowfork " ] edition = "2021" [dependencies] -serde = { version = "1.0.159", optional = true, features = [ "derive" ] } +serde = { version = "1.0.160", optional = true, features = [ "derive" ] } codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false } -scale-info = { version = "2.2.0", default-features = false, features = [ "derive" ] } +scale-info = { version = "2.5.0", default-features = false, features = [ "derive" ] } frame-support = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } frame-system = { git = "https://github.com/paritytech/substrate.git", branch = "master", default-features = false } diff --git a/parachain/primitives/testutils/Cargo.toml b/parachain/primitives/testutils/Cargo.toml index a95ad3079..e3095f2f8 100644 --- a/parachain/primitives/testutils/Cargo.toml +++ b/parachain/primitives/testutils/Cargo.toml @@ -7,5 +7,5 @@ edition = "2021" [dependencies] ethereum-types = { version = "0.14.1", default-features = false } hex = { package = "rustc-hex", version = "2.1.0", default-features = false } -serde = { version = "1.0.144", features = [ "derive" ] } -serde_json = "1.0.95" +serde = { version = "1.0.160", features = [ "derive" ] } +serde_json = "1.0.96" diff --git a/parachain/tools/query-events/Cargo.toml b/parachain/tools/query-events/Cargo.toml index 6b1f7001e..fa04540be 100644 --- a/parachain/tools/query-events/Cargo.toml +++ b/parachain/tools/query-events/Cargo.toml @@ -4,8 +4,8 @@ version = "0.1.0" edition = "2021" [dependencies] -serde = "1.0.159" -serde_json = "1.0.81" +serde = "1.0.160" +serde_json = "1.0.96" serde-hex = "0.1.0" clap = { version = "4.1.11", features = [ "derive" ] } subxt = { git = "https://github.com/paritytech/subxt.git", rev = "0b2c31e3038ed061e22d06e0dbb6105e508aecff" } @@ -13,7 +13,7 @@ codec = { version = "3.1.5", package = "parity-scale-codec", features = [ "deriv tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] } futures = "0.3.13" hex = "0.4.3" -hex-literal = "0.4.0" +hex-literal = "0.4.1" [features] default = ["parachain-snowbase"]