(general) bump libs and version

This commit is contained in:
adria0 2020-02-26 19:24:49 +01:00
parent 26d7e8cfd8
commit 90d83f9ce1
2 changed files with 4 additions and 14 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "kuska-ssb"
version = "0.1.1"
version = "0.1.2"
authors = ["Dhole <dhole@riseup.net>", "Adria Massanet <adria@codecontext.io>"]
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"

View File

@ -20,8 +20,6 @@ fn to_ioerr<T: ToString>(err: T) -> io::Error {
io::Error::new(io::ErrorKind::Other, err.to_string())
}
#[allow(clippy::new_without_default)]
pub fn from_patchwork_local() -> Result<OwnedIdentity> {
let home_dir = dirs::home_dir().ok_or(Error::HomeNotFound)?;
let local_key_file = format!("{}/.ssb/secret", home_dir.to_string_lossy());