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.
1 parent 344aa99 commit 4ac64e9Copy full SHA for 4ac64e9
.github/workflows/ci.yml
@@ -57,6 +57,10 @@ jobs:
57
if: matrix.version.name == 'msrv'
58
run: just downgrade-for-msrv
59
60
+ - name: deny check
61
+ if: matrix.version.name == 'stable' && matrix.target.os == 'ubuntu-latest'
62
+ uses: EmbarkStudios/cargo-deny-action@f2ba7abc2abebaf185c833c3961145a3c275caad # v2.0.13
63
+
64
- name: check minimal
65
run: cargo ci-min
66
deny.toml
@@ -0,0 +1,17 @@
1
+[licenses]
2
+confidence-threshold = 0.90
3
+allow = [
4
+ "Apache-2.0",
5
+ "MIT",
6
+ "Unicode-3.0",
7
+ "BSD-3-Clause",
8
+ "Zlib",
9
+ "ISC",
10
+]
11
+private = { ignore = true }
12
13
+[bans]
14
+multiple-versions = "allow"
15
16
+[bans.build]
17
+executables = "deny"
0 commit comments