-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
60 lines (56 loc) · 1.35 KB
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
[package]
name = "ngWallet-rs"
version = "0.24.0"
description = "secure account management core libary"
homepage = "https://ngin.cash"
repository = "https://github.com/NginProject/ngWallet-rs"
keywords = ["ngin", "blockchain", "ffi", "crypto-wallet", "cold-storage"]
categories = ["embedded", "external-ffi-bindings"]
readme = "README.md"
license = "Apache-2.0"
[lib]
name = "ngWallet_rs"
path = "src/lib.rs"
#crate-type = ["rlib", "cdylib"]
[dependencies]
time = "0.1"
futures = "0.1"
jsonrpc-core = "8.0"
jsonrpc-http-server = "8.0"
lazy_static = "1.0"
log = "0.4"
regex = "1.0"
hex = "0.3"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
glob = "0.2"
uuid = { version = "0.5", features = ["serde", "v4"] }
secp256k1 = { version = "0.9", features = ["rand"] }
rand = "0.3"
byteorder= "1.2"
ethabi = "2.0.0"
num = "0.2"
bitcoin = "0.13.2"
aes-ctr = "0.1"
sha2 = "0.7"
sha3 = "0.7"
pbkdf2 = "0.2"
scrypt = "0.1"
hmac = "0.6"
# optional dependencies
emerald-rocksdb = { version = "0.10.3", optional = true }
hyper = { version = "0.12", optional = true }
reqwest = { version = "0.9", optional = true }
clippy = { version = "0.0", optional = true }
chrono = "0.4"
hidapi = "0.4"
[dev-dependencies]
tempdir = "0.3"
quickcheck = "0.6"
# quickcheck_macros = "0.4"
[features]
default = ["http", "emerald-rocksdb"]
http = ["hyper", "reqwest"]
dev = ["clippy"]
fs-storage = []