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