Use workspace instead of separate Cargo.lock file

This commit is contained in:
bytedream 2023-08-25 14:24:12 +02:00
parent 2f57b07559
commit a80f6e5df4
4 changed files with 115 additions and 2413 deletions

View file

@ -24,6 +24,14 @@ clap_mangen = "0.2"
crunchy-cli-core = { path = "./crunchy-cli-core" }
[workspace]
members = ["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"