From 757314b082943aa413227823903c935589f7458f Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Tue, 21 Mar 2023 19:13:50 +0100 Subject: [PATCH] fix(solc): features (#2290) * fix: solc svm feature * fix: conditional features --- ethers-solc/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ethers-solc/Cargo.toml b/ethers-solc/Cargo.toml index dd8a2a5c1..0943167fd 100644 --- a/ethers-solc/Cargo.toml +++ b/ethers-solc/Cargo.toml @@ -111,14 +111,14 @@ async = [ "futures-util", "criterion/async_tokio", ] -svm-solc = ["svm-builds", "sha2"] +svm-solc = ["svm", "svm-builds", "sha2"] # Utilities for creating and testing project workspaces project-util = ["tempfile", "fs_extra", "rand"] tests = [] -openssl = ["svm/openssl"] -rustls = ["svm/rustls"] +openssl = ["svm?/openssl"] +rustls = ["svm?/rustls"] # Deprecated asm = []