2022-03-18 11:10:21 +00:00
|
|
|
# spell-checker:ignore SSLeay RUSTSEC
|
|
|
|
|
2022-03-18 10:28:02 +00:00
|
|
|
# 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"]
|
2024-03-13 08:35:11 +00:00
|
|
|
version = 2
|
2022-03-18 10:28:02 +00:00
|
|
|
yanked = "warn"
|
|
|
|
ignore = [
|
2023-06-08 07:07:12 +00:00
|
|
|
#"RUSTSEC-0000-0000",
|
2022-03-18 10:28:02 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# 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]
|
2024-03-13 08:35:11 +00:00
|
|
|
version = 2
|
2022-03-18 10:28:02 +00:00
|
|
|
allow = [
|
2023-06-08 07:07:12 +00:00
|
|
|
"MIT",
|
|
|
|
"Apache-2.0",
|
|
|
|
"ISC",
|
|
|
|
"BSD-2-Clause",
|
|
|
|
"BSD-2-Clause-FreeBSD",
|
|
|
|
"BSD-3-Clause",
|
2024-05-24 07:38:26 +00:00
|
|
|
"BSL-1.0",
|
2023-06-08 07:07:12 +00:00
|
|
|
"CC0-1.0",
|
|
|
|
"Unicode-DFS-2016",
|
2022-03-18 10:28:02 +00:00
|
|
|
]
|
|
|
|
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"
|
2022-03-18 11:10:21 +00:00
|
|
|
|
|
|
|
# For each duplicate dependency, indicate the name of the dependency which
|
|
|
|
# introduces it.
|
|
|
|
# spell-checker: disable
|
2023-02-21 20:52:18 +00:00
|
|
|
skip = [
|
2023-06-08 08:52:15 +00:00
|
|
|
# rustix
|
2023-08-10 21:29:43 +00:00
|
|
|
{ name = "linux-raw-sys", version = "0.3.8" },
|
2023-08-16 12:45:31 +00:00
|
|
|
# terminal_size
|
2023-10-19 05:15:05 +00:00
|
|
|
{ name = "rustix", version = "0.37.26" },
|
2024-01-10 09:48:50 +00:00
|
|
|
# notify
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows-sys", version = "0.45.0" },
|
2023-12-11 10:02:22 +00:00
|
|
|
# various crates
|
|
|
|
{ name = "windows-sys", version = "0.48.0" },
|
2024-08-14 15:25:35 +00:00
|
|
|
# various crates
|
|
|
|
{ name = "windows-sys", version = "0.52.0" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-sys
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows-targets", version = "0.42.2" },
|
2023-12-11 10:02:22 +00:00
|
|
|
# windows-sys
|
|
|
|
{ name = "windows-targets", version = "0.48.0" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_aarch64_gnullvm", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_aarch64_msvc", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_i686_gnu", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_i686_msvc", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_x86_64_gnu", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_x86_64_gnullvm", version = "0.42.2" },
|
2023-06-08 08:52:15 +00:00
|
|
|
# windows-targets
|
2023-06-08 07:07:12 +00:00
|
|
|
{ name = "windows_x86_64_msvc", version = "0.42.2" },
|
2023-12-11 10:02:22 +00:00
|
|
|
# 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" },
|
2024-05-07 05:57:41 +00:00
|
|
|
# data-encoding-macro-internal
|
2023-07-06 13:10:22 +00:00
|
|
|
{ name = "syn", version = "1.0.109" },
|
2023-08-06 13:10:10 +00:00
|
|
|
# various crates
|
|
|
|
{ name = "bitflags", version = "1.3.2" },
|
2023-09-15 06:11:28 +00:00
|
|
|
# clap_builder, textwrap
|
|
|
|
{ name = "terminal_size", version = "0.2.6" },
|
2023-02-21 20:52:18 +00:00
|
|
|
]
|
2022-03-18 11:10:21 +00:00
|
|
|
# spell-checker: enable
|
2022-03-18 10:28:02 +00:00
|
|
|
|
|
|
|
# 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
|
2023-02-21 20:52:18 +00:00
|
|
|
|
2022-03-18 10:28:02 +00:00
|
|
|
[sources]
|
|
|
|
unknown-registry = "warn"
|
|
|
|
unknown-git = "warn"
|
|
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
|
|
allow-git = []
|