From e5d1cfbef182170a6ddf452502a5e32b4ec78a58 Mon Sep 17 00:00:00 2001 From: ssrlive <30760636+ssrlive@users.noreply.github.com> Date: Thu, 18 May 2023 18:34:15 +0800 Subject: [PATCH] Reqwest without openssl (#8) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index addd019..b5fcb1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,6 @@ jni = { version = "0.21", default-features = false } [dev-dependencies] ctor = "0.1" -reqwest = { version = "0.11", features = ["blocking", "json"] } +reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls-tls"] } serial_test = "1.0" test-log = "0.2"