Skip to content

Commit d334240

Browse files
committed
Include deny.toml
1 parent be26d13 commit d334240

File tree

1 file changed

+249
-0
lines changed

1 file changed

+249
-0
lines changed

deny.toml

Lines changed: 249 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,249 @@
1+
# This template contains all of the possible sections and their default values
2+
3+
# Note that all fields that take a lint level have these possible values:
4+
# * deny - An error will be produced and the check will fail
5+
# * warn - A warning will be produced, but the check will not fail
6+
# * allow - No warning or error will be produced, though in some cases a note
7+
# will be
8+
9+
# The values provided in this template are the default values that will be used
10+
# when any section or field is not specified in your own configuration
11+
12+
# Root options
13+
14+
# The graph table configures how the dependency graph is constructed and thus
15+
# which crates the checks are performed against
16+
[graph]
17+
# If 1 or more target triples (and optionally, target_features) are specified,
18+
# only the specified targets will be checked when running `cargo deny check`.
19+
# This means, if a particular package is only ever used as a target specific
20+
# dependency, such as, for example, the `nix` crate only being used via the
21+
# `target_family = "unix"` configuration, that only having windows targets in
22+
# this list would mean the nix crate, as well as any of its exclusive
23+
# dependencies not shared by any other crates, would be ignored, as the target
24+
# list here is effectively saying which targets you are building for.
25+
targets = [
26+
# The triple can be any string, but only the target triples built in to
27+
# rustc (as of 1.40) can be checked against actual config expressions
28+
#"x86_64-unknown-linux-musl",
29+
# You can also specify which target_features you promise are enabled for a
30+
# particular target. target_features are currently not validated against
31+
# the actual valid features supported by the target architecture.
32+
#{ triple = "wasm32-unknown-unknown", features = ["atomics"] },
33+
"aarch64-unknown-linux-gnu",
34+
"x86_64-unknown-linux-gnu",
35+
"aarch64-apple-darwin",
36+
"x86_64-apple-darwin",
37+
"universal-apple-darwin",
38+
"x86_64-pc-windows-msvc",
39+
]
40+
# When creating the dependency graph used as the source of truth when checks are
41+
# executed, this field can be used to prune crates from the graph, removing them
42+
# from the view of cargo-deny. This is an extremely heavy hammer, as if a crate
43+
# is pruned from the graph, all of its dependencies will also be pruned unless
44+
# they are connected to another crate in the graph that hasn't been pruned,
45+
# so it should be used with care. The identifiers are [Package ID Specifications]
46+
# (https://doc.rust-lang.org/cargo/reference/pkgid-spec.html)
47+
#exclude = []
48+
# If true, metadata will be collected with `--all-features`. Note that this can't
49+
# be toggled off if true, if you want to conditionally enable `--all-features` it
50+
# is recommended to pass `--all-features` on the cmd line instead
51+
all-features = false
52+
# If true, metadata will be collected with `--no-default-features`. The same
53+
# caveat with `all-features` applies
54+
no-default-features = false
55+
# If set, these feature will be enabled when collecting metadata. If `--features`
56+
# is specified on the cmd line they will take precedence over this option.
57+
#features = []
58+
59+
# The output table provides options for how/if diagnostics are outputted
60+
[output]
61+
# When outputting inclusion graphs in diagnostics that include features, this
62+
# option can be used to specify the depth at which feature edges will be added.
63+
# This option is included since the graphs can be quite large and the addition
64+
# of features from the crate(s) to all of the graph roots can be far too verbose.
65+
# This option can be overridden via `--feature-depth` on the cmd line
66+
feature-depth = 1
67+
68+
# This section is considered when running `cargo deny check advisories`
69+
# More documentation for the advisories section can be found here:
70+
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
71+
[advisories]
72+
unmaintained = "workspace"
73+
# The path where the advisory databases are cloned/fetched into
74+
#db-path = "$CARGO_HOME/advisory-dbs"
75+
# The url(s) of the advisory databases to use
76+
#db-urls = ["https://github.com/rustsec/advisory-db"]
77+
# A list of advisory IDs to ignore. Note that ignored advisories will still
78+
# output a note when they are encountered.
79+
ignore = [
80+
#"RUSTSEC-0000-0000",
81+
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
82+
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
83+
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
84+
]
85+
# If this is true, then cargo deny will use the git executable to fetch advisory database.
86+
# If this is false, then it uses a built-in git library.
87+
# Setting this to true can be helpful if you have special authentication requirements that cargo-deny does not support.
88+
# See Git Authentication for more information about setting up git authentication.
89+
#git-fetch-with-cli = true
90+
91+
# This section is considered when running `cargo deny check licenses`
92+
# More documentation for the licenses section can be found here:
93+
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
94+
[licenses]
95+
# List of explicitly allowed licenses
96+
# See https://spdx.org/licenses/ for list of possible licenses
97+
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
98+
allow = [
99+
"MIT",
100+
"Apache-2.0",
101+
#"Apache-2.0 WITH LLVM-exception",
102+
#"BSD-2-Clause",
103+
"BSD-3-Clause",
104+
"Unicode-3.0",
105+
]
106+
# The confidence threshold for detecting a license from license text.
107+
# The higher the value, the more closely the license text must be to the
108+
# canonical license text of a valid SPDX license file.
109+
# [possible values: any between 0.0 and 1.0].
110+
confidence-threshold = 0.93
111+
# Allow 1 or more licenses on a per-crate basis, so that particular licenses
112+
# aren't accepted for every possible crate as with the normal allow list
113+
exceptions = [
114+
# Each entry is the crate and version constraint, and its specific allow
115+
# list
116+
#{ allow = ["Zlib"], crate = "adler32" },
117+
{ allow = ["BSD-2-Clause"], crate = "av1-grain" },
118+
{ allow = ["BSD-2-Clause"], crate = "rav1e" },
119+
{ allow = ["BSD-2-Clause"], crate = "v_frame" },
120+
]
121+
122+
# Some crates don't have (easily) machine readable licensing information,
123+
# adding a clarification entry for it allows you to manually specify the
124+
# licensing information
125+
#[[licenses.clarify]]
126+
# The package spec the clarification applies to
127+
#crate = "ring"
128+
# The SPDX expression for the license requirements of the crate
129+
#expression = "MIT AND ISC AND OpenSSL"
130+
# One or more files in the crate's source used as the "source of truth" for
131+
# the license expression. If the contents match, the clarification will be used
132+
# when running the license check, otherwise the clarification will be ignored
133+
# and the crate will be checked normally, which may produce warnings or errors
134+
# depending on the rest of your configuration
135+
#license-files = [
136+
# Each entry is a crate relative path, and the (opaque) hash of its contents
137+
#{ path = "LICENSE", hash = 0xbd0eed23 }
138+
#]
139+
140+
[licenses.private]
141+
# If true, ignores workspace crates that aren't published, or are only
142+
# published to private registries.
143+
# To see how to mark a crate as unpublished (to the official registry),
144+
# visit https://doc.rust-lang.org/cargo/reference/manifest.html#the-publish-field.
145+
ignore = false
146+
# One or more private registries that you might publish crates to, if a crate
147+
# is only published to private registries, and ignore is true, the crate will
148+
# not have its license(s) checked
149+
registries = [
150+
#"https://sekretz.com/registry
151+
]
152+
153+
# This section is considered when running `cargo deny check bans`.
154+
# More documentation about the 'bans' section can be found here:
155+
# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
156+
[bans]
157+
# Lint level for when multiple versions of the same crate are detected
158+
multiple-versions = "warn"
159+
# Lint level for when a crate version requirement is `*`
160+
wildcards = "allow"
161+
# The graph highlighting used when creating dotgraphs for crates
162+
# with multiple versions
163+
# * lowest-version - The path to the lowest versioned duplicate is highlighted
164+
# * simplest-path - The path to the version with the fewest edges is highlighted
165+
# * all - Both lowest-version and simplest-path are used
166+
highlight = "all"
167+
# The default lint level for `default` features for crates that are members of
168+
# the workspace that is being checked. This can be overridden by allowing/denying
169+
# `default` on a crate-by-crate basis if desired.
170+
workspace-default-features = "allow"
171+
# The default lint level for `default` features for external crates that are not
172+
# members of the workspace. This can be overridden by allowing/denying `default`
173+
# on a crate-by-crate basis if desired.
174+
external-default-features = "allow"
175+
# List of crates that are allowed. Use with care!
176+
allow = [
177+
#"ansi_term@0.11.0",
178+
#{ crate = "ansi_term@0.11.0", reason = "you can specify a reason it is allowed" },
179+
]
180+
# List of crates to deny
181+
deny = [
182+
#"ansi_term@0.11.0",
183+
#{ crate = "ansi_term@0.11.0", reason = "you can specify a reason it is banned" },
184+
# Wrapper crates can optionally be specified to allow the crate when it
185+
# is a direct dependency of the otherwise banned crate
186+
#{ crate = "ansi_term@0.11.0", wrappers = ["this-crate-directly-depends-on-ansi_term"] },
187+
{ crate = "openssl", use-instead = "rustls"},
188+
]
189+
190+
# List of features to allow/deny
191+
# Each entry the name of a crate and a version range. If version is
192+
# not specified, all versions will be matched.
193+
#[[bans.features]]
194+
#crate = "reqwest"
195+
# Features to not allow
196+
#deny = ["json"]
197+
# Features to allow
198+
#allow = [
199+
# "rustls",
200+
# "__rustls",
201+
# "__tls",
202+
# "hyper-rustls",
203+
# "rustls",
204+
# "rustls-pemfile",
205+
# "rustls-tls-webpki-roots",
206+
# "tokio-rustls",
207+
# "webpki-roots",
208+
#]
209+
# If true, the allowed features must exactly match the enabled feature set. If
210+
# this is set there is no point setting `deny`
211+
#exact = true
212+
213+
# Certain crates/versions that will be skipped when doing duplicate detection.
214+
skip = [
215+
#"ansi_term@0.11.0",
216+
#{ crate = "ansi_term@0.11.0", reason = "you can specify a reason why it can't be updated/removed" },
217+
]
218+
# Similarly to `skip` allows you to skip certain crates during duplicate
219+
# detection. Unlike skip, it also includes the entire tree of transitive
220+
# dependencies starting at the specified crate, up to a certain depth, which is
221+
# by default infinite.
222+
skip-tree = [
223+
#"ansi_term@0.11.0", # will be skipped along with _all_ of its direct and transitive dependencies
224+
#{ crate = "ansi_term@0.11.0", depth = 20 },
225+
]
226+
227+
# This section is considered when running `cargo deny check sources`.
228+
# More documentation about the 'sources' section can be found here:
229+
# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
230+
[sources]
231+
# Lint level for what to happen when a crate from a crate registry that is not
232+
# in the allow list is encountered
233+
unknown-registry = "warn"
234+
# Lint level for what to happen when a crate from a git repository that is not
235+
# in the allow list is encountered
236+
unknown-git = "warn"
237+
# List of URLs for allowed crate registries. Defaults to the crates.io index
238+
# if not specified. If it is specified but empty, no registries are allowed.
239+
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
240+
# List of URLs for allowed Git repositories
241+
allow-git = []
242+
243+
[sources.allow-org]
244+
# github.com organizations to allow git sources for
245+
github = []
246+
# gitlab.com organizations to allow git sources for
247+
gitlab = []
248+
# bitbucket.org organizations to allow git sources for
249+
bitbucket = []

0 commit comments

Comments
 (0)