Skip to content

Commit

Permalink
Fix build with cargo-audit 0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuesch committed Oct 29, 2024
1 parent c9f50bf commit 78840c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cargo test --package letmein-proto
@if ERRORLEVEL 1 goto :error
cargo auditable build --release --package letmein
@if ERRORLEVEL 1 goto :error
cargo audit bin --deny warnings target\release\letmein.exe
cargo audit --deny warnings bin target\release\letmein.exe
@if ERRORLEVEL 1 goto :error
@echo SUCCESS
@pause
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export LETMEIN_CONF_PREFIX="/opt/letmein"
cargo build || die "Cargo build (debug) failed."
cargo test || die "Cargo test failed."
cargo auditable build --release || die "Cargo build (release) failed."
cargo audit bin --deny warnings \
cargo audit --deny warnings bin \
target/release/letmein \
target/release/letmeind \
target/release/letmeinfwd \
Expand Down

0 comments on commit 78840c8

Please sign in to comment.