|
| 1 | +[licenses] |
| 2 | +# This section is considered when running `cargo deny check license` |
| 3 | +# More documentation for the licenses section can be found here: |
| 4 | +# https://github.com/EmbarkStudios/cargo-deny#the-licenses-section |
| 5 | + |
| 6 | +# Uncomment the following line to change the lint level for unlicensed crates [possible values: "deny", "allow" or "warn"]. |
| 7 | +#unlicensed = "deny" |
| 8 | + |
| 9 | +# Uncomment the following line to explictly allow certain licenses [possible values: any SPDX 2.1 identifier]. |
| 10 | +#allow = [] |
| 11 | + |
| 12 | +# Uncomment the following line to explictly disallow certain licenses [possible values: any SPDX 2.1 identifier]. |
| 13 | +#deny = [] |
| 14 | + |
| 15 | +# Uncomment the following line to change the lint level for licenses considered copyleft [possible values: "deny", "allow" or "warn"]. |
| 16 | +#copyleft = "warn" |
| 17 | + |
| 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"]. |
| 19 | +#allow-osi-fsf-free = "neither" |
| 20 | + |
| 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. |
| 23 | +#confidence-threshold = 0.8 |
| 24 | + |
| 25 | +[bans] |
| 26 | +# This section is considered when running `cargo deny check ban`. |
| 27 | +# More documentation about the 'bans' section can be found here: |
| 28 | +# https://github.com/EmbarkStudios/cargo-deny#crate-bans-cargo-deny-check-ban |
| 29 | + |
| 30 | +# Uncomment the following line to change what happens when multiple versions of the same crate are encountered [possible values: "deny", "warn" or "allow"]. |
| 31 | +#multiple-versions = "warn" |
| 32 | + |
| 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"]. |
| 35 | +#highlight = "all" |
| 36 | + |
| 37 | +# Uncomment the following line to allow specific crates. |
| 38 | +#allow = [] |
| 39 | + |
| 40 | +# Uncomment the following line to deny specific crates. |
| 41 | +#deny = [] |
| 42 | + |
| 43 | +# Uncomment the following line to skip specific crates. |
| 44 | +#skip = [] |
| 45 | + |
| 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. |
| 48 | +#skip-tree = [] |
0 commit comments