axum/deny.toml
2023-04-25 11:13:18 +02:00

35 lines
826 B
TOML

[advisories]
vulnerability = "deny"
unmaintained = "warn"
notice = "warn"
ignore = []
[licenses]
unlicensed = "warn"
allow = []
deny = []
copyleft = "warn"
allow-osi-fsf-free = "either"
confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
highlight = "all"
skip-tree = [
# currently duplicated through header, reqwest, tower-http and cookie
# C.f. https://github.com/tokio-rs/axum/pull/1641
{ name = "base64" },
# parking_lot pulls in old versions of windows-sys
{ name = "windows-sys" },
# old version pulled in by rustls via ring
{ name = "spin" },
# lots still pulls in syn 1.x
{ name = "syn" },
# old version pulled in by tracing-subscriber in dev-deps and examples
{ name = "regex-syntax" },
]
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-git = []