forked from roynalnaruto/eth-keystore-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 1.1 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
[package]
name = "eth-keystore"
version = "0.5.0"
authors = ["Rohit Narurkar <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A minimalist library to interact with encrypted JSON keystores"
documentation = "https://docs.rs/eth-keystore"
repository = "https://github.com/roynalnaruto/eth-keystore-rs"
readme = "README.md"
keywords = ["ethereum", "web3", "wallet"]
exclude = ["tests/test-keys/*"]
[dependencies]
aes = "0.8.0"
ctr = "0.9.0"
digest = "0.10.0"
hex = "0.4.2"
hmac = "0.12.0"
pbkdf2 = { version = "0.12.2", default-features = false }
rand = "0.8.4"
scrypt = { version = "0.10.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.78"
sha2 = "0.10.1"
thiserror = { version = "1.0.22", default-features = false }
uuid = { version = "1.6.1", features = ["serde", "v4"] }
blst = { version = "0.3.11" }
# feature = "geth-compat"
ethereum-types = { version = "0.14.1", optional = true }
k256 = { version = "0.11.4", optional = true }
sha3 = { version = "0.10.0" }
[features]
geth-compat = ["ethereum-types", "k256", "k256/ecdsa"]