1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# 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
[]
# NOTE(eddyb) see https://github.com/EmbarkStudios/cargo-deny/pull/611.
= 2
# The lint level for crates that have been yanked from their source registry
= "deny"
# 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
[]
# NOTE(eddyb) see https://github.com/EmbarkStudios/cargo-deny/pull/611.
= 2
# List of explicitly allowed licenses
# See https://spdx.org/licenses/ for list of possible licenses
# [possible values: any SPDX 3.11 short identifier (+ optional exception)].
= [
"MIT",
"Apache-2.0",
"Unicode-DFS-2016",
]
# 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
[]
# Lint level for when multiple versions of the same crate are detected
= "deny"
# Lint level for when a crate version requirement is `*`
= "deny"
# 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
[]
# Lint level for what to happen when a crate from a crate registry that is not
# in the allow list is encountered
= "deny"
# Lint level for what to happen when a crate from a git repository that is not
# in the allow list is encountered
= "deny"