35 lines
589 B
TOML
35 lines
589 B
TOML
[graph]
|
|
targets = [
|
|
{ triple = "x86_64-pc-windows-msvc" },
|
|
{ triple = "x86_64-unknown-linux-gnu" },
|
|
]
|
|
all-features = true
|
|
|
|
[advisories]
|
|
version = 2
|
|
db-path = "./target/cargo-deny-advisory-dbs"
|
|
yanked = "deny"
|
|
ignore = []
|
|
|
|
[licenses]
|
|
version = 2
|
|
allow = [
|
|
"Apache-2.0",
|
|
"BSD-3-Clause",
|
|
"CDLA-Permissive-2.0",
|
|
"GPL-2.0-or-later",
|
|
"ISC",
|
|
"MIT",
|
|
"Unicode-3.0",
|
|
]
|
|
exceptions = []
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
wildcards = "deny"
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|