Skip to content

Commit 744f7b7

Browse files
authored
Create deny.toml
1 parent 4ea7c1c commit 744f7b7

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

deny.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# deny.toml
2+
[advisories]
3+
vulnerability = "deny"
4+
unmaintained = "warn"
5+
yanked = "warn"
6+
notice = "warn"
7+
8+
[licenses]
9+
unlicensed = "deny"
10+
allow = [
11+
"MIT",
12+
"Apache-2.0",
13+
"BSD-2-Clause",
14+
"BSD-3-Clause",
15+
"ISC",
16+
"Unicode-DFS-2016",
17+
"Zlib",
18+
"CC0-1.0",
19+
"MPL-2.0",
20+
]
21+
22+
[bans]
23+
multiple-versions = "warn"
24+
wildcards = "deny"
25+
26+
[sources]
27+
unknown-registry = "deny"
28+
unknown-git = "warn"
29+
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
30+
allow-git = []

0 commit comments

Comments
 (0)