mirror of
https://github.com/taiki-e/install-action.git
synced 2025-12-27 01:54:13 -05:00
43 lines
1.0 KiB
TOML
43 lines
1.0 KiB
TOML
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
|
|
[advisories]
|
|
yanked = "deny"
|
|
git-fetch-with-cli = true
|
|
ignore = [
|
|
]
|
|
|
|
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
wildcards = "deny"
|
|
allow-wildcard-paths = true
|
|
build.executables = "deny"
|
|
build.interpreted = "deny"
|
|
build.include-dependencies = true
|
|
build.include-workspace = false # covered by tools/tidy.sh
|
|
build.include-archives = true
|
|
build.allow-build-scripts = [
|
|
{ name = "proc-macro2" }, # via serde_derive
|
|
{ name = "semver" },
|
|
{ name = "serde_core" },
|
|
{ name = "serde" }, # https://github.com/serde-rs/serde/issues/2972
|
|
]
|
|
build.bypass = [
|
|
]
|
|
|
|
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
|
|
[licenses]
|
|
unused-allowed-license = "deny"
|
|
private.ignore = true
|
|
allow = [
|
|
"Apache-2.0",
|
|
"MIT",
|
|
"Unicode-3.0", # unicode-ident
|
|
]
|
|
|
|
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
allow-git = [
|
|
]
|