refactor: enable clippy::std_instead_of_core lint

This commit is contained in:
Benoît CORTIER 2024-11-20 00:22:03 +09:00 committed by Benoît Cortier
parent d26e64e4c2
commit 807eb59b07
74 changed files with 143 additions and 140 deletions

View file

@ -23,7 +23,7 @@ extern crate tracing;
use std::io::Write as _;
use std::net::TcpStream;
use std::path::PathBuf;
use std::time::Duration;
use core::time::Duration;
use anyhow::Context as _;
use connector::Credentials;