chore: rename executor -> blockchain-tree (#2285)

This commit is contained in:
Matthias Seitz
2023-04-17 16:32:18 +02:00
committed by GitHub
parent 29393420f6
commit db1e6cbeea
24 changed files with 46 additions and 68 deletions

View File

@ -0,0 +1,39 @@
[package]
name = "reth-blockchain-tree"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/paradigmxyz/reth"
readme = "README.md"
[package.metadata.cargo-udeps.ignore]
normal = [
# Used for diagrams in docs
"aquamarine",
]
[dependencies]
# reth
reth-primitives = { path = "../primitives" }
reth-interfaces = { path = "../interfaces" }
reth-db = { path = "../storage/db" }
reth-provider = { path = "../storage/provider" }
# common
parking_lot = { version = "0.12"}
# mics
aquamarine = "0.3.0"
[dev-dependencies]
reth-db = { path = "../storage/db", features = ["test-utils"] }
reth-interfaces = { path = "../interfaces", features = ["test-utils"] }
reth-primitives = { path = "../primitives", features = ["test-utils"] }
reth-provider = { path = "../storage/provider", features = ["test-utils"] }
parking_lot = "0.12"
assert_matches = "1.5"
tokio = { version = "1", features = ["macros", "sync"] }
[features]
test-utils = []