forked from tauri-apps/tauri-plugin-stronghold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 830 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "tauri-plugin-stronghold"
version = "0.1.0"
authors = [ "Tauri Programme within The Commons Conservancy" ]
license = "Apache-2.0 OR MIT"
description = "A Tauri plugin for easily interfacing with IOTA Stronghold"
edition = "2018"
exclude = ["/examples", "/webview-dist", "/webview-src", "node_modules"]
[dependencies]
tauri = "1.0.0-rc.3"
thiserror = "1.0"
iota_stronghold = { version = "0.4.1", features = ["communication"] }
stronghold_engine = "0.4"
iota-crypto = { version = "0.5.0", features = ["hmac", "sha", "pbkdf", "slip10"] }
riker = { version = "0.4" }
once_cell = "1.8"
serde = "1.0"
serde_json = "1.0"
async-std = { version = "1.10", features = ["attributes"] }
slog = "2.7"
hex = "0.4"
zeroize = { version = "1.4", features = ["zeroize_derive"] }
[dev-dependencies]
rand = "0.8"
rusty-fork = "0.3"