From 2e06d9c572fd0c99515b59c897f439698dbb07e5 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Fri, 10 Mar 2023 20:06:17 +0100 Subject: [PATCH] fix(cli): use native tls --- cli/Cargo.toml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 5fe99e2..f856751 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,12 +4,8 @@ version = "0.1.0" edition = "2021" [dependencies] -rustypipe = { path = "../", default_features = false, features = [ - "rustls-tls-native-roots", -] } -rustypipe-downloader = { path = "../downloader", default_features = false, features = [ - "rustls-tls-native-roots", -] } +rustypipe = { path = "../" } +rustypipe-downloader = { path = "../downloader" } reqwest = { version = "0.11.11", default_features = false } tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] } indicatif = "0.17.0"