/ deny.toml
deny.toml
1 # Alpha/Delta cargo-deny configuration 2 # https://embarkstudios.github.io/cargo-deny/ 3 # Updated for cargo-deny 0.19.0 4 5 [graph] 6 all-features = true 7 8 [advisories] 9 db-path = "~/.cargo/advisory-db" 10 db-urls = ["https://github.com/rustsec/advisory-db"] 11 # Severity threshold (unmaintained/yanked not enforced) 12 unmaintained = "none" 13 yanked = "warn" 14 ignore = [] 15 16 [licenses] 17 allow = [ 18 "MIT", 19 "Apache-2.0", 20 "Apache-2.0 WITH LLVM-exception", 21 "BSD-2-Clause", 22 "BSD-3-Clause", 23 "ISC", 24 "Zlib", 25 "0BSD", 26 "CC0-1.0", 27 "MPL-2.0", 28 "Unicode-3.0", 29 "Unicode-DFS-2016", 30 "Unlicense", 31 "CDLA-Permissive-2.0", 32 ] 33 34 [[licenses.clarify]] 35 name = "ring" 36 expression = "ISC AND MIT AND OpenSSL" 37 license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }] 38 39 [[licenses.clarify]] 40 name = "webpki" 41 expression = "ISC" 42 license-files = [{ path = "LICENSE", hash = 0x001c7e6c }] 43 44 [bans] 45 multiple-versions = "warn" 46 wildcards = "allow" 47 skip = [] 48 deny = [ 49 { name = "openssl", wrappers = ["openssl-sys"] }, 50 ] 51 52 [bans.build] 53 allow-build-scripts = ["*"] 54 55 [sources] 56 unknown-registry = "deny" 57 unknown-git = "deny" 58 allow-registry = ["https://github.com/rust-lang/crates.io-index"] 59 allow-git = [ 60 "https://source.ac-dc.network", 61 ] 62 63 [sources.allow-org] 64 github = [ 65 "AluVM", 66 "rust-lang", 67 ] 68 69 [output] 70 feature-depth = 1