mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-04-08 03:01:12 -04:00
* Move bin/src/util to reth-cli-utils * Add reth-cli-utils to workspace members * Fix imports in bin/src * Create reth-cli-utils crate * Add utils import
25 lines
632 B
TOML
25 lines
632 B
TOML
[package]
|
|
name = "reth-cli-utils"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
repository = "https://github.com/paradigmxyz/reth"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reth-primitives = { path = "../../primitives" }
|
|
reth-consensus = { path = "../../consensus", features = ["serde"] }
|
|
reth-db = {path = "../../storage/db", features = ["mdbx", "test-utils"] }
|
|
|
|
|
|
serde = "1.0"
|
|
serde_json = "1.0"
|
|
eyre = "0.6.8"
|
|
shellexpand = "2.1"
|
|
walkdir = "2.3"
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|