1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-25 22:07:44 +00:00
physis/deny.toml

32 lines
630 B
TOML
Raw Normal View History

2022-07-19 19:29:41 -04:00
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "deny"
yanked = "deny"
notice = "warn"
[licenses]
unlicensed = "deny"
allow = [
"Unicode-DFS-2016" # used for unicode-ident
]
copyleft = "allow"
allow-osi-fsf-free = "both"
default = "deny"
confidence-threshold = 0.8
[bans]
multiple-versions = "deny"
wildcards = "warn"
highlight = "all"
2023-09-22 19:19:37 -04:00
skip-tree = [
# I HATE CRITERION AAAAAAAA
{ name = "criterion" }
2022-10-17 19:28:52 -04:00
]
2022-07-19 19:29:41 -04:00
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]