server: fix clippy warning

The clippy::uninlined_format_args warning in 1.67 was downgraded to
pedantic in 1.67.1 due to lack of support in rust-analyzer, so we're not
updating that one yet.
This commit is contained in:
Valentin Tolmer
2023-02-10 11:37:36 +01:00
committed by nitnelave
parent 8f2c5b397c
commit 96eb17a963
4 changed files with 13 additions and 10 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
#![forbid(unsafe_code)]
#![forbid(non_ascii_idents)]
#![allow(clippy::nonstandard_macro_braces)]
// TODO: Remove next line once ubuntu upgrades rustc to >=1.67.1
#![allow(clippy::uninlined_format_args)]
use std::time::Duration;