|
3 | 3 | # More documentation for the licenses section can be found here: |
4 | 4 | # https://github.com/EmbarkStudios/cargo-deny#the-licenses-section |
5 | 5 |
|
6 | | -# Uncomment the following line to change the lint level for unlicensed crates [possible values: "deny", "allow" or "warn"]. |
| 6 | +# Uncomment the following line to change the lint level for unlicensed crates |
| 7 | +# [possible values: "deny", "allow" or "warn"]. |
7 | 8 | #unlicensed = "deny" |
8 | 9 |
|
9 | | -# Uncomment the following line to explictly allow certain licenses [possible values: any SPDX 2.1 identifier]. |
| 10 | +# Uncomment the following line to explictly allow certain licenses |
| 11 | +# See https://spdx.org/licenses/ for list of possible licenses |
| 12 | +# [possible values: any SPDX 3.7 short identifier (+ optional exception)]. |
10 | 13 | #allow = [] |
11 | 14 |
|
12 | | -# Uncomment the following line to explictly disallow certain licenses [possible values: any SPDX 2.1 identifier]. |
| 15 | +# Uncomment the following line to explictly disallow certain licenses |
| 16 | +# See https://spdx.org/licenses/ for list of possible licenses |
| 17 | +# [possible values: any SPDX 3.7 short identifier (+ optional exception)]. |
13 | 18 | #deny = [] |
14 | 19 |
|
15 | | -# Uncomment the following line to change the lint level for licenses considered copyleft [possible values: "deny", "allow" or "warn"]. |
| 20 | +# Uncomment the following line to change the lint level for licenses considered copyleft |
| 21 | +# [possible values: "deny", "allow" or "warn"]. |
16 | 22 | #copyleft = "warn" |
17 | 23 |
|
18 | | -# Uncomment the following line to approve or deny OSI-approved or FSF Free/Libre licenses [possible values: "both", "either", "osi-only", "fsf-only" or "neither"]. |
| 24 | +# Uncomment the following line to approve or deny OSI-approved or FSF Free/Libre licenses |
| 25 | +# [possible values: "both", "either", "osi-only", "fsf-only" or "neither"]. |
19 | 26 | #allow-osi-fsf-free = "neither" |
20 | 27 |
|
21 | | -# Uncomment the following line to change the confidence threshold. [possible values: any between 0.0 and 1.0]. |
22 | | -# The higher the value, the more closely the license text must be to the canonical license text of a valid SPDX license file. |
| 28 | +# Uncomment the following line to change the confidence threshold. The higher the value, |
| 29 | +# the more closely the license text must be to the canonical license text of a valid |
| 30 | +# SPDX license file. |
| 31 | +# [possible values: any between 0.0 and 1.0]. |
23 | 32 | #confidence-threshold = 0.8 |
24 | 33 |
|
25 | 34 | [bans] |
26 | 35 | # This section is considered when running `cargo deny check ban`. |
27 | 36 | # More documentation about the 'bans' section can be found here: |
28 | 37 | # https://github.com/EmbarkStudios/cargo-deny#crate-bans-cargo-deny-check-ban |
29 | 38 |
|
30 | | -# Uncomment the following line to change what happens when multiple versions of the same crate are encountered [possible values: "deny", "warn" or "allow"]. |
| 39 | +# Uncomment the following line to change what happens when multiple versions of the same |
| 40 | +# crate are encountered |
| 41 | +# [possible values: "deny", "warn" or "allow"]. |
31 | 42 | #multiple-versions = "warn" |
32 | 43 |
|
33 | | -# Uncomment the following line to change the highlighting variant used to multiple versions of the same crate when creating |
34 | | -# a dotgraph of your crates dependencies [possible values: "lowest-version", "simplest-path" or "all"]. |
| 44 | +# Uncomment the following line to change the highlighting variant used to multiple versions |
| 45 | +# of the same crate when creating a dotgraph of your crates dependencies |
| 46 | +# [possible values: "lowest-version", "simplest-path" or "all"]. |
35 | 47 | #highlight = "all" |
36 | 48 |
|
37 | 49 | # Uncomment the following line to allow specific crates. |
|
43 | 55 | # Uncomment the following line to skip specific crates. |
44 | 56 | #skip = [] |
45 | 57 |
|
46 | | -# Uncomment the following line to skip specific crates (including different versions of the same crate down the dependency |
47 | | -# tree). By default, the depth is infinite. If however desired, the depth can be ajusted. |
| 58 | +# Uncomment the following line to skip specific crates (including different versions of the |
| 59 | +# same crate down the dependency tree). By default, the depth is infinite, but you can also |
| 60 | +# specify `depth = <integer>` to limit it. |
48 | 61 | #skip-tree = [] |
0 commit comments