From 6ed55fa4c35e5a9dbb3940a251f4e01100dcdd03 Mon Sep 17 00:00:00 2001 From: DS Date: Thu, 3 Oct 2024 03:08:58 -0700 Subject: [PATCH 1/2] Specify other default reqwest features to remove default-tls --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dcaf6640..b4d11592 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,13 @@ serde_with = { version = "^3.8", default-features = false, features = [ serde_json = "^1.0" url = "^2.5" uuid = { version = "^1.8", features = ["serde", "v4"] } -reqwest = { version = "^0.12", features = ["json", "multipart"] } +reqwest = { version = "^0.12", default_features = false, features = [ + "charset", + "http2", + "json", + "macos-system-configuration", + "multipart", +] } [dev-dependencies] rand = "^0.8" From 574659b814c02fa94cc3dd18852b76b92537babf Mon Sep 17 00:00:00 2001 From: Daniel Sidhion Date: Sun, 6 Oct 2024 09:53:59 -0700 Subject: [PATCH 2/2] Remove deprecated keyword in Cargo.toml Co-authored-by: Henning Holm --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index b4d11592..d4259f9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ serde_with = { version = "^3.8", default-features = false, features = [ serde_json = "^1.0" url = "^2.5" uuid = { version = "^1.8", features = ["serde", "v4"] } -reqwest = { version = "^0.12", default_features = false, features = [ +reqwest = { version = "^0.12", default-features = false, features = [ "charset", "http2", "json",