From 4d4436a89471ce103fad046ce1ec47ebbe2ca674 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Thu, 12 Aug 2021 16:31:32 +0300 Subject: [PATCH] fix(core): use async-await-macro to fix docs.rs publishing --- ethers-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 66919fec..10e2f09a 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -33,7 +33,7 @@ hex = { version = "0.4.3", default-features = false, features = ["std"] } # async tokio = { version = "1.5", default-features = false, optional = true} -futures-util = { version = "0.3.16", default-features = false, optional = true} +futures-util = { version = "0.3.16", default-features = false, optional = true, features = ["async-await-macro"]} [dev-dependencies] ethers = { version = "0.4.0", path = "../ethers" }