Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ on:

name: CI

env:
RUSTFLAGS: -Dwarnings

jobs:
msrv:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions authenticode/tests/test_errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Ignore warnings from not using the return value of `format!`.
#![expect(unused_must_use)]

use authenticode::{
AttributeCertificateAuthenticodeError, AttributeCertificateError,
AuthenticodeSignatureParseError, PeOffsetError,
Expand Down
Loading