-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
88 lines (83 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "emerald-vault"
version = "0.34.0-dev"
authors = ["Igor Artamonov <splix@emeraldpay.io>", "Dmitry Ulanov <dulanov@gmail.com>", "Constantine Kryvomaz <kostiyantynk@gmail.com>", "Stewart Mackenzie <setori88@gmail.com>", "Wei Tang <hi@that.world>"]
description = "Emerald Vault - Key Storage for Emerald Wallet"
homepage = "https://emerald.cash"
repository = "https://github.com/emeraldpay/emerald-vault"
documentation = "https://docs.rs/emerald-vault"
keywords = ["ethereum", "bitcoin", "blockchain", "cryptocurrency"]
categories = ["cryptography"]
readme = "crates.md"
license = "Apache-2.0"
edition = "2021"
autobenches = false
[lib]
name = "emerald_vault"
path = "src/lib.rs"
#crate-type = ["rlib", "cdylib"]
[dependencies]
time = "0.3.5"
futures = "0.3.19"
lazy_static = "1.0"
log = "0.4.14"
regex = "1.5.4"
hex = "0.4.3"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
glob = "0.3.0"
uuid = { version = "1.2.2", features = ["serde", "v4"] }
secp256k1 = { version = "~0.24", features = ["rand", "recovery"] }
# used by secp
rand = "0.8.5"
getrandom = "0.2.4"
byteorder = "1.4.3"
ethabi = "18.0.0"
num = "0.4.0"
bitcoin = "0.29"
ethers-core = { version = "1.0.2", default-features = false, features = ["eip712", "macros"] }
ethers-derive-eip712 = "1.0.2"
aes = "0.8.2"
ctr = "0.9.2"
block-modes = "0.9.1"
sha2 = "0.10.1"
sha3 = "0.10.0"
pbkdf2 = "0.11.0"
scrypt = "0.10.0"
argon2 = "0.4.1"
hmac = "0.12.0"
hyper = { version = "0.12", optional = true }
clippy = { version = "0.0", optional = true }
chrono = "0.4.13"
protobuf = { version = "= 2.25.2", features = ["with-bytes"] }
enum-display-derive = "0.1.1"
fs_extra = "1.2.0"
csv = "1.1.6"
base64 = "0.13.0"
rlp = "0.5.1"
hdpath = { version = "0.6", features = ["with-bitcoin"] }
#hdpath = { path = "../hdpath", features = ["with-bitcoin"] }
byte-array-struct = { version = "0.2.0", features = ["with-serde"] }
bitcoin_hashes = "0.11"
#emerald-hwkey = { path = "../emerald-hwkey" }
#emerald-hwkey = { git = "https://github.com/emeraldpay/emerald-hwkey", branch = "master" }
emerald-hwkey = "0.5"
num-bigint = "0.4"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
image = { version = "0.24.6", default-features = false, features = ["png", "jpeg"] }
itertools = "0.10"
[dev-dependencies]
tempdir = "0.3.7"
quickcheck = "0.9.2"
bencher = "0.1.5"
# quickcheck_macros = "0.4"
simple_logger = "4.0.0"
itertools = "0.10"
[features]
default = []
dev = ["clippy"]
hwkey-emulate = ["emerald-hwkey/speculos"]
[[bench]]
name = "bench_crypto"
harness = false