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