2023-09-18 13:35:20 +00:00
|
|
|
[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"
|
2024-09-24 12:37:56 +00:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
2023-09-18 13:35:20 +00:00
|
|
|
async-trait = "0.1"
|
2024-03-14 00:53:41 +00:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2023-09-18 13:35:20 +00:00
|
|
|
serde_yaml = "0.9"
|
|
|
|
futures = "0.3"
|
|
|
|
tokio = { version = "1", features = ["sync"] }
|
2024-08-26 08:00:34 +00:00
|
|
|
tokio-stream = "0.1"
|
|
|
|
log = "0.4.19"
|
2023-10-25 10:10:21 +00:00
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
|
2024-08-19 12:44:55 +00:00
|
|
|
nomos-da-network-service = { path = "../nomos-services/data-availability/network" }
|
2024-03-28 11:56:04 +00:00
|
|
|
cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" }
|
2024-08-19 12:44:55 +00:00
|
|
|
kzgrs-backend = { path = "../nomos-da/kzgrs-backend" }
|
2024-01-03 14:47:21 +00:00
|
|
|
nomos-log = { path = "../nomos-services/log" }
|
2024-03-14 00:53:41 +00:00
|
|
|
nomos-libp2p = { path = "../nomos-libp2p" }
|
2024-08-26 08:00:34 +00:00
|
|
|
libp2p = { version = "0.53", features = ["macros", "serde"] }
|
2024-10-22 13:51:54 +00:00
|
|
|
nomos-core = { path = "../nomos-core/chain-defs" }
|
2023-10-30 15:19:25 +00:00
|
|
|
nomos-node = { path = "../nodes/nomos-node" }
|
2024-08-26 08:00:34 +00:00
|
|
|
nomos-da-network-core = { path = "../nomos-da/network/core" }
|
|
|
|
subnetworks-assignations = { path = "../nomos-da/network/subnetworks-assignations" }
|
2023-10-04 11:37:13 +00:00
|
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
2024-08-19 12:44:55 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2023-10-30 15:19:25 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2023-11-02 09:44:31 +00:00
|
|
|
thiserror = "1.0"
|
|
|
|
hex = "0.4.3"
|
2024-01-03 14:47:21 +00:00
|
|
|
once_cell = "1"
|
|
|
|
crossterm = "0.27"
|
|
|
|
ratatui = "0.24"
|
|
|
|
tui-input = "0.8"
|
2024-01-08 14:40:19 +00:00
|
|
|
ansi-to-tui = "3"
|
2024-03-14 00:53:41 +00:00
|
|
|
rand = "0.8"
|