Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,9 @@ jobs:
toolchain: 1.73.0

- name: Install cargo deny
uses: taiki-e/install-action@2.20.16
tool: cargo-deny
uses: taiki-e/install-action@v2
with:
tool: cargo-deny@0.18.6

- run: cargo deny check

Expand Down Expand Up @@ -214,7 +215,7 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: "1.61"
toolchain: "1.73"
- run: cargo check --lib --all-features

cross:
Expand Down Expand Up @@ -274,5 +275,6 @@ jobs:
with:
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
files: ./lcov.info
dry_run: true
fail_ci_if_error: true
verbose: true
15 changes: 5 additions & 10 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[advisories]
unmaintained = "deny"
yanked = "deny"
notice = "deny"
ignore = [
"RUSTSEC-2025-0009",
"RUSTSEC-2025-0010",
"RUSTSEC-2026-0009",
]

[licenses]
allow = [
"Apache-2.0",
"ISC",
"LicenseRef-ring",
"LicenseRef-webpki",
"MIT",
"Unicode-DFS-2016",
]
confidence-threshold = 1.0

Expand Down Expand Up @@ -39,9 +40,3 @@ wildcards = "deny"
[sources]
unknown-registry = "deny"
unknown-git = "deny"

# Dev dependency only.
# TODO(@cpu): Remove once rcgen cuts a release w/ crl support.
allow-git = [
"https://github.com/est31/rcgen"
]
Loading