diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 268d3716bd..504db0c6a4 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,11 +1,5 @@ [advisories] ignore = [ - # time 0.1 - "RUSTSEC-2020-0071", - # needs sqlx 0.7 (still in alpha) - "RUSTSEC-2022-0090", - # wry needs kuchiki on Android - "RUSTSEC-2023-0019", - # atty is only used when the `colored` feature is enabled on tauri-plugin-log - "RUSTSEC-2021-0145", + # time crate can't be updated in the repo because of MSRV, users are unaffected + "RUSTSEC-2026-0009", ] diff --git a/.github/workflows/audit-rust.yml b/.github/workflows/audit-rust.yml index e0c72a899e..79fcc9e528 100644 --- a/.github/workflows/audit-rust.yml +++ b/.github/workflows/audit-rust.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: rustsec/audit-check@v1 + - uses: rustsec/audit-check@v2 with: token: ${{ secrets.GITHUB_TOKEN }} # https://github.com/tauri-apps/plugins-workspace/issues/774