-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
31 lines (29 loc) · 989 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
28
29
30
31
[package]
name = "nym-vpn-store"
version.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
documentation.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
bip39.workspace = true
nym-crypto = { workspace = true, features = ["rand", "asymmetric"] }
nym-pemstore.workspace = true
nym-validator-client.workspace = true
rand.workspace = true
rand_chacha.workspace = true
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing.workspace = true
zeroize.workspace = true
windows-sys = { workspace = true, features = ["Win32_System_Threading", "Win32_System_SystemServices"] }
widestring.workspace = true
winapi = { version = "0.3" }
[dev-dependencies]
bip39 = { workspace = true, features = ["rand"] }
tempfile.workspace = true
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }