Skip to content

Commit

Permalink
chore: add empty commands crate (#9039)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Jun 24, 2024
1 parent 4cb84a4 commit 5585cb8
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ members = [
"crates/blockchain-tree/",
"crates/blockchain-tree-api/",
"crates/chainspec/",
"crates/cli/commands/",
"crates/cli/runner/",
"crates/config/",
"crates/consensus/auto-seal/",
Expand Down Expand Up @@ -253,6 +254,7 @@ reth-beacon-consensus = { path = "crates/consensus/beacon" }
reth-blockchain-tree = { path = "crates/blockchain-tree" }
reth-blockchain-tree-api = { path = "crates/blockchain-tree-api" }
reth-chainspec = { path = "crates/chainspec" }
reth-cli-commands = { path = "crates/cli/commands" }
reth-cli-runner = { path = "crates/cli/runner" }
reth-codecs = { path = "crates/storage/codecs" }
reth-codecs-derive = { path = "crates/storage/codecs/derive" }
Expand Down
10 changes: 10 additions & 0 deletions crates/cli/commands/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "reth-cli-commands"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true

[lints]
9 changes: 9 additions & 0 deletions crates/cli/commands/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
//! Commonly used reth CLI commands.
#![doc(
html_logo_url = "https://raw.githubusercontent.com/paradigmxyz/reth/main/assets/reth-docs.png",
html_favicon_url = "https://avatars0.githubusercontent.com/u/97369466?s=256",
issue_tracker_base_url = "https://github.com/paradigmxyz/reth/issues/"
)]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

0 comments on commit 5585cb8

Please sign in to comment.