magellan 4.7.3

Deterministic codebase mapping tool for local development
Documentation
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/checks/cfg.html

[graph]
targets = [
    { triple = "x86_64-unknown-linux-gnu" },
    { triple = "x86_64-pc-windows-msvc" },
]

[advisories]
version = 2

# === MONITORED — upstream unmaintained, no CVE, no upgrade path ===
# RUSTSEC-2025-0141: bincode 1.3.3 unmaintained — crate abandoned, no replacement
# RUSTSEC-2025-0119: number_prefix 0.4.0 unmaintained — needs indicatif to switch
ignore = [
    "RUSTSEC-2025-0141",
    "RUSTSEC-2025-0119",
]

[licenses]
version = 2
allow = [
    "Apache-2.0",
    "MIT",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "CC0-1.0",
    "GPL-3.0-only",
    "Zlib",
    "BSL-1.0",
    "Apache-2.0 WITH LLVM-exception",
    "CDLA-Permissive-2.0",
]


[bans]
multiple-versions = "warn"
wildcards = "warn"
highlight = "all"

[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-git = []