* Add core structure Sketch first version of da network handler * Added assgination module Added basic assignation trait * Added assgination module Added basic assignation trait * Refuse connection for non members * Use proper protocol name * Split in broadcast/dispersal/sampling modules Move behaviour and handler to broadcast * Remove unused broadcast behaviour attributes * Add basic docs * Remove unused pending errors on broadcast handler * Clippy happy * Refactor Broadcast -> Replication * Pipe message sending * Clippy happy * Clippy fmt * Refactor outgoing -> outgoing_events * Pipe out replication * Include subnetworks id in dispersal and replication messages * Pipe replication messaging * fmt * Fix tests
12 lines
261 B
TOML
12 lines
261 B
TOML
[package]
|
|
name = "nomos-da-core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
libp2p = "0.53"
|
|
futures = "0.3"
|
|
tracing = "0.1"
|
|
indexmap = "2.2"
|
|
subnetworks-assignations = { path = "../subnetworks-assignations" }
|
|
nomos-da-messages = { path = "../messages" } |