oysh/deny.toml
Charlotte Meyer 1b67147aa7 refactor: rearrange deny.toml
Signed-off-by: Charlotte Meyer <dev@buffet.sh>
2023-01-16 15:36:09 +01:00

28 lines
506 B
TOML

[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
notice = "deny"
unmaintained = "deny"
vulnerability = "deny"
yanked = "deny"
[licenses]
copyleft = "deny"
default = "deny"
unlicensed = "deny"
allow = [
"Apache-2.0",
"ISC",
"MIT",
]
[bans]
highlight = "all"
multiple-versions = "deny"
wildcards = "deny"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []