mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
51 lines
1.3 KiB
TOML
51 lines
1.3 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-revm-primitives = { path = "../../revm/revm-primitives" }
|
|
reth-db.workspace = true
|
|
reth-trie = { path = "../../trie" }
|
|
|
|
# async
|
|
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }
|
|
tokio-stream = { workspace = true, features = ["sync"] }
|
|
|
|
# tracing
|
|
tracing.workspace = true
|
|
|
|
# misc
|
|
auto_impl = "1.0"
|
|
itertools.workspace = true
|
|
pin-project.workspace = true
|
|
parking_lot.workspace = true
|
|
|
|
# test-utils
|
|
reth-rlp = { workspace = true, optional = true }
|
|
|
|
# parallel utils
|
|
rayon = "1.7"
|
|
|
|
[dev-dependencies]
|
|
reth-db = { workspace = true, features = ["test-utils"] }
|
|
reth-primitives = { workspace = true, features = ["arbitrary", "test-utils"] }
|
|
reth-rlp.workspace = true
|
|
revm.workspace = true
|
|
reth-trie = { path = "../../trie", features = ["test-utils"] }
|
|
reth-interfaces = { workspace = true, features = ["test-utils"] }
|
|
parking_lot.workspace = true
|
|
tempfile = "3.3"
|
|
assert_matches.workspace = true
|
|
|
|
[features]
|
|
test-utils = ["reth-rlp"]
|