diff --git a/src/nix/host/ssh.rs b/src/nix/host/ssh.rs index 6af34e9..f61a559 100644 --- a/src/nix/host/ssh.rs +++ b/src/nix/host/ssh.rs @@ -1,4 +1,4 @@ -use std::collections::{HashMap, HashSet}; +use std::collections::HashMap; use std::convert::TryInto; use std::path::PathBuf; use std::process::Stdio; @@ -27,7 +27,6 @@ pub struct Ssh { ssh_config: Option, friendly_name: String, - path_cache: HashSet, progress_bar: TaskProgress, logs: String, } @@ -108,7 +107,6 @@ impl Ssh { port: None, ssh_config: None, friendly_name, - path_cache: HashSet::new(), progress_bar: TaskProgress::default(), logs: String::new(), }