Skip to content

Commit 1ed621d

Browse files
committed
fix: unblock CI clippy gate and ignore unmaintained ttf-parser advisory
1 parent 23df0f9 commit 1ed621d

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

deny.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ ignore = [
1212
# no private-key decryption — so the key-recovery attack doesn't apply. No
1313
# fixed rsa release exists yet.
1414
"RUSTSEC-2023-0071",
15+
# ttf-parser (via charts-rs -> fontdue): author declared the crate
16+
# unmaintained; no fixed release or drop-in replacement exists. Only used
17+
# for server-side chart rendering of our own fonts, not untrusted input.
18+
"RUSTSEC-2026-0192",
1519
]

src/html/issue_list.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ struct IssueListTemplate {
4444
chrome: PageChrome,
4545
}
4646

47+
// axum extractors, not a real argument list
48+
#[allow(clippy::too_many_arguments)]
4749
pub async fn handler(
4850
active: ActiveOrg,
4951
State(state): State<AppState>,

0 commit comments

Comments
 (0)