diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-08-07 19:57:01 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-08-07 19:57:01 +0200 |
| commit | e8420a6f43a40f3dd49641bee86b92795585bf2a (patch) | |
| tree | 89bab567a984fed180eed6c8932f1a6c4a3fadb5 | |
| parent | 62293ccb11af519d8c1786f0a46ff8f8dab86f86 (diff) | |
| download | brck-main.tar.gz | |
See
<https://blog.rust-lang.org/2026/07/09/Rust-1.97.0/#cargo-support-for-denying-warnings>.
| -rwxr-xr-x | script/check | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/script/check b/script/check index edf251e..16c62ff 100755 --- a/script/check +++ b/script/check @@ -4,12 +4,12 @@ set -o errexit set -o nounset set -o xtrace -cargo fmt --all --check +export CARGO_BUILD_WARNINGS=deny -cargo check --workspace --all-targets --all-features -cargo build --workspace --all-targets --all-features +cargo fmt --all --check +cargo check --workspace --all-targets --all-features --keep-going +cargo build --workspace --all-targets --all-features --keep-going cargo test --workspace --all-targets --all-features cargo clippy --workspace --all-targets --all-features -- --deny warnings -env RUSTDOCFLAGS="-Dwarnings" \ - cargo doc --all-features --no-deps --document-private-items +cargo doc --all-features --no-deps --document-private-items --keep-going cargo audit |