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
Add display_mode, searchable, min_selected, and max_selected fields to all FieldDefinition struct initializers across core library and tests.
33 lines
907 B
TOML
33 lines
907 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
|