diff --git a/Cargo.toml b/Cargo.toml index a47cd1d..87c0389 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kuska-ssb" -version = "0.1.1" +version = "0.1.2" authors = ["Dhole ", "Adria Massanet "] edition = "2018" @@ -18,16 +18,8 @@ crossbeam = "0.7.3" log = "0.4.8" env_logger = "0.7.1" serde = { version = "1.0.104", features = ["derive"] } -serde_json = { version = "1.0.41", features=["preserve_order","arbitrary_precision"] } +serde_json = { version = "1.0.48", features=["preserve_order","arbitrary_precision"] } dirs = "2.0" -futures = "0.3.1" -snap = "0.2.5" -signal-hook = "0.1.12" +futures = "0.3.4" lazy_static = "1.4.0" -rand = "0.7.2" - -[dev-dependencies] -kuska-handshake = { git = "https://github.com/Kuska-ssb/kuska-handshake", branch = "master", features=["sync","async_std","tokio_compat"] } -tokio = { version = "0.2.6", features=["full"] } -actix-rt = "1.0.0" -actix-web = "2.0.0" +rand = "0.7.3" \ No newline at end of file diff --git a/src/keystore/patchwork.rs b/src/keystore/patchwork.rs index 56e72ad..51cac70 100644 --- a/src/keystore/patchwork.rs +++ b/src/keystore/patchwork.rs @@ -20,8 +20,6 @@ fn to_ioerr(err: T) -> io::Error { io::Error::new(io::ErrorKind::Other, err.to_string()) } -#[allow(clippy::new_without_default)] - pub fn from_patchwork_local() -> Result { let home_dir = dirs::home_dir().ok_or(Error::HomeNotFound)?; let local_key_file = format!("{}/.ssb/secret", home_dir.to_string_lossy());