Replace native-tls its internal fork in the root crate

This commit is contained in:
bytedream 2023-08-16 16:57:35 +02:00
parent f45bb19cd7
commit 31fe1460f1
2 changed files with 6 additions and 50 deletions

View file

@ -24,6 +24,11 @@ clap_mangen = "0.2"
crunchy-cli-core = { path = "./crunchy-cli-core" }
[patch.crates-io]
# fork of the `native-tls` crate which uses openssl as backend on every platform. this is done as `reqwest` only supports
# `rustls` and `native-tls` as tls backend
native-tls = { git = "https://github.com/crunchy-labs/rust-not-so-native-tls.git", rev = "570100d" }
[profile.release]
strip = true
opt-level = "z"