Skip to content

Commit 460d070

Browse files
committed
fix: resolve cargo-deny license failures and code coverage toolchain issue
- Add missing licenses to allow list: Unicode-3.0, Zlib, CDLA-Permissive-2.0 - Fix code coverage workflow by adding missing toolchain parameter Resolves failing CI checks in PR #23.
1 parent f202a71 commit 460d070

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,8 @@ jobs:
5858

5959
- name: Install Rust
6060
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # stable
61+
with:
62+
toolchain: stable
6163

6264
- name: Cache cargo
6365
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5

deny.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@ allow = [
2525
"BSD-3-Clause",
2626
"ISC",
2727
"Unicode-DFS-2016",
28+
"Unicode-3.0",
2829
"CC0-1.0",
2930
"MPL-2.0",
3031
"Unlicense",
32+
"Zlib",
33+
"CDLA-Permissive-2.0",
3134
]
3235

3336
confidence-threshold = 0.8

0 commit comments

Comments
 (0)