diff --git a/polkadot/Cargo.lock b/polkadot/Cargo.lock index 5c7aa91f60..8bd8371c87 100644 --- a/polkadot/Cargo.lock +++ b/polkadot/Cargo.lock @@ -1467,14 +1467,14 @@ dependencies = [ [[package]] name = "derive_more" -version = "0.99.16" +version = "0.99.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40eebddd2156ce1bb37b20bbe5151340a31828b1f2d22ba4141f3531710e38df" +checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" dependencies = [ "convert_case", "proc-macro2", "quote", - "rustc_version 0.3.3", + "rustc_version 0.4.0", "syn", ] diff --git a/polkadot/node/core/approval-voting/Cargo.toml b/polkadot/node/core/approval-voting/Cargo.toml index f1d3b71da9..b8e812cfde 100644 --- a/polkadot/node/core/approval-voting/Cargo.toml +++ b/polkadot/node/core/approval-voting/Cargo.toml @@ -14,7 +14,7 @@ lru = "0.7" merlin = "2.0" schnorrkel = "0.9.1" kvdb = "0.10.0" -derive_more = "0.99.14" +derive_more = "0.99.17" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-node-subsystem-util = { path = "../../subsystem-util" } diff --git a/polkadot/node/core/dispute-coordinator/Cargo.toml b/polkadot/node/core/dispute-coordinator/Cargo.toml index aa521b9dc5..65f7f21a82 100644 --- a/polkadot/node/core/dispute-coordinator/Cargo.toml +++ b/polkadot/node/core/dispute-coordinator/Cargo.toml @@ -10,7 +10,7 @@ futures = "0.3.17" tracing = "0.1.29" parity-scale-codec = "2" kvdb = "0.10.0" -derive_more = "0.99.14" +derive_more = "0.99.17" thiserror = "1.0.30" polkadot-primitives = { path = "../../../primitives" } diff --git a/polkadot/node/network/availability-distribution/Cargo.toml b/polkadot/node/network/availability-distribution/Cargo.toml index 29deac9ce9..c8decbfc0d 100644 --- a/polkadot/node/network/availability-distribution/Cargo.toml +++ b/polkadot/node/network/availability-distribution/Cargo.toml @@ -18,7 +18,7 @@ sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.30" rand = "0.8.3" -derive_more = "0.99.11" +derive_more = "0.99.17" lru = "0.7.0" [dev-dependencies] diff --git a/polkadot/node/network/collator-protocol/Cargo.toml b/polkadot/node/network/collator-protocol/Cargo.toml index 4a43df113e..1501c290e0 100644 --- a/polkadot/node/network/collator-protocol/Cargo.toml +++ b/polkadot/node/network/collator-protocol/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" [dependencies] always-assert = "0.1.2" -derive_more = "0.99.14" +derive_more = "0.99.17" futures = "0.3.17" futures-timer = "3" thiserror = "1.0.30" diff --git a/polkadot/node/network/dispute-distribution/Cargo.toml b/polkadot/node/network/dispute-distribution/Cargo.toml index fc22eada76..bd4bba81b3 100644 --- a/polkadot/node/network/dispute-distribution/Cargo.toml +++ b/polkadot/node/network/dispute-distribution/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" [dependencies] futures = "0.3.17" tracing = "0.1.29" -derive_more = "0.99.14" +derive_more = "0.99.17" parity-scale-codec = { version = "2.3.1", features = ["std"] } polkadot-primitives = { path = "../../../primitives" } polkadot-erasure-coding = { path = "../../../erasure-coding" } diff --git a/polkadot/node/network/protocol/Cargo.toml b/polkadot/node/network/protocol/Cargo.toml index 585bf42b81..63c1185f02 100644 --- a/polkadot/node/network/protocol/Cargo.toml +++ b/polkadot/node/network/protocol/Cargo.toml @@ -14,6 +14,6 @@ parity-scale-codec = { version = "2.3.1", default-features = false, features = [ sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" } sc-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" } strum = { version = "0.23", features = ["derive"] } -derive_more = "0.99.11" +derive_more = "0.99.17" futures = "0.3.17" thiserror = "1.0.30" diff --git a/polkadot/node/network/statement-distribution/Cargo.toml b/polkadot/node/network/statement-distribution/Cargo.toml index 4454064dfb..2d134294b0 100644 --- a/polkadot/node/network/statement-distribution/Cargo.toml +++ b/polkadot/node/network/statement-distribution/Cargo.toml @@ -18,7 +18,7 @@ polkadot-node-network-protocol = { path = "../../network/protocol" } arrayvec = "0.5.2" indexmap = "1.7.0" parity-scale-codec = { version = "2.3.1", default-features = false, features = ["derive"] } -derive_more = "0.99.11" +derive_more = "0.99.17" thiserror = "1.0.30" [dev-dependencies] diff --git a/polkadot/node/subsystem-types/Cargo.toml b/polkadot/node/subsystem-types/Cargo.toml index 72aac5ac0d..6c1014024c 100644 --- a/polkadot/node/subsystem-types/Cargo.toml +++ b/polkadot/node/subsystem-types/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" description = "Subsystem traits and message definitions" [dependencies] -derive_more = "0.99.11" +derive_more = "0.99.17" futures = "0.3.17" polkadot-primitives = { path = "../../primitives" } polkadot-node-primitives = { path = "../primitives" } diff --git a/polkadot/node/subsystem-util/Cargo.toml b/polkadot/node/subsystem-util/Cargo.toml index 7e0b1ccb8c..c29d161b40 100644 --- a/polkadot/node/subsystem-util/Cargo.toml +++ b/polkadot/node/subsystem-util/Cargo.toml @@ -14,7 +14,7 @@ pin-project = "1.0.8" rand = "0.8.3" thiserror = "1.0.30" tracing = "0.1.29" -derive_more = "0.99.11" +derive_more = "0.99.17" lru = "0.7.0" polkadot-node-subsystem = { package = "polkadot-node-subsystem", path = "../subsystem" } diff --git a/polkadot/runtime/parachains/Cargo.toml b/polkadot/runtime/parachains/Cargo.toml index 827c7c88fb..6a73f1f8ff 100644 --- a/polkadot/runtime/parachains/Cargo.toml +++ b/polkadot/runtime/parachains/Cargo.toml @@ -11,7 +11,7 @@ log = { version = "0.4.14", default-features = false } rustc-hex = { version = "2.1.0", default-features = false } scale-info = { version = "1.0", default-features = false, features = ["derive"] } serde = { version = "1.0.130", features = [ "derive" ], optional = true } -derive_more = "0.99.14" +derive_more = "0.99.17" bitflags = "1.3.2" sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }