Merge pull request #983 from soar/feature/use-cargo-install-locked

feat: Add `--locked` to `cargo install` in release script
This commit is contained in:
Alexis Opolka 2025-06-20 16:38:56 +02:00 committed by GitHub
commit 822b3ea3ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -87,7 +87,7 @@ release() {
### Since the default behaviour of cross is to compile from
### a rustup target if it doesn't find one for itself.
rustup target add $env_target
cargo install cross
cargo install cross --locked
### We're building the release via cross for the target environment
cross build --release --target "$env_target"