Fork of daniellemaywood.uk/gleam — Wasm codegen work
1.3 kB
59 lines
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 "RUSTSEC-2021-0145"
7]
8
9# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
10[licenses]
11allow = [
12 "MIT",
13 "Apache-2.0",
14 "MPL-2.0",
15 "ISC",
16 "OpenSSL",
17 "CC0-1.0",
18 "BSD-3-Clause",
19 "Unicode-DFS-2016",
20 "BSL-1.0",
21]
22confidence-threshold = 0.8
23
24[[licenses.clarify]]
25name = "ring"
26version = "*"
27expression = "MIT AND ISC AND OpenSSL"
28license-files = [{ path = "LICENSE", hash = 0xbd0eed23 }]
29
30[licenses.private]
31ignore = false
32registries = []
33
34# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
35[bans]
36multiple-versions = "allow"
37wildcards = "allow"
38highlight = "all"
39allow = []
40deny = []
41skip = []
42skip-tree = []
43
44# https://embarkstudios.github.io/cargo-deny/checks/sources/cfg.html
45[sources]
46unknown-registry = "deny"
47unknown-git = "deny"
48allow-registry = ["https://github.com/rust-lang/crates.io-index"]
49allow-git = [
50 # "https://github.com/gleam-lang/hexpm-rust",
51]
52
53[[licenses.clarify]]
54name = "encoding_rs"
55version = "*"
56expression = "(Apache-2.0 OR MIT) AND BSD-3-Clause"
57license-files = [
58 { path = "COPYRIGHT", hash = 0x39f8ad31 }
59]