diff --git a/Cargo.lock b/Cargo.lock index 2f7b4137..94509a69 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2749,7 +2749,6 @@ dependencies = [ name = "radicle-ssh" version = "0.9.0" dependencies = [ - "log", "thiserror 1.0.69", "winpipe", "zeroize", diff --git a/crates/radicle-ssh/Cargo.toml b/crates/radicle-ssh/Cargo.toml index cb4a3d49..b192e14b 100644 --- a/crates/radicle-ssh/Cargo.toml +++ b/crates/radicle-ssh/Cargo.toml @@ -14,7 +14,6 @@ edition.workspace = true rust-version.workspace = true [dependencies] -log = { workspace = true } thiserror = { workspace = true } zeroize = { workspace = true } diff --git a/crates/radicle-ssh/src/agent/client.rs b/crates/radicle-ssh/src/agent/client.rs index df807498..66a69153 100644 --- a/crates/radicle-ssh/src/agent/client.rs +++ b/crates/radicle-ssh/src/agent/client.rs @@ -8,7 +8,6 @@ pub use std::os::unix::net::UnixStream as Stream; #[cfg(windows)] pub use winpipe::WinStream as Stream; -use log::*; use thiserror::Error; use zeroize::Zeroize as _;