axum/deny.toml

47 lines
1.2 KiB
TOML
Raw Normal View History

2021-06-13 02:18:21 +08:00
[advisories]
vulnerability = "deny"
unmaintained = "warn"
notice = "warn"
ignore = []
[licenses]
2021-12-09 01:37:02 +08:00
unlicensed = "warn"
2021-06-13 02:18:21 +08:00
allow = []
deny = []
copyleft = "warn"
allow-osi-fsf-free = "either"
confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
highlight = "all"
2022-02-13 01:16:14 +08:00
skip-tree = [
2023-01-04 02:53:17 +08:00
# 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" },
2023-03-19 03:23:27 +08:00
# lots still pulls in syn 1.x
{ name = "syn" },
# until 1.0 is out we're pulling in both 0.14 and 1.0-rc.x
{ name = "hyper" },
# pulled in by tracing-subscriber
{ name = "regex-syntax" },
# pulled in by tracing-subscriber
{ name = "regex-automata" },
2023-09-17 03:30:48 +08:00
# pulled in by hyper
{ name = "socket2" },
# hyper-util hasn't upgraded to 0.5 yet, but it's the same service / layer
# crates beneath
{ name = "tower" },
# tower hasn't upgraded to 1.0 yet
{ name = "sync_wrapper" },
2021-06-19 18:50:33 +08:00
]
2021-06-13 02:18:21 +08:00
[sources]
unknown-registry = "warn"
unknown-git = "warn"
allow-git = []