From bc83fce101496fcb71589ce90afa3f73bd450225 Mon Sep 17 00:00:00 2001 From: lemonsh Date: Sat, 12 Mar 2022 15:02:40 -0600 Subject: [PATCH] make reqwest use RusTLS instead of native TLS --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 07b0073..6fe7760 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,6 @@ toml = "0.5" serde = { version = "1.0", features = ["derive"] } hmac-sha256 = "1.1" hex = "0.4" -reqwest = { version = "0.11", features = ["multipart", "json"] } +reqwest = { version = "0.11", default-features = false, features = ["multipart", "json", "rustls-tls"] } once_cell = "1.9" serde_json = "1.0"