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"
|
|
|
|
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"] }
|
2023-10-09 07:18:56 +00:00
|
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" }
|
|
|
|
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "6e6678b" }
|
2023-09-18 13:35:20 +00:00
|
|
|
nomos-network = { path = "../nomos-services/network", features = ["libp2p"] }
|
|
|
|
nomos-da = { path = "../nomos-services/data-availability", features = ["libp2p"] }
|
|
|
|
nomos-libp2p = { path = "../nomos-libp2p"}
|
|
|
|
nomos-core = { path = "../nomos-core" }
|
2023-10-04 11:37:13 +00:00
|
|
|
full-replication = { path = "../nomos-da/full-replication" }
|
|
|
|
reqwest = "0.11"
|