From 6890b8e0d91f0b1ad8c133f290f19f7be9d8c1e0 Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Mon, 15 Apr 2024 03:10:14 +0400 Subject: [PATCH] chore: enable rustls for foundry-common --- crates/common/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 5e7eebf829c5..7dc6fa3ba666 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -74,3 +74,7 @@ num-format.workspace = true foundry-macros.workspace = true pretty_assertions.workspace = true tokio = { version = "1", features = ["rt-multi-thread", "macros"] } + +[features] +default = ["rustls"] +rustls = ["reqwest_ethers/rustls-tls-native-roots"]