From 797488eedf2248c154818a39b7152194f9625b91 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 21 Mar 2023 14:38:41 -0700 Subject: [PATCH] fix: add missing feature on ethers tests --- ethers/Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ethers/Cargo.toml b/ethers/Cargo.toml index 8a5b36ed..9db13a3e 100644 --- a/ethers/Cargo.toml +++ b/ethers/Cargo.toml @@ -62,10 +62,11 @@ ethers-etherscan = { workspace = true, features = ["ethers-solc"] } ethers-middleware.workspace = true ethers-providers.workspace = true ethers-signers.workspace = true -ethers-solc = { workspace = true } +ethers-solc.workspace = true [dev-dependencies] serde.workspace = true -tokio = { workspace = true, features = ["macros", "rt"] } +tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } ethers-contract = { workspace = true, features = ["eip712"] } ethers-providers = { workspace = true, features = ["rustls"] } # allow https connections +ethers-solc = { workspace = true, features = ["svm-solc"] }