mirror of
https://github.com/uutils/coreutils
synced 2024-11-05 14:21:32 +00:00
b9f5fc4b7c
error[duplicate]: found 2 duplicate entries for crate 'aho-corasick' ┌─ /github/workspace/Cargo.lock:4:1 │ 4 │ ╭ aho-corasick 0.7.19 registry+https://github.com/rust-lang/crates.io-index 5 │ │ aho-corasick 1.0.1 registry+https://github.com/rust-lang/crates.io-index │ ╰────────────────────────────────────────────────────────────────────────^ lock entries │ = aho-corasick v0.7.19 └── cpp_macros v0.5.7 └── cpp v0.5.7 └── uu_stdbuf_libstdbuf v0.0.18 └── (build) uu_stdbuf v0.0.18 └── coreutils v0.0.18 = aho-corasick v1.0.1 └── regex v1.8.1 ├── bindgen v0.63.0 │ ├── (build) fts-sys v0.2.4 │ │ └── uu_chcon v0.0.18 │ │ └── coreutils v0.0.18 │ └── (build) selinux-sys v0.6.2 │ └── selinux v0.4.0
85 lines
2.7 KiB
TOML
85 lines
2.7 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"]
|
|
vulnerability = "warn"
|
|
unmaintained = "warn"
|
|
yanked = "warn"
|
|
notice = "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]
|
|
unlicensed = "deny"
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"ISC",
|
|
"BSD-2-Clause",
|
|
"BSD-2-Clause-FreeBSD",
|
|
"BSD-3-Clause",
|
|
"CC0-1.0",
|
|
"MPL-2.0", # XXX considered copyleft?
|
|
"Unicode-DFS-2016",
|
|
]
|
|
copyleft = "deny"
|
|
allow-osi-fsf-free = "neither"
|
|
default = "deny"
|
|
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 = [
|
|
# is-terminal
|
|
{ name = "hermit-abi", version = "0.3.1" },
|
|
# is-terminal
|
|
{ name = "rustix", version = "0.36.8" },
|
|
# is-terminal (via rustix)
|
|
{ name = "io-lifetimes", version = "1.0.5" },
|
|
# is-terminal
|
|
{ name = "linux-raw-sys", version = "0.1.4" },
|
|
# is-terminal
|
|
{ name = "windows-sys", version = "0.45.0" },
|
|
# cpp_macros
|
|
{ name = "aho-corasick", version = "0.7.19" },
|
|
]
|
|
# 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 = []
|