From df8b38cb7b9148c98f1f9ad5b65abbc3de25fd07 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Fri, 18 Sep 2020 10:04:35 +0200 Subject: [PATCH 1/2] drop async-task dependency We no longer directly depend on it Signed-off-by: Marc-Antoine Perennou --- Cargo.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c9efe600..ef3be30b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,6 @@ default = [ "std", "async-global-executor", "async-io", - "async-task", "blocking", "futures-lite", "kv-log-macro", @@ -62,7 +61,6 @@ tokio02 = ["tokio"] [dependencies] async-attributes = { version = "1.1.1", optional = true } -async-task = { version = "3.0.0", optional = true } async-mutex = { version = "1.1.3", optional = true } crossbeam-utils = { version = "0.7.2", optional = true } futures-core = { version = "0.3.4", optional = true, default-features = false } From 67b9a210b345bb004443a5eb57a350b5aec87528 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Perennou Date: Fri, 18 Sep 2020 10:05:09 +0200 Subject: [PATCH 2/2] update async-global-executor make sure we pull in the deadlock fix Signed-off-by: Marc-Antoine Perennou --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ef3be30b..6ea6275d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ slab = { version = "0.4.2", optional = true } surf = { version = "1.0.3", optional = true } [target.'cfg(not(target_os = "unknown"))'.dependencies] -async-global-executor = { version = "1.0.1", optional = true, features = ["async-io"] } +async-global-executor = { version = "1.0.2", optional = true, features = ["async-io"] } async-io = { version = "1.0.1", optional = true } blocking = { version = "1.0.0", optional = true } futures-lite = { version = "1.0.0", optional = true }