-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
executable file
·91 lines (82 loc) · 1.47 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
89
90
91
[package]
name = 'jade-signer'
authors = [
'Constantine Kryvomaz <kostiyantynk@gmail.com>',
'Mike Lubinets <me@mkl.dev>',
]
homepage = 'http://etclabscore.com'
repository = 'https://github.com/etclabscore/jade-signer-rpc'
readme = 'README.md'
license = 'Apache-2.0'
edition = '2018'
publish = false
version = '0.3.0'
[badges.travis-ci]
repository = 'etclabscore/jade-signer-rs'
[badges.appveyor]
repository = 'etclabscore/jade-signer-rs'
[badges.circle-ci]
repository = 'etclabscore/jade-signer-rs'
[dependencies]
time = '0.1'
futures = '0.1'
jsonrpc-core = '8.0.0'
jsonrpc-http-server = '8.0.0'
lazy_static = '1.3'
log = '0.4'
regex = '1.1'
hex = '0.3'
serde_json = '1.0'
glob = '0.3'
rand = '0.6'
byteorder = '1.2'
ethabi = '8.0.1'
num = '0.2.0'
bitcoin = '0.20'
aes-ctr = '0.1.0'
sha2 = '0.7'
sha3 = '0.7'
pbkdf2 = '0.2'
scrypt = '0.1'
hmac = '0.6'
dirs = '2.0.1'
chrono = '0.4.6'
rpassword = '2.1.0'
text_io = '0.1.7'
env_logger = '0.6.0'
rocksdb = '0.12'
hyper = '0.12'
reqwest = '0.9'
http = '0.1.15'
url = '1.7.2'
failure = '0.1.5'
primitive-types = '0.3.0'
[dependencies.serde]
version = '1.0'
features = ['derive']
[dependencies.uuid]
version = '0.7'
features = [
'serde',
'v4',
]
[dependencies.secp256k1]
version = '0.15'
features = [
'recovery',
'rand',
]
[dependencies.clap]
version = '2.32.0'
features = [
'yaml',
'color',
]
[dev-dependencies]
tempdir = '0.3.7'
quickcheck = '0.8.2'
base64 = '0.10.1'
[features]
default = []
nightly = []
fixed-seed = []