TypeDialog/.cargo/audit.toml
Jesús Pérez 6b3f80158c
Some checks failed
CI / Lint (bash) (push) Has been cancelled
CI / Lint (markdown) (push) Has been cancelled
CI / Lint (nickel) (push) Has been cancelled
CI / Lint (nushell) (push) Has been cancelled
CI / Lint (rust) (push) Has been cancelled
CI / Code Coverage (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / Build (macos-latest) (push) Has been cancelled
CI / Build (ubuntu-latest) (push) Has been cancelled
CI / Build (windows-latest) (push) Has been cancelled
CI / Benchmark (push) Has been cancelled
CI / Security Audit (push) Has been cancelled
CI / License Compliance (push) Has been cancelled
chore: add CI settings and flow for rust, md
2025-12-24 03:26:41 +00:00

33 lines
915 B
TOML

# Cargo audit configuration
# https://docs.rs/cargo-audit/latest/cargo_audit/
[advisories]
# Ignore advisories for unmaintained crates that have no alternatives
ignore = [
# atty - unmaintained but widely used, replacement (is-terminal) requires code changes
"RUSTSEC-2021-0145",
"RUSTSEC-2024-0375",
# atomic-polyfill - unmaintained, comes from surrealdb dependency
"RUSTSEC-2023-0089",
# paste - unmaintained, comes from multiple dependencies (ratatui, nickel)
"RUSTSEC-2024-0436",
# rustls-pemfile - FIXED by updating reqwest to v0.12.28
# "RUSTSEC-2025-0134",
# yaml-rust - unmaintained, comes from nickel-lang-core
"RUSTSEC-2024-0320",
]
[database]
# Path to the advisory database
path = "~/.cargo/advisory-db"
# URL to the advisory database git repo
url = "https://github.com/RustSec/advisory-db"
# Fetch latest advisories on each run
stale = false