cli: use rustls
This commit is contained in:
parent
41e0a0304a
commit
ffa1e51a2b
1 changed files with 9 additions and 3 deletions
|
|
@ -4,9 +4,15 @@ version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustypipe = { path = "../" }
|
rustypipe = { path = "../", default-features = false, features = [
|
||||||
rustypipe-downloader = { path = "../downloader" }
|
"rustls-tls-native-roots",
|
||||||
reqwest = { version = "0.11.11", default_features = false }
|
] }
|
||||||
|
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"] }
|
tokio = { version = "1.20.0", features = ["macros", "rt-multi-thread"] }
|
||||||
indicatif = "0.17.0"
|
indicatif = "0.17.0"
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
|
|
|
||||||
Reference in a new issue