diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index ef983b1816..5ad9e45a05 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -7948,18 +7948,18 @@ checksum = "f97841a747eef040fcd2e7b3b9a220a7205926e60488e673d9e4926d27772ce5" [[package]] name = "serde" -version = "1.0.120" +version = "1.0.121" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "166b2349061381baf54a58e4b13c89369feb0ef2eaa57198899e2312aac30aab" +checksum = "6159e3c76cab06f6bc466244d43b35e77e9500cd685da87620addadc2a4c40b1" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.120" +version = "1.0.121" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ca2a8cb5805ce9e3b95435e3765b7b553cecc762d938d409434338386cb5775" +checksum = "f3fcab8778dc651bc65cfab2e4eb64996f3c912b74002fb379c94517e1f27c46" dependencies = [ "proc-macro2 1.0.24", "quote 1.0.7", diff --git a/polkadot/node/service/Cargo.toml b/polkadot/node/service/Cargo.toml index 8fc064047b..7444bf3488 100644 --- a/polkadot/node/service/Cargo.toml +++ b/polkadot/node/service/Cargo.toml @@ -58,7 +58,7 @@ futures = "0.3.12" hex-literal = "0.3.1" tracing = "0.1.22" tracing-futures = "0.2.4" -serde = { version = "1.0.120", features = ["derive"] } +serde = { version = "1.0.121", features = ["derive"] } thiserror = "1.0.23" # Polkadot diff --git a/polkadot/primitives/Cargo.toml b/polkadot/primitives/Cargo.toml index e82785bf25..c068ea4fee 100644 --- a/polkadot/primitives/Cargo.toml +++ b/polkadot/primitives/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Parity Technologies "] edition = "2018" [dependencies] -serde = { version = "1.0.120", optional = true, features = ["derive"] } +serde = { version = "1.0.121", optional = true, features = ["derive"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["bit-vec", "derive"] } primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } inherents = { package = "sp-inherents", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/polkadot/runtime/common/Cargo.toml b/polkadot/runtime/common/Cargo.toml index 589606d192..0d92bacdbf 100644 --- a/polkadot/runtime/common/Cargo.toml +++ b/polkadot/runtime/common/Cargo.toml @@ -9,7 +9,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" diff --git a/polkadot/runtime/kusama/Cargo.toml b/polkadot/runtime/kusama/Cargo.toml index 085c16b558..0f23967e31 100644 --- a/polkadot/runtime/kusama/Cargo.toml +++ b/polkadot/runtime/kusama/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.6.1" diff --git a/polkadot/runtime/parachains/Cargo.toml b/polkadot/runtime/parachains/Cargo.toml index ae56c7b2fc..084234fe0c 100644 --- a/polkadot/runtime/parachains/Cargo.toml +++ b/polkadot/runtime/parachains/Cargo.toml @@ -9,7 +9,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = "0.4.13" rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", features = [ "derive" ], optional = true } +serde = { version = "1.0.121", features = [ "derive" ], optional = true } derive_more = "0.99.11" sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/polkadot/runtime/polkadot/Cargo.toml b/polkadot/runtime/polkadot/Cargo.toml index 9d89d90fc5..0f28742752 100644 --- a/polkadot/runtime/polkadot/Cargo.toml +++ b/polkadot/runtime/polkadot/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } static_assertions = "1.1.0" smallvec = "1.6.1" diff --git a/polkadot/runtime/rococo/Cargo.toml b/polkadot/runtime/rococo/Cargo.toml index 2aae7c3cf1..cf9934919f 100644 --- a/polkadot/runtime/rococo/Cargo.toml +++ b/polkadot/runtime/rococo/Cargo.toml @@ -7,7 +7,7 @@ build = "build.rs" [dependencies] parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" hex-literal = "0.3.1" diff --git a/polkadot/runtime/test-runtime/Cargo.toml b/polkadot/runtime/test-runtime/Cargo.toml index 1cbd6cfbcf..6965f4df1d 100644 --- a/polkadot/runtime/test-runtime/Cargo.toml +++ b/polkadot/runtime/test-runtime/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" diff --git a/polkadot/runtime/westend/Cargo.toml b/polkadot/runtime/westend/Cargo.toml index df902036b3..5268ef39c8 100644 --- a/polkadot/runtime/westend/Cargo.toml +++ b/polkadot/runtime/westend/Cargo.toml @@ -10,7 +10,7 @@ bitvec = { version = "0.17.4", default-features = false, features = ["alloc"] } parity-scale-codec = { version = "1.3.6", default-features = false, features = ["derive"] } log = { version = "0.4.13", optional = true } rustc-hex = { version = "2.1.0", default-features = false } -serde = { version = "1.0.120", default-features = false } +serde = { version = "1.0.121", default-features = false } serde_derive = { version = "1.0.117", optional = true } smallvec = "1.6.1" static_assertions = "1.1.0"