7cc9181574
* tmp * add peers implem * update return values * Backport network consensus adapter (#26) * Pipe network adapter with proper types over original implementation * Hold relay on CarnotConsensus * Scratch Network adapter methods * Fix tests blocking CI * Fix waku feature on network crate * Fix waku_bindings refs * Restructure consensus network * Stream block chunk * Pipe adapter creation with subscription * Add placeholder proposal chunk and approval messages * Implement waku backend * Clippy happy * Use full path for tokio oneshot and error types in message_subscriber_channel method * Clean imports * small fixes Co-authored-by: Daniel Sanchez Quiros <sanchez.quiros.daniel@gmail.com> Co-authored-by: Daniel Sanchez Quiros <sanchez.quiros.daniel@gmail.com>
27 lines
693 B
TOML
27 lines
693 B
TOML
[package]
|
|
name = "nomos-network"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = "0.1"
|
|
bytes = "1.2"
|
|
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
|
|
multiaddr = "0.15"
|
|
serde = "1.0"
|
|
sled = { version = "0.34", optional = true }
|
|
tokio = { version = "1", features = ["sync"] }
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
waku-bindings = { version = "0.1.0-beta1", optional = true }
|
|
tracing-appender = "0.2"
|
|
tracing-subscriber = { version = "0.3", features = ["json"] }
|
|
tracing-gelf = "0.7"
|
|
futures = "0.3"
|
|
|
|
[features]
|
|
default = []
|
|
waku = ["waku-bindings"]
|