|
| 1 | +# The graph table configures how the dependency graph is constructed and thus |
| 2 | +# which crates the checks are performed against |
| 3 | +[graph] |
| 4 | +targets = [] |
| 5 | +exclude = [] |
| 6 | +all-features = false |
| 7 | +no-default-features = false |
| 8 | +features = [] |
| 9 | + |
| 10 | +[output] |
| 11 | +feature-depth = 1 |
| 12 | + |
| 13 | +# This section is considered when running `cargo deny check advisories` |
| 14 | +# More documentation for the advisories section can be found here: |
| 15 | +# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html |
| 16 | +[advisories] |
| 17 | +ignore = [] |
| 18 | +unmaintained = "workspace" |
| 19 | + |
| 20 | +# This section is considered when running `cargo deny check licenses` |
| 21 | +# More documentation for the licenses section can be found here: |
| 22 | +# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html |
| 23 | +[licenses] |
| 24 | +allow = ["MIT", "Apache-2.0", "Unicode-3.0", "Unlicense", "CDLA-Permissive-2.0", "MPL-2.0", "ISC", "CC0-1.0", |
| 25 | + "BUSL-1.1", "BSD-3-Clause", "MITNFA", "Zlib", "BSD-2-Clause", |
| 26 | +] |
| 27 | +confidence-threshold = 0.8 |
| 28 | +exceptions = [] |
| 29 | + |
| 30 | +[licenses.private] |
| 31 | +ignore = false |
| 32 | +registries = [] |
| 33 | + |
| 34 | +# This section is considered when running `cargo deny check bans`. |
| 35 | +# More documentation about the 'bans' section can be found here: |
| 36 | +# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html |
| 37 | +[bans] |
| 38 | +# Lint level for when multiple versions of the same crate are detected |
| 39 | +multiple-versions = "allow" |
| 40 | +wildcards = "allow" |
| 41 | +highlight = "all" |
| 42 | +workspace-default-features = "allow" |
| 43 | +external-default-features = "allow" |
| 44 | +allow = [] |
| 45 | +deny = [] |
| 46 | +skip = [] |
| 47 | +skip-tree = [] |
| 48 | +[bans.workspace-dependencies] |
| 49 | +duplicates = "deny" |
| 50 | +unused = "deny" |
| 51 | + |
| 52 | +# This section is considered when running `cargo deny check sources`. |
| 53 | +# More documentation about the 'sources' section can be found here: |
| 54 | +# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html |
| 55 | +[sources] |
| 56 | +unknown-registry = "warn" |
| 57 | +unknown-git = "warn" |
| 58 | +allow-registry = ["https://github.com/rust-lang/crates.io-index"] |
| 59 | +allow-git = [] |
| 60 | + |
| 61 | +[sources.allow-org] |
| 62 | +github = ["BitcreditProtocol"] |
| 63 | +gitlab = [] |
| 64 | +bitbucket = [] |
0 commit comments