rusty-rich 0.4.3

Rich text and beautiful formatting in the terminal — a Rust port of Python's Rich library
Documentation
# cargo-deny configuration for rusty-rich
# See: https://embarkstudios.github.io/cargo-deny/

# ── Advisory Database ────────────────────────────────────────────
[advisories]
yanked = "deny"
# RUSTSEC-2024-0320 (yaml-rust unmaintained) — transitive via syntect, only used at compile time
ignore = [
    "RUSTSEC-2024-0320",  # yaml-rust — transitive via syntect, compile-time only
    "RUSTSEC-2025-0141",  # bincode — transitive via syntect, unmaintained
]

# ── License Compliance ───────────────────────────────────────────
[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "MPL-2.0",
    "Unicode-3.0",
    "Zlib",
    "BSL-1.0",          # Boost Software License
]
# crates that use multiple-license expressions
exceptions = [
    { name = "unicode-ident", allow = ["Unicode-3.0", "MIT", "Apache-2.0"] },
    { name = "syntect", allow = ["MIT"] },
    { name = "onig", allow = ["MIT"] },
    { name = "onig_sys", allow = ["MIT"] },
]

# ── Crate Sources ────────────────────────────────────────────────
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []

# ── Bans / Duplicates ───────────────────────────────────────────
[bans]
multiple-versions = "warn"
# atty has been removed from dependencies (replaced with std::io::IsTerminal).