Files
nanoreth/crates/cli/commands/Cargo.toml
Luca Provini 6db598da1d chore: extract db commands (#9217)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2024-07-01 16:20:07 +00:00

47 lines
1.1 KiB
TOML

[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]
[dependencies]
reth-db = { workspace = true, features = ["mdbx"] }
reth-db-api.workspace = true
reth-provider.workspace = true
reth-primitives.workspace = true
reth-node-core.workspace = true
reth-fs-util.workspace = true
reth-db-common.workspace = true
reth-static-file-types.workspace = true
reth-beacon-consensus.workspace = true
reth-chainspec.workspace = true
reth-config.workspace = true
reth-downloaders.workspace = true
reth-evm.workspace = true
reth-stages.workspace = true
reth-static-file.workspace = true
confy.workspace = true
tokio.workspace = true
itertools.workspace = true
# misc
ahash = "0.8"
human_bytes = "0.4.1"
eyre.workspace = true
clap = { workspace = true, features = ["derive", "env"] }
serde.workspace = true
serde_json.workspace = true
tracing.workspace = true
# tui
comfy-table = "7.0"
crossterm = "0.27.0"
ratatui = { version = "0.27", default-features = false, features = [
"crossterm",
] }