From ffb18053fa363c84e3e4749641a98843f1556421 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Jul 2022 03:48:51 +0000 Subject: [PATCH] Bump async-std from 1.9.0 to 1.12.0 Bumps [async-std](https://github.com/async-rs/async-std) from 1.9.0 to 1.12.0. - [Release notes](https://github.com/async-rs/async-std/releases) - [Changelog](https://github.com/async-rs/async-std/blob/main/CHANGELOG.md) - [Commits](https://github.com/async-rs/async-std/compare/v1.9.0...v1.12.0) --- updated-dependencies: - dependency-name: async-std dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 ++++--- bin/node/cli/Cargo.toml | 2 +- client/network-gossip/Cargo.toml | 2 +- client/network/Cargo.toml | 2 +- client/network/test/Cargo.toml | 2 +- client/service/Cargo.toml | 2 +- utils/prometheus/Cargo.toml | 2 +- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 377059ba220c0..88622b96a0723 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,5 +1,7 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. +version = 3 + [[package]] name = "Inflector" version = "0.11.4" @@ -293,9 +295,9 @@ dependencies = [ [[package]] name = "async-std" -version = "1.9.0" +version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9f06685bad74e0570f5213741bea82158279a4103d988e57bfada11ad230341" +checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" dependencies = [ "async-attributes", "async-channel", @@ -312,7 +314,6 @@ dependencies = [ "kv-log-macro", "log", "memchr", - "num_cpus", "once_cell", "pin-project-lite 0.2.6", "pin-utils", diff --git a/bin/node/cli/Cargo.toml b/bin/node/cli/Cargo.toml index 9fcd0875e8dca..e7cce36ed83c2 100644 --- a/bin/node/cli/Cargo.toml +++ b/bin/node/cli/Cargo.toml @@ -128,7 +128,7 @@ nix = "0.19" serde_json = "1.0" regex = "1" platforms = "1.1" -async-std = { version = "1.6.5", features = ["attributes"] } +async-std = { version = "1.12.0", features = ["attributes"] } soketto = "0.4.2" [build-dependencies] diff --git a/client/network-gossip/Cargo.toml b/client/network-gossip/Cargo.toml index fc5fb9a29ce96..d3f19745dff48 100644 --- a/client/network-gossip/Cargo.toml +++ b/client/network-gossip/Cargo.toml @@ -27,7 +27,7 @@ wasm-timer = "0.2" tracing = "0.1.25" [dev-dependencies] -async-std = "1.6.5" +async-std = "1.12.0" quickcheck = "1.0.3" rand = "0.7.2" substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } diff --git a/client/network/Cargo.toml b/client/network/Cargo.toml index 3740ebceb6389..7dec93e00ff18 100644 --- a/client/network/Cargo.toml +++ b/client/network/Cargo.toml @@ -18,7 +18,7 @@ prost-build = "0.7" [dependencies] async-trait = "0.1" -async-std = "1.6.5" +async-std = "1.12.0" bitflags = "1.2.0" bs58 = "0.4.0" cid = "0.6.0" diff --git a/client/network/test/Cargo.toml b/client/network/test/Cargo.toml index 18a8d5cf8ca0a..4daa44805be68 100644 --- a/client/network/test/Cargo.toml +++ b/client/network/test/Cargo.toml @@ -13,7 +13,7 @@ repository = "https://github.com/paritytech/substrate/" targets = ["x86_64-unknown-linux-gnu"] [dependencies] -async-std = "1.6.5" +async-std = "1.12.0" sc-network = { version = "0.9.0", path = "../" } log = "0.4.8" parking_lot = "0.11.1" diff --git a/client/service/Cargo.toml b/client/service/Cargo.toml index cff05390d7874..0d3f8a6aa2878 100644 --- a/client/service/Cargo.toml +++ b/client/service/Cargo.toml @@ -91,4 +91,4 @@ sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../finality-grandpa" } grandpa-primitives = { version = "3.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" } tokio = { version = "0.2.25", default-features = false } -async-std = { version = "1.6.5", default-features = false } +async-std = { version = "1.12.0", default-features = false } diff --git a/utils/prometheus/Cargo.toml b/utils/prometheus/Cargo.toml index a7f90e831620b..f1d20952c8c8e 100644 --- a/utils/prometheus/Cargo.toml +++ b/utils/prometheus/Cargo.toml @@ -19,6 +19,6 @@ futures-util = { version = "0.3.1", default-features = false, features = ["io"] derive_more = "0.99" [target.'cfg(not(target_os = "unknown"))'.dependencies] -async-std = { version = "1.6.5", features = ["unstable"] } +async-std = { version = "1.12.0", features = ["unstable"] } hyper = { version = "0.13.9", default-features = false, features = ["stream"] } tokio = "0.2"