From 5a46451766986b6266d68bc442577aa9f5098f5e Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Mon, 23 Sep 2024 15:34:32 +0300 Subject: [PATCH] Remove reqwest's native-tls dependency --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 9437e7369..8feb510ae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,9 @@ reqwest = { version = "0.12", features = [ "rustls-tls", "rustls-tls-native-roots", "trust-dns", -], optional = true } + "http2", + "macos-system-configuration", +], default-features = false, optional = true } retry = "2" semver = "1.0" serde = { version = "1.0", features = ["derive"] }