chore: Change workspace inheritance syntax for better covector support (#1092)

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/8333326213

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
Fabian-Lars
2024-03-18 20:40:31 +00:00
committed by tauri-bot
parent dffe91c9e2
commit b2fb75dd06

View File

@@ -2,19 +2,19 @@
name = "tauri-plugin-stronghold"
version = "0.0.0"
description = "Store secrets and keys using the IOTA Stronghold encrypted database."
authors.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
authors = { workspace = true }
license = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde.workspace = true
serde_json.workspace = true
tauri.workspace = true
log.workspace = true
thiserror.workspace = true
serde = { workspace = true }
serde_json = { workspace = true }
tauri = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
iota_stronghold = "1"
iota-crypto = "0.23"
hex = "0.4"