mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-13 08:25:08 -05:00
41 lines
1003 B
TOML
41 lines
1003 B
TOML
[package]
|
|
name = "reth-provider"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
description = "Reth storage provider."
|
|
|
|
[dependencies]
|
|
# reth
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-interfaces = { path = "../../interfaces" }
|
|
reth-revm-primitives = { path = "../../revm/revm-primitives" }
|
|
reth-db = { path = "../db" }
|
|
reth-trie = { path = "../../trie" }
|
|
|
|
# async
|
|
tokio = { version = "1.21", features = ["sync", "macros", "rt-multi-thread"] }
|
|
|
|
# tracing
|
|
tracing = "0.1"
|
|
|
|
# misc
|
|
thiserror = "1.0.37"
|
|
auto_impl = "1.0"
|
|
itertools = "0.10"
|
|
|
|
# test-utils
|
|
reth-rlp = { path = "../../rlp", optional = true }
|
|
parking_lot = { version = "0.12", optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-db = { path = "../db", features = ["test-utils"] }
|
|
reth-primitives = { path = "../../primitives", features = ["arbitrary", "test-utils"] }
|
|
parking_lot = "0.12"
|
|
|
|
[features]
|
|
bench = []
|
|
test-utils = ["reth-rlp", "parking_lot"]
|