-
Notifications
You must be signed in to change notification settings - Fork 27
/
Cargo.toml
36 lines (34 loc) · 944 Bytes
/
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 = "cita-tool"
version = "0.19.0"
authors = ["piaoliu <[email protected]>", "Qian Linfeng <[email protected]>"]
edition = "2018"
[dependencies]
hyper = "^0.12.1"
tokio = "^0.1.7"
futures = "^0.1"
serde_json = "^1.0.17"
serde = "^1.0.53"
serde_derive = "^1.0.53"
protobuf = "^2.0.2"
hex = "^0.3.2"
tiny-keccak = "^1.4.2"
secp256k1 = { version = "0.15.0", features = ["recovery"]}
blake2b_simd = "0.5.0"
ed25519-dalek = "0.9.1"
sha2 = "0.8.0"
libsm = { version = "0.3.0", package = "cryptape-sm" }
# rename to types
types = { version = "^0.4.0", package = "ethereum-types"}
lazy_static = "^1.0"
rand = "^0.6.0"
uuid = { version = "0.7", features = ["serde", "v4"] }
failure = "^0.1.1"
ethabi = "^8.0"
tool-derive = { path = "../tool-derive" }
hyper-rustls = { version = "0.16.1", optional = true }
hyper-tls = { version = "^0.3", optional = true }
[features]
default = ["rustls"]
openssl = ["hyper-tls"]
rustls = ["hyper-rustls"]