| # Licensed under the Apache-2.0 license |
| |
| # cargo-deny configuration file |
| # Minimal configuration for OpenPRoT security checks |
| |
| [advisories] |
| version = 2 |
| ignore = [] |
| |
| [licenses] |
| version = 2 |
| allow = [ |
| "MIT", |
| "Apache-2.0", |
| "Apache-2.0 WITH LLVM-exception", |
| "BSD-2-Clause", |
| "BSD-3-Clause", |
| "ISC", |
| "Unicode-DFS-2016", |
| "Unicode-3.0", |
| "CC0-1.0", |
| ] |
| |
| [bans] |
| multiple-versions = "warn" |
| wildcards = "allow" |
| deny = [] |
| |
| [sources] |
| unknown-registry = "warn" |
| unknown-git = "warn" |
| allow-registry = ["https://github.com/rust-lang/crates.io-index"] |