Skip to content

Commit ed1fb9a

Browse files
authored
ci: run cargo deny (#152)
1 parent 7767f62 commit ed1fb9a

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/rust.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,10 @@ jobs:
9696
with:
9797
components: rustfmt
9898
- run: cargo +nightly fmt --check -- --color always
99+
100+
cargo-deny:
101+
name: Deny
102+
runs-on: ubuntu-latest
103+
steps:
104+
- uses: actions/checkout@v4
105+
- uses: EmbarkStudios/cargo-deny-action@v2

deny.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ ignore = [
88
# proc-macro-error is a transitive dependency of a number of dependencies,
99
# this is allowed for now til the ecosystem migrates away
1010
"RUSTSEC-2024-0370",
11+
# instant is dependency of notify and tao, until those remove instant this
12+
# will be allowed
13+
"RUSTSEC-2024-0384",
1114
]
1215

1316
[licenses]
@@ -28,7 +31,7 @@ allow = [
2831
"MIT",
2932
"MPL-2.0",
3033
"OpenSSL",
31-
"Unicode-DFS-2016",
34+
"Unicode-3.0",
3235
"Zlib",
3336
]
3437

0 commit comments

Comments
 (0)