mirror of
https://github.com/uutils/coreutils
synced 2024-11-10 07:04:16 +00:00
116 lines
3.8 KiB
TOML
116 lines
3.8 KiB
TOML
# spell-checker:ignore SSLeay RUSTSEC
|
|
|
|
# This section is considered when running `cargo deny check advisories`
|
|
# More documentation for the advisories section can be found here:
|
|
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
|
|
[advisories]
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
version = 2
|
|
yanked = "warn"
|
|
ignore = [
|
|
#"RUSTSEC-0000-0000",
|
|
]
|
|
|
|
# This section is considered when running `cargo deny check licenses`
|
|
# More documentation for the licenses section can be found here:
|
|
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
|
|
[licenses]
|
|
version = 2
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"ISC",
|
|
"BSD-2-Clause",
|
|
"BSD-2-Clause-FreeBSD",
|
|
"BSD-3-Clause",
|
|
"BSL-1.0",
|
|
"CC0-1.0",
|
|
"Unicode-DFS-2016",
|
|
]
|
|
confidence-threshold = 0.8
|
|
|
|
[[licenses.clarify]]
|
|
name = "ring"
|
|
# SPDX considers OpenSSL to encompass both the OpenSSL and SSLeay licenses
|
|
# https://spdx.org/licenses/OpenSSL.html
|
|
# ISC - Both BoringSSL and ring use this for their new files
|
|
# MIT - "Files in third_party/ have their own licenses, as described therein. The MIT
|
|
# license, for third_party/fiat, which, unlike other third_party directories, is
|
|
# compiled into non-test libraries, is included below."
|
|
# OpenSSL - Obviously
|
|
expression = "ISC AND MIT AND OpenSSL"
|
|
license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
|
|
|
|
# This section is considered when running `cargo deny check bans`.
|
|
# More documentation about the 'bans' section can be found here:
|
|
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
|
|
[bans]
|
|
multiple-versions = "deny"
|
|
wildcards = "allow"
|
|
highlight = "all"
|
|
|
|
# For each duplicate dependency, indicate the name of the dependency which
|
|
# introduces it.
|
|
# spell-checker: disable
|
|
skip = [
|
|
# rustix
|
|
{ name = "linux-raw-sys", version = "0.3.8" },
|
|
# terminal_size
|
|
{ name = "rustix", version = "0.37.26" },
|
|
# notify
|
|
{ name = "windows-sys", version = "0.45.0" },
|
|
# various crates
|
|
{ name = "windows-sys", version = "0.48.0" },
|
|
# various crates
|
|
{ name = "windows-sys", version = "0.52.0" },
|
|
# windows-sys
|
|
{ name = "windows-targets", version = "0.42.2" },
|
|
# windows-sys
|
|
{ name = "windows-targets", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_aarch64_gnullvm", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_aarch64_msvc", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_i686_gnu", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_i686_msvc", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_gnu", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_gnullvm", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_msvc", version = "0.42.2" },
|
|
# windows-targets
|
|
{ name = "windows_aarch64_gnullvm", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_aarch64_msvc", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_i686_gnu", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_i686_msvc", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_gnu", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_gnullvm", version = "0.48.0" },
|
|
# windows-targets
|
|
{ name = "windows_x86_64_msvc", version = "0.48.0" },
|
|
# data-encoding-macro-internal
|
|
{ name = "syn", version = "1.0.109" },
|
|
# various crates
|
|
{ name = "bitflags", version = "1.3.2" },
|
|
# clap_builder, textwrap
|
|
{ name = "terminal_size", version = "0.2.6" },
|
|
]
|
|
# spell-checker: enable
|
|
|
|
# This section is considered when running `cargo deny check sources`.
|
|
# More documentation about the 'sources' section can be found here:
|
|
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
|
|
|
|
[sources]
|
|
unknown-registry = "warn"
|
|
unknown-git = "warn"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = []
|