mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
71 lines
1.8 KiB
TOML
71 lines
1.8 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."
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-execution-errors.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-fs-util.workspace = true
|
|
reth-storage-errors.workspace = true
|
|
reth-interfaces.workspace = true
|
|
reth-db.workspace = true
|
|
reth-trie = { workspace = true, features = ["metrics"] }
|
|
reth-nippy-jar.workspace = true
|
|
reth-codecs.workspace = true
|
|
reth-evm.workspace = true
|
|
|
|
# ethereum
|
|
alloy-rpc-types-engine.workspace = true
|
|
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.workspace = true
|
|
itertools.workspace = true
|
|
pin-project.workspace = true
|
|
parking_lot.workspace = true
|
|
dashmap = { workspace = true, features = ["inline"] }
|
|
strum.workspace = true
|
|
|
|
# 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 = { workspace = true, 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", "reth-db/test-utils", "reth-nippy-jar/test-utils"]
|
|
optimism = ["reth-primitives/optimism"]
|