From 08aaebec7e1c8b525ec8f1a261e6ef540b9fd7bf Mon Sep 17 00:00:00 2001 From: Razvan Dimescu Date: Sat, 21 Mar 2026 11:59:52 +0200 Subject: [PATCH] fix audit: update rustls-webpki, ignore unmaintained pemfile warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RUSTSEC-2026-0049 fixed by updating rustls-webpki 0.103.9 → 0.103.10. RUSTSEC-2025-0134 (rustls-pemfile unmaintained) ignored — no replacement available, warning only, not a vulnerability. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 2 +- Cargo.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d792c84..ae24f86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,4 +25,4 @@ jobs: - name: test run: cargo test - name: audit - run: cargo install cargo-audit && cargo audit + run: cargo install cargo-audit && cargo audit --ignore RUSTSEC-2025-0134 diff --git a/Cargo.lock b/Cargo.lock index da61725..86e7e2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1296,9 +1296,9 @@ dependencies = [ [[package]] name = "rustls-webpki" -version = "0.103.9" +version = "0.103.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53" +checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef" dependencies = [ "aws-lc-rs", "ring",