1
0
mirror of synced 2025-02-19 11:17:08 +00:00
Daniel Sanchez e380bf4117
Da: network replication fix connection (#685)
* Fix attempt 1 - nonworking

* Added missing open stream request

* Expand outbound lifecycle to openstream state

* Fix reading messages state machine

* Use tracing

* Remove unnecessary loop

* Use stream style for test

* Send 10 messages

* Use quic in test

* Sends and receives

* cargo update fixed the panic

* Refactor test

* reschedule polls

* Clippy cleanup

* Remove leftover features

* Cargo fmt

* Improve waker on behaviour

* Rename test
2024-08-02 16:21:38 +00:00

23 lines
616 B
TOML

[package]
name = "nomos-da-network-core"
version = "0.1.0"
edition = "2021"
[dependencies]
libp2p = { version = "0.53" }
futures = "0.3"
tracing = "0.1"
indexmap = "2.2"
subnetworks-assignations = { path = "../subnetworks-assignations" }
nomos-da-messages = { path = "../messages" }
tracing-subscriber = "0.3.18"
void = "1.0.2"
either = "1.13.0"
log = "0.4"
[dev-dependencies]
tokio = { version = "1.39", features = ["macros", "rt-multi-thread", "time"] }
libp2p = { version = "0.53", features = ["ed25519", "ping", "macros", "tokio", "quic"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }