45 lines
876 B
TOML
45 lines
876 B
TOML
[advisories]
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
vulnerability = "deny"
|
|
unmaintained = "deny"
|
|
yanked = "deny"
|
|
notice = "deny"
|
|
ignore = []
|
|
|
|
[licenses]
|
|
unlicensed = "deny"
|
|
allow = ["MPL-2.0"]
|
|
deny = []
|
|
copyleft = "deny"
|
|
allow-osi-fsf-free = "either"
|
|
default = "deny"
|
|
confidence-threshold = 1.0
|
|
exceptions = []
|
|
|
|
[[licenses.clarify]]
|
|
name = "ring"
|
|
version = "*"
|
|
expression = "MIT AND ISC AND OpenSSL"
|
|
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
|
|
|
|
[[licenses.clarify]]
|
|
name = "webpki"
|
|
version = "*"
|
|
expression = "ISC"
|
|
license-files = [{ path = "LICENSE", hash = 0x001c7e6c }]
|
|
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "deny"
|
|
highlight = "all"
|
|
allow = []
|
|
deny = []
|
|
skip = []
|
|
skip-tree = []
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|