mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
83 lines
2.0 KiB
TOML
83 lines
2.0 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-beacon-consensus.workspace = true
|
|
reth-chainspec.workspace = true
|
|
reth-cli-runner.workspace = true
|
|
reth-cli-util.workspace = true
|
|
reth-config.workspace = true
|
|
reth-consensus.workspace = true
|
|
reth-db = { workspace = true, features = ["mdbx"] }
|
|
reth-db-api.workspace = true
|
|
reth-db-common.workspace = true
|
|
reth-downloaders.workspace = true
|
|
reth-evm.workspace = true
|
|
reth-exex.workspace = true
|
|
reth-fs-util.workspace = true
|
|
reth-network = { workspace = true, features = ["serde"] }
|
|
reth-network-p2p.workspace = true
|
|
reth-node-builder.workspace = true
|
|
reth-node-core.workspace = true
|
|
reth-primitives.workspace = true
|
|
reth-provider.workspace = true
|
|
reth-prune.workspace = true
|
|
reth-stages.workspace = true
|
|
reth-static-file-types.workspace = true
|
|
reth-static-file.workspace = true
|
|
reth-trie = { workspace = true, features = ["metrics"] }
|
|
|
|
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
|
|
backon.workspace = true
|
|
|
|
# io
|
|
fdlimit.workspace = true
|
|
confy.workspace = true
|
|
toml = { workspace = true, features = ["display"] }
|
|
|
|
# tui
|
|
comfy-table = "7.0"
|
|
crossterm = "0.27.0"
|
|
ratatui = { version = "0.27", default-features = false, features = [
|
|
"crossterm",
|
|
] }
|
|
|
|
# metrics
|
|
metrics-process.workspace = true
|
|
|
|
# reth test-vectors
|
|
proptest = { workspace = true, optional = true }
|
|
arbitrary = { workspace = true, optional = true }
|
|
proptest-arbitrary-interop = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
reth-discv4.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
dev = [
|
|
"dep:proptest",
|
|
"dep:arbitrary",
|
|
"dep:proptest-arbitrary-interop",
|
|
"reth-primitives/arbitrary",
|
|
"reth-db-api/arbitrary"
|
|
]
|