refactor: move cli utils to new reth-cli-utils crate (#790)

* 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
This commit is contained in:
David Kulman
2023-01-10 01:13:41 +01:00
committed by GitHub
parent 7c9c2fea50
commit 515590faa8
14 changed files with 87 additions and 38 deletions

View File

@ -21,6 +21,7 @@ reth-executor = { path = "../../crates/executor" }
reth-rlp = { path = "../../crates/common/rlp" }
reth-network = {path = "../../crates/net/network", features = ["serde"] }
reth-downloaders = {path = "../../crates/net/downloaders" }
reth-cli-utils = { path = "../../crates/cli/utils" }
# tracing
tracing = "0.1"