diff options
author | tcmal <me@aria.rip> | 2024-10-01 15:42:50 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-10-11 23:57:19 +0100 |
commit | 34572a8f3839e37063641fa693029ad52265730a (patch) | |
tree | dd81dfba798039acb638aa1945a58cff023f1c38 /crates/web | |
parent | d7275a13989b82ea8fc7b2320ef0cf2f427f7d5d (diff) |
Stricter clippy lints
Diffstat (limited to 'crates/web')
-rw-r--r-- | crates/web/src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/web/src/main.rs b/crates/web/src/main.rs index d80b232..ad339d8 100644 --- a/crates/web/src/main.rs +++ b/crates/web/src/main.rs @@ -1,3 +1,6 @@ +#![deny(clippy::all, clippy::pedantic, clippy::nursery)] +#![allow(clippy::must_use_candidate, clippy::missing_errors_doc)] + use std::sync::Arc; use axum::{routing::get, Router}; |