From d7cc2d82867be2f32cf217ccae58cf00ce3bc88f Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Fri, 31 Jan 2025 23:08:59 +0100 Subject: [PATCH] fix(upload): Enable reqwest's rustls-tls feature by default --- plugins/upload/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index a9118dcb..b02ce4df 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -32,6 +32,9 @@ thiserror = { workspace = true } tokio = { version = "1", features = ["fs"] } tokio-util = { version = "0.7", features = ["codec"] } reqwest = { version = "0.12", default-features = false, features = [ + "http2", + "charset", + "macos-system-configuration", "json", "stream", ] } @@ -39,6 +42,7 @@ futures-util = "0.3" read-progress-stream = "1.0.0" [features] +default = ["rustls-tls"] native-tls = ["reqwest/native-tls"] native-tls-vendored = ["reqwest/native-tls-vendored"] rustls-tls = ["reqwest/rustls-tls"]