forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (45 loc) · 1.16 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
[package]
name = "reth-trie"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Merkle trie implementation"
[dependencies]
# reth
reth-primitives.workspace = true
reth-interfaces.workspace = true
reth-db.workspace = true
alloy-rlp.workspace = true
# tokio
tokio = { workspace = true, default-features = false, features = ["sync"] }
# tracing
tracing.workspace = true
# misc
thiserror.workspace = true
derive_more = "0.99"
auto_impl = "1"
# test-utils
triehash = { version = "0.8", optional = true }
[dev-dependencies]
# reth
reth-primitives = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-db = { workspace = true, features = ["test-utils"] }
reth-provider.workspace = true
# trie
triehash = "0.8"
# misc
proptest.workspace = true
tokio = { workspace = true, default-features = false, features = ["sync", "rt", "macros"] }
tokio-stream.workspace = true
once_cell.workspace = true
serde_json.workspace = true
pretty_assertions = "1.3.0"
criterion = "0.5"
[features]
test-utils = ["triehash"]
[[bench]]
name = "prefix_set"
harness = false