qhook 0.4.1

Lightweight webhook gateway and workflow engine with queue, retry, and signature verification.
Documentation
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/

[graph]
targets = []
all-features = false
no-default-features = false

# --- Advisories (vulnerability database) ---
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
# Known advisories to ignore (with justification)
ignore = [
    # rsa crate: Marvin attack — not exploitable in our usage (HMAC verification only)
    "RUSTSEC-2023-0071",
    # chrono: localtime_r unsoundness — we only use UTC, never local time
    "RUSTSEC-2026-0009",
]

# --- Licenses ---
[licenses]
allow = [
    "MIT",
    "Apache-2.0",
    "BSD-2-Clause",
    "BSD-3-Clause",
    "ISC",
    "Zlib",
    "Unicode-3.0",
    "CC0-1.0",
    "MIT-0",
    "Unlicense",
    "OpenSSL",
    "BSL-1.0",
    "CDLA-Permissive-2.0",
]
confidence-threshold = 0.8

# --- Bans (duplicate/denied crates) ---
[bans]
multiple-versions = "warn"
wildcards = "allow"

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