From 7f0b9d156140a9e026ea474f43f4dea5d3ec28d0 Mon Sep 17 00:00:00 2001 From: Joe Bellus Date: Sat, 12 Feb 2022 02:22:49 -0500 Subject: [PATCH] Reqwest now uses rust-tls --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e420d16..ff11937 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ rand = "0.8.4" tokio = { verison = "1", features=["full"] } base64 = "0.13.0" sqlx = { version = "^0.5", features=["sqlite", "migrate"] } -reqwest = { version = "0.11.9", features = ["native-tls"] } +reqwest = { version = "0.11.9", features = ["rust-tls"] } [target.'cfg(all(target_env = "musl", target_pointer_width = "64"))'.dependencies.jemallocator]