File tree Expand file tree Collapse file tree 2 files changed +49
-0
lines changed
Expand file tree Collapse file tree 2 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 9494 target/
9595 - name : Cargo doc
9696 run : cargo doc --no-deps --document-private-items --locked
97+
98+ licensing :
99+ name : Licenses
100+ runs-on : " ubuntu-latest"
101+ steps :
102+ - name : Checkout Code
103+ uses : actions/checkout@v4
104+ - name : Rust cache
105+ uses : Swatinem/rust-cache@v2
106+ with :
107+ shared-key : " licensing-cache"
108+ cache-all-crates : " true"
109+ cache-directories : |
110+ ~/.cargo/registry/index/
111+ ~/.cargo/registry/cache/
112+ ~/.cargo/git/db/
113+ target/
114+ - uses : EmbarkStudios/cargo-deny-action@v2.0.12
115+ with :
116+ manifest-path : ./Cargo.toml
117+ command : check
Original file line number Diff line number Diff line change 1+ [graph ]
2+ all-features = true
3+
4+ [advisories ]
5+ unmaintained = " workspace"
6+ ignore = [
7+ ]
8+
9+ [bans ]
10+ multiple-versions = " deny"
11+ wildcards = " deny"
12+ allow-wildcard-paths = true
13+
14+ [sources ]
15+ unknown-registry = " deny"
16+ unknown-git = " deny"
17+
18+ [licenses ]
19+ confidence-threshold = 0.95
20+ allow = [
21+ " Apache-2.0" ,
22+ " MIT" ,
23+ ]
24+ exceptions = [
25+ # Each entry is the crate and version constraint, and its specific allow
26+ # list
27+ { crate = " unicode-ident" , allow = [" Unicode-3.0" ] },
28+ ]
You can’t perform that action at this time.
0 commit comments