From ffa1e51a2b43245ca1872689cc1a9f8390fa2dd4 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Wed, 19 Apr 2023 17:21:13 +0200 Subject: [PATCH] cli: use rustls --- cli/Cargo.toml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f856751..0b59f37 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,9 +4,15 @@ version = "0.1.0" edition = "2021" [dependencies] -rustypipe = { path = "../" } -rustypipe-downloader = { path = "../downloader" } -reqwest = { version = "0.11.11", default_features = false } +rustypipe = { path = "../", default-features = false, features = [ + "rustls-tls-native-roots", +] } +rustypipe-downloader = { path = "../downloader", default-features = false, features = [ + "rustls-tls-native-roots", +] } +reqwest = { version = "0.11.11", default_features = false, features = [ + "rustls-tls-native-roots", +] } tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] } indicatif = "0.17.0" futures = "0.3.21"