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

View File

@@ -1,3 +1,5 @@
#![allow(clippy::uninlined_format_args)]
use std::collections::HashSet;
use anyhow::{anyhow, Result};