We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ea7c1c commit 744f7b7Copy full SHA for 744f7b7
1 file changed
deny.toml
@@ -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