From df96ab80320a26f34df13832947ba16dd6b608fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 08:08:49 +0000 Subject: [PATCH] Bump async-std from 1.8.0 to 1.9.0 Bumps [async-std](https://github.com/async-rs/async-std) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/async-rs/async-std/releases) - [Changelog](https://github.com/async-rs/async-std/blob/master/CHANGELOG.md) - [Commits](https://github.com/async-rs/async-std/compare/v1.8.0...v1.9.0) Signed-off-by: dependabot[bot] --- Cargo.lock | 23 +++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7189b1a2..abd9ac1a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -166,12 +166,15 @@ dependencies = [ [[package]] name = "async-global-executor" -version = "1.4.3" +version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73079b49cd26b8fd5a15f68fc7707fc78698dc2a3d61430f2a7a9430230dfa04" +checksum = "9586ec52317f36de58453159d48351bc244bc24ced3effc1fce22f3d48664af6" dependencies = [ + "async-channel", "async-executor", "async-io", + "async-mutex", + "blocking", "futures-lite", "num_cpus", "once_cell", @@ -197,6 +200,15 @@ dependencies = [ "winapi 0.3.9", ] +[[package]] +name = "async-lock" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1996609732bde4a9988bc42125f55f2af5f3c36370e27c778d5191a4a1b63bfb" +dependencies = [ + "event-listener", +] + [[package]] name = "async-mutex" version = "1.4.0" @@ -224,16 +236,15 @@ dependencies = [ [[package]] name = "async-std" -version = "1.8.0" +version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f9f84f1280a2b436a2c77c2582602732b6c2f4321d5494d6e799e6c367859a8" +checksum = "d9f06685bad74e0570f5213741bea82158279a4103d988e57bfada11ad230341" dependencies = [ "async-channel", "async-global-executor", "async-io", - "async-mutex", + "async-lock", "async-process", - "blocking", "crossbeam-utils", "futures-channel", "futures-core", diff --git a/Cargo.toml b/Cargo.toml index d58978b9..c040cc44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ url = { version = "2.2.0", features = ["serde"] } binaryen = "0.12.0" # dependencies for optional extrinsics feature -async-std = { version = "1.8.0", optional = true } +async-std = { version = "1.9.0", optional = true } sp-core = { version = "2.0.1", optional = true } subxt = { version = "0.13.0", package = "substrate-subxt", optional = true } futures = { version = "0.3.11", optional = true } -- GitLab