1
0
mirror of synced 2025-02-03 11:24:04 +00:00
nomos-node/nomos-cli/Cargo.toml
Roman Zajic 8142feaa8c
chore: Da dispersal unit tests update (#720)
* test: prepare to call stream disperse

* fix: formatting

* fix: remove test_stream_disperse_error_cases

* test: utils for cli

* test: test_dispersal_with_swarms
- runtime preparation

* fix: cleanup
- tracing_subscriber

* fix: rewrite without using sampling

* fix: outstanding space

* fix: use executor.run

* fix: formatting

* test: add replies handling

* fix: formatting

* fix: switch to logging system

* fix: executor should wait for correct event
- cleanup

* Update nomos-cli/src/da/network/swarm.rs

Fix ignore value syntax.

Co-authored-by: gusto <bacv@users.noreply.github.com>

---------

Co-authored-by: gusto <bacv@users.noreply.github.com>
2024-09-24 20:37:56 +08:00

44 lines
1.6 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 = { version = "0.3", features = ["env-filter"] }
async-trait = "0.1"
clap = { version = "4", features = ["derive"] }
serde_yaml = "0.9"
futures = "0.3"
tokio = { version = "1", features = ["sync"] }
tokio-stream = "0.1"
log = "0.4.19"
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
overwatch-derive = { git = "https://github.com/logos-co/Overwatch", rev = "ac28d01" }
nomos-da-network-service = { path = "../nomos-services/data-availability/network" }
cryptarchia-consensus = { path = "../nomos-services/cryptarchia-consensus" }
kzgrs-backend = { path = "../nomos-da/kzgrs-backend" }
nomos-log = { path = "../nomos-services/log" }
nomos-libp2p = { path = "../nomos-libp2p" }
libp2p = { version = "0.53", features = ["macros", "serde"] }
nomos-core = { path = "../nomos-core" }
nomos-node = { path = "../nodes/nomos-node" }
nomos-da-network-core = { path = "../nomos-da/network/core" }
subnetworks-assignations = { path = "../nomos-da/network/subnetworks-assignations" }
full-replication = { path = "../nomos-da/full-replication" }
reqwest = { version = "0.11", features = ["json"] }
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"