/ .cargo-deny.toml
.cargo-deny.toml
 1  # Config file reference can be found at https://embarkstudios.github.io/cargo-deny/checks/cfg.html.
 2  
 3  [graph]
 4  all-features        = true
 5  exclude-dev         = true
 6  no-default-features = true
 7  
 8  [advisories]
 9  yanked = "deny"
10  
11  [bans]
12  allow-wildcard-paths = false
13  multiple-versions    = "allow"
14  
15  [licenses]
16  allow                  = ["Apache-2.0", "BSL-1.0", "MIT", "Unicode-3.0", "Zlib"]
17  private                = { ignore = false }
18  unused-allowed-license = "deny"
19  
20  [[licenses.clarify]]
21  expression    = "MIT AND ISC AND OpenSSL"
22  license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
23  name          = "ring"
24  
25  [sources]
26  unknown-git      = "deny"
27  unknown-registry = "deny"