From 8385aa8a15ff7b45fecc3462c482b998118c14eb Mon Sep 17 00:00:00 2001 From: kjuulh Date: Mon, 20 Feb 2023 10:40:53 +0100 Subject: [PATCH] fix(all): remove blocking --- Cargo.toml | 7 ++----- crates/dagger-core/Cargo.toml | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4dd332b..057e903 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,14 +28,11 @@ eyre = "0.6.8" flate2 = { version = "1.0.25", features = ["zlib"] } genco = "0.17.3" graphql-introspection-query = "0.2.0" -graphql_client = { version = "0.12.0", features = [ - "reqwest", - "reqwest-blocking", -] } +graphql_client = { version = "0.12.0", features = ["reqwest"] } hex = "0.4.3" hex-literal = "0.3.4" platform-info = "1.0.2" -reqwest = { version = "0.11.14", features = ["stream", "blocking", "deflate"] } +reqwest = { version = "0.11.14", features = ["stream", "deflate"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.93" sha2 = "0.10.6" diff --git a/crates/dagger-core/Cargo.toml b/crates/dagger-core/Cargo.toml index 6916752..044d8c5 100644 --- a/crates/dagger-core/Cargo.toml +++ b/crates/dagger-core/Cargo.toml @@ -16,14 +16,11 @@ eyre = "0.6.8" flate2 = { version = "1.0.25", features = ["zlib"] } genco = "0.17.3" graphql-introspection-query = "0.2.0" -graphql_client = { version = "0.12.0", features = [ - "reqwest", - "reqwest-blocking", -] } +graphql_client = { version = "0.12.0", features = ["reqwest"] } hex = "0.4.3" hex-literal = "0.3.4" platform-info = "1.0.2" -reqwest = { version = "0.11.14", features = ["stream", "blocking", "deflate"] } +reqwest = { version = "0.11.14", features = ["stream", "deflate"] } serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.93" sha2 = "0.10.6"