-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathCargo.toml
67 lines (61 loc) · 1.82 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "iota_stronghold"
version = "1.1.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
description = "Client interface for Stronghold"
authors = [ "IOTA Stiftung" ]
homepage = "https://wiki.iota.org/stronghold.rs/getting_started"
repository = "https://github.com/iotaledger/stronghold.rs"
keywords = [ "iota", "stronghold", "security" ]
categories = [ "security" ]
[features]
default = [ "std" ]
std = [ ]
insecure = [ ]
[dependencies]
thiserror = { version = "1.0.30" }
zeroize = { version = "1.5.7", default-features = false, features = [ "zeroize_derive" ] }
serde = { version = "1.0", features = [ "derive" ] }
iota-crypto = { version = "0.18.0", default-features = false, features = [
"aes-gcm",
"blake2b",
"aes-kw",
"random",
"ed25519",
"sha",
"hmac",
"bip39-en",
"bip39-jp",
"slip10",
"chacha",
"x25519"
] }
hkdf = { version = "0.12" }
bincode = { version = "1.3" }
pin-project = { version = "1.0.10", optional = true }
futures = { version = "0.3.21", optional = true }
engine = { package = "stronghold_engine", path = "../engine", version = "1.0.0" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/", version = "1.0.0" }
stronghold_derive = { package = "stronghold-derive", path = "../derive", version = "1.0.0" }
rust-argon2 = { version = "=1.0.0" }
[dev-dependencies]
tokio = { version = "1.15.0", features = [ "full" ] }
criterion = { version = "0.4", features = [ "async_tokio" ] }
env_logger = { version = "0.9.0" }
ctor = { version = "0.1.21" }
rand = { version = "0.8.4" }
clap = { version = "3.1.6", features = [ "derive" ] }
log = { version = "0.4.14" }
base64 = { version = "0.13.0" }
regex = { version = "1.5.5" }
libc = { version = "0.2" }
threadpool = { version = "1.8" }
[[bench]]
name = "config"
harness = false
[[example]]
name = "cli"
[[example]]
name = "repl"