sanitize-engine 0.3.0

Deterministic one-way data sanitization engine
Documentation
# Supply-chain security policy for sanitize-engine.
# Run with: cargo deny check

[advisories]
version = 2
# rand 0.8 unsoundness only triggers with a custom logger calling rand::rng()
# during reseeding — this crate uses tracing (not log) and never calls rand
# from a logger. Will upgrade to rand 0.9+ in a future release.
ignore = ["RUSTSEC-2026-0097"]

[licenses]
version = 2
allow = [
    "Apache-2.0",
    "MIT",
    "BSD-2-Clause",
    "BSD-3-Clause",

    "Unicode-3.0",
    "Zlib",
    "BSL-1.0",
    "Unlicense",
]

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

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