37c22d23ce
* Nomos cli executor swarm * Executor swarm and backend in nomos-cli * Libp2p executor adapter in nomos cli * Update nomos-cli/src/da/network/backend.rs Co-authored-by: Daniel Sanchez <sanchez.quiros.daniel@gmail.com> * Use FillFromNodeList with executor backend * Integrate Executor backend into the cli * Use subnetwork id where appropriate * Common clone_deserialize_error * Use thiserror * Minimal dialing in cli swarm * Send dispersal messages async * Remove unused connection id --------- Co-authored-by: Daniel Sanchez <sanchez.quiros.daniel@gmail.com>
20 lines
693 B
TOML
20 lines
693 B
TOML
[package]
|
|
name = "nomos-da-network-service"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
kzgrs-backend = { path = "../../../nomos-da/kzgrs-backend" }
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", rev = "2f70806" }
|
|
nomos-core = { path = "../../../nomos-core" }
|
|
nomos-da-network-core = { path = "../../../nomos-da/network/core" }
|
|
subnetworks-assignations = { path = "../../../nomos-da/network/subnetworks-assignations" }
|
|
libp2p = { version = "0.54", features = ["ed25519"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1", features = ["macros", "sync"] }
|
|
tokio-stream = "0.1"
|
|
tracing = "0.1"
|
|
log = "0.4.22"
|