We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 57ccaef + 8191d6c commit 7724dc6Copy full SHA for 7724dc6
deny.toml
@@ -0,0 +1,28 @@
1
+targets = [
2
+ { triple = "x86_64-unknown-linux-gnu" },
3
+ { triple = "x86_64-apple-darwin" },
4
+ { triple = "x86_64-pc-windows-msvc" },
5
+ { triple = "aarch64-linux-android" },
6
+]
7
+
8
+# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html
9
+[advisories]
10
+vulnerability = "deny"
11
+unmaintained = "deny"
12
+yanked = "deny"
13
+ignore = [
14
15
16
+# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html
17
+[licenses]
18
+allow = [
19
+ "Apache-2.0 WITH LLVM-exception",
20
+ "Apache-2.0",
21
+ "MIT",
22
23
24
+# https://embarkstudios.github.io/cargo-deny/checks/bans/cfg.html
25
+[bans]
26
+multiple-versions = "deny"
27
+wildcards = "allow"
28
+deny = []
0 commit comments