From 992c45f77591b281dd49d32c370bb8aba59c8594 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Jan 2023 18:38:46 +0000 Subject: [PATCH] Bump async-trait from 0.1.58 to 0.1.64 Bumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.58 to 0.1.64. - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](https://github.com/dtolnay/async-trait/compare/0.1.58...0.1.64) --- updated-dependencies: - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- node/client/Cargo.toml | 2 +- node/core/approval-voting/Cargo.toml | 2 +- node/core/candidate-validation/Cargo.toml | 2 +- node/core/parachains-inherent/Cargo.toml | 2 +- node/malus/Cargo.toml | 2 +- node/network/bridge/Cargo.toml | 2 +- node/network/dispute-distribution/Cargo.toml | 2 +- node/network/gossip-support/Cargo.toml | 2 +- node/network/protocol/Cargo.toml | 2 +- node/overseer/Cargo.toml | 2 +- node/service/Cargo.toml | 2 +- node/subsystem-test-helpers/Cargo.toml | 2 +- node/subsystem-types/Cargo.toml | 2 +- node/subsystem-util/Cargo.toml | 2 +- 15 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cad29e3b3f94..af429df2de3e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -353,9 +353,9 @@ dependencies = [ [[package]] name = "async-trait" -version = "0.1.58" +version = "0.1.64" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c" +checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2" dependencies = [ "proc-macro2", "quote", @@ -12335,7 +12335,7 @@ checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" dependencies = [ "cfg-if", "digest 0.10.3", - "rand 0.7.3", + "rand 0.8.5", "static_assertions", ] diff --git a/node/client/Cargo.toml b/node/client/Cargo.toml index b07447ef3396..8ae3530a5e88 100644 --- a/node/client/Cargo.toml +++ b/node/client/Cargo.toml @@ -5,7 +5,7 @@ authors.workspace = true edition.workspace = true [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" futures = "0.3.21" frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index 75737f9a2fb0..bcb86038e6e7 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -31,7 +31,7 @@ sp-application-crypto = { git = "https://github.com/paritytech/substrate", branc sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } [dev-dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" parking_lot = "0.12.0" rand_core = "0.5.1" # should match schnorrkel sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index 28731e1f25b8..79e67be1b640 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -5,7 +5,7 @@ authors.workspace = true edition.workspace = true [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" futures = "0.3.21" futures-timer = "3.0.2" gum = { package = "tracing-gum", path = "../../gum" } diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index d4301cb22270..6223290c7213 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -9,7 +9,7 @@ futures = "0.3.21" futures-timer = "3.0.2" gum = { package = "tracing-gum", path = "../../gum" } thiserror = "1.0.31" -async-trait = "0.1.57" +async-trait = "0.1.64" polkadot-node-subsystem = { path = "../../subsystem" } polkadot-overseer = { path = "../../overseer" } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index c783693ca527..07c969681a0e 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -25,7 +25,7 @@ polkadot-primitives = { path = "../../primitives" } polkadot-node-core-pvf = { path = "../core/pvf" } color-eyre = { version = "0.6.1", default-features = false } assert_matches = "1.5" -async-trait = "0.1.57" +async-trait = "0.1.64" sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } clap = { version = "4.0.9", features = ["derive"] } diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index 2d68cdb4d808..d374ca2744ba 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true [dependencies] always-assert = "0.1" -async-trait = "0.1.57" +async-trait = "0.1.64" futures = "0.3.21" gum = { package = "tracing-gum", path = "../../gum" } polkadot-primitives = { path = "../../../primitives" } diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index f3f9a9133769..4d9ca8187a27 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -25,7 +25,7 @@ lru = "0.9.0" indexmap = "1.9.1" [dev-dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index 2236b72d3c77..93ec9a3973d6 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -30,5 +30,5 @@ sp-authority-discovery = { git = "https://github.com/paritytech/substrate", bran polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" } assert_matches = "1.4.0" -async-trait = "0.1.57" +async-trait = "0.1.64" lazy_static = "1.4.0" diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index 2cfe1ce58e61..0b385061caa9 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true description = "Primitives types for the Node-side" [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" hex = "0.4.3" polkadot-primitives = { path = "../../../primitives" } polkadot-node-primitives = { path = "../../primitives" } diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index 262eddeec61e..86db7b9cf4c6 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -19,7 +19,7 @@ orchestra = "0.0.4" gum = { package = "tracing-gum", path = "../gum" } lru = "0.9" sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } -async-trait = "0.1.57" +async-trait = "0.1.64" tikv-jemalloc-ctl = "0.5.0" [dev-dependencies] diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index 58298481444e..d4a35c82d1d5 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -76,7 +76,7 @@ kvdb = "0.13.0" kvdb-rocksdb = { version = "0.17.0", optional = true } parity-db = { version = "0.4.3", optional = true } -async-trait = "0.1.57" +async-trait = "0.1.64" lru = "0.9" log = "0.4.17" diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 41c48d7f31e1..4e7b1d222301 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -6,7 +6,7 @@ authors.workspace = true edition.workspace = true [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" futures = "0.3.21" parking_lot = "0.12.0" polkadot-node-subsystem = { path = "../subsystem" } diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 22528503ccc4..a1ce7afe8cfb 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -21,4 +21,4 @@ sp-authority-discovery = { git = "https://github.com/paritytech/substrate", bran smallvec = "1.8.0" substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "master" } thiserror = "1.0.31" -async-trait = "0.1.57" +async-trait = "0.1.64" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index a3ab67fe4dd4..839291c66d24 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -6,7 +6,7 @@ authors.workspace = true edition.workspace = true [dependencies] -async-trait = "0.1.57" +async-trait = "0.1.64" futures = "0.3.21" futures-channel = "0.3.23" itertools = "0.10"