File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ packages:
16
16
registry : local
17
17
-
name :
crates.io/[email protected]
18
18
registry : local
19
- - name : crates.io/cargo-deny@0.13.9
19
+ - name : crates.io/cargo-deny@0.16.1
20
20
registry : local
21
21
-
name :
crates.io/[email protected]
22
22
registry : local
Original file line number Diff line number Diff line change 1
1
[licenses ]
2
- unlicensed = " deny"
3
- default = " deny"
4
- copyleft = " deny"
5
2
allow = [
6
3
" 0BSD" ,
7
4
" Apache-2.0" ,
@@ -53,4 +50,12 @@ ignore = [
53
50
# alert is received during a handshake, `complete_io` does not terminate.
54
51
# Vulnerable version only used in dev-dependencies
55
52
" RUSTSEC-2024-0336" ,
53
+
54
+ # unmaintained dependencies
55
+ " RUSTSEC-2021-0139" , # ansi_term
56
+ " RUSTSEC-2024-0388" , # derivative
57
+ " RUSTSEC-2024-0384" , # instant`
58
+ " RUSTSEC-2020-0168" , # mach
59
+ " RUSTSEC-2024-0370" , # proc-macro-error
60
+ " RUSTSEC-2024-0320" , # yaml-rust
56
61
]
Original file line number Diff line number Diff line change 14
14
if [[ " $( cargo-nextest --version) " != " cargo-nextest 0.9.72" ]] ; then
15
15
rustup run stable cargo install cargo-nextest --version 0.9.72 --force --locked
16
16
fi
17
- if ! cargo deny --version >& /dev/null ; then
18
- rustup run stable cargo install cargo-deny --force --locked
17
+ if [[ " $( cargo- deny --version) " != " cargo-deny 0.16.1 " ]] ; then
18
+ rustup run stable cargo install cargo-deny --version 0.16.1 -- force --locked
19
19
fi
20
20
if ! dd-rust-license-tool --help >& /dev/null ; then
21
21
rustup run stable cargo install dd-rust-license-tool --version 1.0.2 --force --locked
You can’t perform that action at this time.
0 commit comments