mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Co-authored-by: Roberto Bayardo <bayardo@alum.mit.edu> Co-authored-by: refcell.eth <abigger87@gmail.com> Co-authored-by: Roman Krasiuk <rokrassyuk@gmail.com> Co-authored-by: refcell <refcell@oplabs.co> Co-authored-by: nicolas <48695862+merklefruit@users.noreply.github.com>
63 lines
1.5 KiB
TOML
63 lines
1.5 KiB
TOML
[package]
|
|
name = "reth-provider"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Reth storage provider."
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-db.workspace = true
|
|
reth-trie = { path = "../../trie" }
|
|
reth-nippy-jar = { path = "../nippy-jar" }
|
|
|
|
revm.workspace = true
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# metrics
|
|
reth-metrics.workspace = true
|
|
metrics.workspace = true
|
|
|
|
# misc
|
|
auto_impl = "1.0"
|
|
itertools.workspace = true
|
|
pin-project.workspace = true
|
|
parking_lot.workspace = true
|
|
dashmap = { version = "5.5", features = ["inline"] }
|
|
|
|
# test-utils
|
|
alloy-rlp = { workspace = true, optional = true }
|
|
|
|
# parallel utils
|
|
rayon.workspace = true
|
|
|
|
[dev-dependencies]
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-primitives = { workspace = true, features = ["arbitrary", "test-utils"] }
|
|
reth-trie = { path = "../../trie", features = ["test-utils"] }
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
|
|
alloy-rlp.workspace = true
|
|
parking_lot.workspace = true
|
|
tempfile.workspace = true
|
|
assert_matches.workspace = true
|
|
rand.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["alloy-rlp"]
|
|
optimism = [
|
|
"reth-primitives/optimism",
|
|
"reth-interfaces/optimism"
|
|
]
|