Files
attune/deny.toml
2026-03-05 09:27:59 -06:00

52 lines
1.2 KiB
TOML

[graph]
all-features = true
[advisories]
version = 2
yanked = "deny"
ignore = [
# rsa v0.9.10 - Marvin Attack timing sidechannel (medium severity)
# Pulled in transitively by sqlx-mysql, which sqlx compiles unconditionally
# for its macro system. We only use PostgreSQL — the rsa code is never
# executed. No upstream fix available.
{ id = "RUSTSEC-2023-0071", reason = "transitive via sqlx-mysql; we only use postgres" },
# rustls-pemfile v2.x - unmaintained
# Transitive dependency via lapin → amq-protocol-tcp → tcp-stream.
# No alternative available until lapin updates its TLS stack.
{ id = "RUSTSEC-2025-0134", reason = "transitive via lapin TLS stack; no alternative" },
]
[licenses]
version = 2
confidence-threshold = 0.9
allow = [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
"CC0-1.0",
"OpenSSL",
"BSL-1.0",
"MIT-0",
"CDLA-Permissive-2.0",
]
[bans]
multiple-versions = "warn"
wildcards = "allow"
highlight = "all"
deny = []
skip = []
skip-tree = []
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []