-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
51 lines (44 loc) · 1.27 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
[package]
name = "kona-mpt"
description = "Utilities for interacting with and iterating through a merkle patricia trie"
version = "0.1.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
# General
thiserror.workspace = true
serde = { workspace = true, optional = true, features = ["derive", "alloc"] }
# Revm + Alloy
alloy-rlp.workspace = true
alloy-trie.workspace = true
alloy-primitives = { workspace = true, features = ["rlp"] }
[dev-dependencies]
# Alloy
alloy-provider = { workspace = true, features = ["reqwest"] }
alloy-consensus.workspace = true
alloy-transport-http.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth"] }
# General
rand.workspace = true
anyhow.workspace = true
reqwest.workspace = true
proptest.workspace = true
tokio = { workspace = true, features = ["full"] }
criterion = { workspace = true, features = ["html_reports"] }
tracing-subscriber = { workspace = true, features = ["fmt"] }
pprof = { workspace = true, features = ["criterion", "flamegraph", "frame-pointer"] }
[features]
default = ["serde"]
serde = [
"dep:serde",
"alloy-primitives/serde",
"alloy-trie/serde"
]
[[bench]]
name = "trie_node"
harness = false