41 lines
1.3 KiB
TOML
41 lines
1.3 KiB
TOML
[package]
|
|
name = "nomos-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Cli app to interact with Nomos nodes and perform various tasks"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
fraction = "0.13"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
async-trait = "0.1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
|
nomos-network = { path = "../nomos-services/network", features = ["libp2p"] }
|
|
nomos-da = { path = "../nomos-services/data-availability", features = [
|
|
"libp2p",
|
|
] }
|
|
cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" }
|
|
nomos-log = { path = "../nomos-services/log" }
|
|
nomos-libp2p = { path = "../nomos-libp2p" }
|
|
nomos-core = { path = "../nomos-core" }
|
|
nomos-node = { path = "../nodes/nomos-node" }
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
|
reqwest = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
hex = "0.4.3"
|
|
once_cell = "1"
|
|
crossterm = "0.27"
|
|
ratatui = "0.24"
|
|
tui-input = "0.8"
|
|
ansi-to-tui = "3"
|
|
rand = "0.8"
|