interpretthis 0.3.0

Sandboxed Python AST interpreter for untrusted and LLM-generated code
Documentation
# cargo-deny for interpretthis.
# Local: cargo deny check
# CI: job `deny` in .github/workflows/ci.yml

[graph]
all-features = false

[advisories]
version = 2
# Transitive via rustpython-parser / its stack — no safe upgrade until parser moves.
ignore = [
    { id = "RUSTSEC-2024-0436", reason = "paste unmaintained; transitive build dep" },
    { id = "RUSTSEC-2025-0081", reason = "unic-* via rustpython-parser 0.4; no safe upgrade" },
    { id = "RUSTSEC-2025-0075", reason = "unic-* via rustpython-parser 0.4; no safe upgrade" },
    { id = "RUSTSEC-2025-0080", reason = "unic-* via rustpython-parser 0.4; no safe upgrade" },
    { id = "RUSTSEC-2025-0090", reason = "unic-* via rustpython-parser 0.4; no safe upgrade" },
    { id = "RUSTSEC-2025-0100", reason = "unic-ucd-ident via rustpython-parser 0.4" },
    { id = "RUSTSEC-2025-0098", reason = "unic-ucd-version via rustpython-parser 0.4" },
]

[licenses]
version = 2
confidence-threshold = 0.8
allow = [
    "MIT",
    "Apache-2.0",
    "Apache-2.0 WITH LLVM-exception",
    "BSD-2-Clause",
    "Unicode-3.0",
    "Unicode-DFS-2016",
    "CC0-1.0",
    # malachite (via rustpython-parser / malachite-bigint) is LGPL-3.0-only.
    "LGPL-3.0-only",
]

[licenses.private]
ignore = true

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

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