-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
59 lines (51 loc) · 1.55 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
[package]
name = "triedb"
version = "0.5.0"
edition = "2018"
license = "Apache-2.0"
description = "Lightweight Ethereum world state storage."
repository = "https://github.com/hrls/triedb"
[lib]
name = "triedb"
[dependencies]
sha3 = "0.9.1"
rlp_old = {version= "0.5.0", package="rlp", optional = true}
fastrlp = { git = "https://github.com/velas/fastrlp", tag="first-release", features = ["derive", "ethereum-types", "handle-thiserror"] }
bytes = "1"
primitive-types = { version = "0.11.0", features = ["rlp", "serde"] }
thiserror = "1.0.23"
rocksdb_lib = { package = "rocksdb", version = "0.20.1", default-features = false, optional = true }
# rocksdb_lib = { package = "rocksdb", version = "0.16.0", default-features = false, optional = true }
dashmap = "4.0"
log="0.4"
derivative="2.2"
anyhow = "1.0"
rayon = "*"
tracing-attributes = {version = "0.1.11", optional = true}
tracing = {version = "0.1.35", optional = true}
termtree = "0.4.0"
etcommon-hexutil = "0.2.4"
bincode = "1.3.1"
serde = { version = "1.0.123", features = ["derive"] }
backtrace = "0.3"
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"]}
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
rand = "0.8.5"
serde_json = "1.0.89"
tempfile = "3.2.0"
hex-literal="0.3"
env_logger = "0.9"
tracing-subscriber = {version="0.3", features=["json"]}
[features]
default = ["rocksdb", "old_rlp"]
rocksdb = ["rocksdb_lib"]
tracing-enable = ["tracing-attributes", "tracing"]
old_rlp = ["rlp_old"]
[[bench]]
name = "compare_backends"
harness = false
[[bench]]
name = "bench_diff"
harness = false