fix(deps): update rust crate iota_stronghold to v1 (#70)

* fix(deps): update rust crate iota_stronghold to v1

* fix compile error

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: FabianLars <fabianlars@fabianlars.de>
This commit is contained in:
renovate[bot]
2023-01-07 20:32:23 +01:00
committed by GitHub
parent 58144ecb41
commit 66322a3426
3 changed files with 112 additions and 108 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ serde_json.workspace = true
tauri.workspace = true
log.workspace = true
thiserror.workspace = true
iota_stronghold = { version = "0.8" }
iota_stronghold = "1"
iota-crypto = "0.15"
hex = "0.4"
zeroize = { version = "1", features = ["zeroize_derive"] }
+2 -1
View File
@@ -48,7 +48,8 @@ impl Stronghold {
}
pub fn save(&self) -> Result<()> {
self.inner.commit(&self.path, &self.keyprovider)?;
self.inner
.commit_with_keyprovider(&self.path, &self.keyprovider)?;
Ok(())
}