-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
41 lines (37 loc) · 897 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
37
38
39
40
41
[package]
name = "cita-vm"
version = "0.5.0"
authors = ["Cryptape Technologies <contact@cryptape.com>"]
edition = "2021"
description = "CITA VM"
license = "Apache-2.0"
homepage = "https://github.com/cryptape/cita-vm"
documentation = "https://github.com/cryptape/cita-vm/blob/master/README.md"
[dependencies]
byteorder = "1.0"
cita_trie = "4.0"
env_logger = "0.10"
ethereum-types = "0.14"
hashbrown = { version = "0.14", features = ["rayon"] }
hasher = { version = "0.1" }
hex = "0.4"
secp256k1 = { package = "libsecp256k1", version = "0.7" }
log = "0.4"
ripemd = "0.1"
rlp = "0.5"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
sha2 = "0.10"
sha3 = "0.10"
rayon = "1.0"
[dev-dependencies]
bencher = "0.1"
[[bench]]
name = "benchmark"
harness = false
[features]
default = ["sha3hash"]
sha3hash = ["hasher/hash-keccak"]
blake2bhash = ["hasher/hash-blake2b"]
sm3hash = ["hasher/hash-sm3"]