mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-02-19 03:04:27 -05:00
49 lines
1005 B
TOML
49 lines
1005 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-codecs = { path = "../codecs" }
|
|
reth-tracing = {path = "../../tracing"}
|
|
reth-rlp = {path = "../../rlp"}
|
|
|
|
revm-primitives = "1.0.0"
|
|
|
|
# trie
|
|
cita_trie = "4.0.0"
|
|
hasher = "0.1.4"
|
|
|
|
# tracing
|
|
tracing = "0.1"
|
|
|
|
# misc
|
|
thiserror = "1.0.37"
|
|
auto_impl = "1.0"
|
|
itertools = "0.10"
|
|
|
|
parking_lot = "0.12"
|
|
|
|
[dev-dependencies]
|
|
reth-db = { path = "../db", features = ["test-utils"] }
|
|
reth-primitives = { path = "../../primitives", features = ["arbitrary"] }
|
|
parking_lot = "0.12"
|
|
proptest = { version = "1.0" }
|
|
assert_matches = "1.5"
|
|
|
|
# trie
|
|
triehash = "0.8"
|
|
|
|
[features]
|
|
bench = []
|
|
test-utils = []
|