Tidy up an unused import warning

Now
  cargo +stable clippy --locked --offline --workspace --all-targets
is clean.
This commit is contained in:
Ian Jackson 2023-03-28 15:48:09 +01:00
parent 5ff24c9f84
commit b982ee678d
1 changed files with 3 additions and 1 deletions

View File

@ -5,7 +5,9 @@ use std::sync::Arc;
use futures::task::SpawnError;
use safelog::{Redacted, Sensitive};
#[cfg(feature = "onion-client")]
use safelog::Redacted;
use safelog::Sensitive;
use thiserror::Error;
use tor_circmgr::TargetPorts;
use tor_error::{ErrorKind, HasKind};