⭐️ A friendly language for building type-safe, scalable systems!
at main 1.3 kB view raw
1# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html 2[advisories] 3db-path = "~/.cargo/advisory-db" 4db-urls = ["https://github.com/rustsec/advisory-db"] 5ignore = [ 6] 7 8# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html 9[licenses] 10allow = [ 11 "MIT", 12 "Apache-2.0", 13 "MPL-2.0", 14 "ISC", 15 "CC0-1.0", 16 "BSD-3-Clause", 17 "Unicode-DFS-2016", 18 "BSL-1.0", 19 "Unicode-3.0", 20] 21confidence-threshold = 0.8 22 23[[licenses.clarify]] 24name = "ring" 25version = "*" 26expression = "MIT AND ISC AND OpenSSL" 27license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }] 28 29[licenses.private] 30ignore = false 31registries = [] 32 33# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html 34[bans] 35multiple-versions = "allow" 36wildcards = "allow" 37highlight = "all" 38allow = [] 39deny = [] 40skip = [] 41skip-tree = [] 42 43# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html 44[sources] 45unknown-registry = "deny" 46unknown-git = "deny" 47allow-registry = ["https://github.com/rust-lang/crates.io-index"] 48allow-git = [ 49 # "https://github.com/gleam-lang/hexpm-rust", 50] 51 52[[licenses.clarify]] 53name = "encoding_rs" 54version = "*" 55expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause" 56license-files = [ 57 { path = "COPYRIGHT", hash = 0x39f8ad31 } 58]