We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23df0f9 commit 1ed621dCopy full SHA for 1ed621d
2 files changed
deny.toml
@@ -12,4 +12,8 @@ ignore = [
12
# no private-key decryption — so the key-recovery attack doesn't apply. No
13
# fixed rsa release exists yet.
14
"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",
19
]
src/html/issue_list.rs
@@ -44,6 +44,8 @@ struct IssueListTemplate {
44
chrome: PageChrome,
45
}
46
47
+// axum extractors, not a real argument list
48
+#[allow(clippy::too_many_arguments)]
49
pub async fn handler(
50
active: ActiveOrg,
51
State(state): State<AppState>,
0 commit comments