38 lines
639 B
TOML
38 lines
639 B
TOML
[advisories]
|
|
ignore = []
|
|
|
|
[licenses]
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"BSL-1.0",
|
|
"MPL-2.0",
|
|
"Unicode-3.0",
|
|
"Zlib",
|
|
]
|
|
confidence-threshold = 0.8
|
|
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "deny"
|
|
# Transitive duplicates from wasmtime v47 dependencies
|
|
skip = [
|
|
"getrandom",
|
|
"syn",
|
|
"hashbrown",
|
|
"thiserror",
|
|
"thiserror-impl",
|
|
"wasm-encoder",
|
|
"wasmparser",
|
|
"winnow",
|
|
]
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = []
|