From 16db73c4fcbc1cb430465fbcdea9affd426f08c9 Mon Sep 17 00:00:00 2001 From: Joe Bellus Date: Sat, 12 Feb 2022 01:55:34 -0500 Subject: [PATCH] Added native-tls for reqwest Added native-tls feature for the reqwest crate to remove openssl dependency --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 97f57ef..eca8023 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,8 @@ rand = "0.8.4" tokio = { verison = "1", features=["full"] } base64 = "0.13.0" sqlx = { version = "^0.5", features=["sqlite", "migrate"] } -reqwest = "0.11.9" +reqwest = { version = "0.11.9", features = ["native-tls"] } + [target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator] version = "0.3"