agent-tools-interface 0.7.4

Agent Tools Interface — secure CLI for AI agent tool execution
Documentation
# cargo-deny configuration — https://embarkstudios.github.io/cargo-deny/
#
# Blocks supply chain vectors: typosquatting via alt registries,
# git-source dependency hijacking, known vulns, license violations.

[advisories]
# All vulnerability advisories are errors by default in 0.19+.
# Unmaintained crates are warnings (won't block CI).
unmaintained = "none"
yanked = "warn"
ignore = [
    # RUSTSEC-2026-0097: rand 0.8 unsound *only* when a custom log::Log
    # implementation calls `rand::rng()` with thread_rng + log features
    # enabled. ATI uses tracing_subscriber::fmt::layer() which is a
    # tracing Layer, not a log::Log implementation, so the trigger path
    # is not reachable. The rand 0.8 line has no backport fix; moving
    # to rand 0.9 is a separate ecosystem-wide migration tracked apart
    # from this PR.
    "RUSTSEC-2026-0097",
]

[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Unicode-3.0",
    "CDLA-Permissive-2.0",
]
unused-allowed-license = "warn"

[bans]
multiple-versions = "warn"
wildcards = "deny"

[sources]
unknown-registry = "deny"
unknown-git = "deny"