1

Merge pull request #4 from ewpratten/issues/3-vulnerability-in-tokio-0122-from-tun-tap

Ignore false-alert tokio vulnerability
This commit is contained in:
Evan Pratten 2023-07-20 11:58:02 -04:00 committed by GitHub
commit 45a482d973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 2 deletions

5
.cargo/audit.toml Normal file
View File

@ -0,0 +1,5 @@
[advisories]
ignore = [
"RUSTSEC-2021-0124" # See issue #3
]
informational_warnings = ["unmaintained"]

View File

@ -6,6 +6,7 @@ on:
- '**/Cargo.toml' - '**/Cargo.toml'
- '**/Cargo.lock' - '**/Cargo.lock'
- '.github/workflows/audit.yml' - '.github/workflows/audit.yml'
- '**/audit.toml'
schedule: schedule:
- cron: '0 0 * * *' - cron: '0 0 * * *'

View File

@ -1,7 +1,14 @@
on: [push, pull_request]
name: Build name: Build
on:
pull_request:
push:
paths:
- '.github/workflows/build.yml'
- '**/Cargo.toml'
- '**/Cargo.lock'
- '**/src/*'
jobs: jobs:
build_and_test: build_and_test:
name: Rust project name: Rust project