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 43cf0ea commit 94db370Copy full SHA for 94db370
.github/workflows/license.yml
@@ -0,0 +1,23 @@
1
+name: License Check
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ license-audit:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
14
+ - name: Set up Rust
15
+ uses: dtolnay/rust-toolchain
16
+ with:
17
+ toolchain: 1.85.0
18
19
+ - name: Install cargo-deny
20
+ run: cargo install cargo-deny
21
22
+ - name: Run cargo-deny
23
+ run: cargo deny check licenses
deny.toml
@@ -0,0 +1,15 @@
+[licenses]
+allow = [
+ "0BSD",
+ "Apache-2.0",
+ "BSD-2-Clause",
+ "BSD-3-Clause",
+ "CDLA-Permissive-2.0",
+ "CC0-1.0",
+ "ISC",
+ "MIT",
+ "Unlicensed",
+ "Unicode-DFS-2016",
+ "Unicode-3.0",
+ "Zlib",
+]
0 commit comments