diff --git a/Cargo.lock b/Cargo.lock index 4ff3d08cb..10292efd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7086,22 +7086,22 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" [[package]] name = "serde" -version = "1.0.157" +version = "1.0.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "707de5fcf5df2b5788fca98dd7eab490bc2fd9b7ef1404defc462833b83f25ca" +checksum = "771d4d9c4163ee138805e12c710dd365e4f44be8be0503cb1bb9eb989425d9c9" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.157" +version = "1.0.158" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78997f4555c22a7971214540c4a661291970619afd56de19f77e0de86296e1e5" +checksum = "e801c1712f48475582b7696ac71e0ca34ebb30e09338425384269d9717c62cad" dependencies = [ "proc-macro2", "quote", - "syn 2.0.2", + "syn 2.0.3", ] [[package]] @@ -8179,9 +8179,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.2" +version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d3276aee1fa0c33612917969b5172b5be2db051232a6e4826f1a1a9191b045" +checksum = "e8234ae35e70582bfa0f1fedffa6daa248e41dd045310b19800c4a36382c8f60" dependencies = [ "proc-macro2", "quote", diff --git a/pallets/doas/Cargo.toml b/pallets/doas/Cargo.toml index 3afb2644d..ea2a51055 100644 --- a/pallets/doas/Cargo.toml +++ b/pallets/doas/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -serde = { version = "1.0.157", optional = true } +serde = { version = "1.0.158", optional = true } scale-info = { version = "2.3.1", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] } frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } diff --git a/pallets/process-validation/Cargo.toml b/pallets/process-validation/Cargo.toml index 7ffa8df52..19c65b440 100644 --- a/pallets/process-validation/Cargo.toml +++ b/pallets/process-validation/Cargo.toml @@ -12,7 +12,7 @@ version = "3.4.0" targets = ['x86_64-unknown-linux-gnu'] [dependencies] -serde = { version = "1.0.157", optional = true } +serde = { version = "1.0.158", optional = true } scale-info = { version = "2.3.1", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] } dscp-pallet-traits = { default-features = false, path = '../traits' } diff --git a/pallets/simple-nft/Cargo.toml b/pallets/simple-nft/Cargo.toml index 60df317f0..37ad63fae 100644 --- a/pallets/simple-nft/Cargo.toml +++ b/pallets/simple-nft/Cargo.toml @@ -24,7 +24,7 @@ sp-std = { default-features = false, version = "5.0.0", git = "https://github.co [dev-dependencies] -serde = { version = "1.0.157" } +serde = { version = "1.0.158" } sp-core = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } diff --git a/pallets/symmetric-key/Cargo.toml b/pallets/symmetric-key/Cargo.toml index 1af25a3e5..7d296a471 100644 --- a/pallets/symmetric-key/Cargo.toml +++ b/pallets/symmetric-key/Cargo.toml @@ -21,7 +21,7 @@ sp-io = { default-features = false, version = "7.0.0", git = "https://github.com sp-std = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } [dev-dependencies] -serde = { version = "1.0.157" } +serde = { version = "1.0.158" } frame-support-test = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } pallet-scheduler = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-core = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } diff --git a/pallets/transaction-payment-free/Cargo.toml b/pallets/transaction-payment-free/Cargo.toml index 3b81c87c2..1821b622c 100644 --- a/pallets/transaction-payment-free/Cargo.toml +++ b/pallets/transaction-payment-free/Cargo.toml @@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] scale-info = { version = "2.3.1", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] } -serde = { version = "1.0.157", optional = true } +serde = { version = "1.0.158", optional = true } sp-std = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } sp-runtime = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index f4c96b770..64446239d 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -65,7 +65,7 @@ pallet-process-validation = { default-features = false, package = 'pallet-proces pallet-symmetric-key = { default-features = false, package = 'pallet-symmetric-key', path = '../pallets/symmetric-key' } pallet-transaction-payment-free = { default-features = false, package = 'pallet-transaction-payment-free', path = '../pallets/transaction-payment-free' } -serde = { version = "1.0.157" } +serde = { version = "1.0.158" } [build-dependencies] substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.39" }