1
0
mirror of synced 2025-01-09 23:35:46 +00:00
Daniel Sanchez 66de571bfa
Da: network service backend (#695)
* Sketch up types and backend skeleton

* Pipe up sampling events

* Pipe up validation blobs events

* Added docs

* Cargo fmt

* Clippy happy

* Debug log events in validator swarm run method
2024-08-22 10:14:42 +00:00

19 lines
647 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-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"