This update fixes the default waku subscription (#54)

This commit is contained in:
Daniel Sanchez 2023-01-26 15:53:27 +01:00 committed by GitHub
parent dbe36bba3c
commit e007539531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ edition = "2021"
async-trait = "0.1" async-trait = "0.1"
bincode = { version = "2.0.0-rc.2", features = ["serde"] } bincode = { version = "2.0.0-rc.2", features = ["serde"] }
futures = "0.3" futures = "0.3"
linked-hash-map = { verison = "0.5.6", optional = true } linked-hash-map = { version = "0.5.6", optional = true }
nomos-network = { path = "../network", features = ["waku"] } nomos-network = { path = "../network", features = ["waku"] }
nomos-core = { path = "../../nomos-core" } nomos-core = { path = "../../nomos-core" }
overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" }
@ -17,7 +17,7 @@ serde = { version = "1.0", features = ["derive"] }
tracing = "0.1" tracing = "0.1"
tokio = { version = "1", features = ["sync"] } tokio = { version = "1", features = ["sync"] }
tokio-stream = "0.1" tokio-stream = "0.1"
waku-bindings = { version = "0.1.0-beta2", optional = true} waku-bindings = { version = "0.1.0-beta3", optional = true}
[features] [features]

View File

@ -15,7 +15,7 @@ sled = { version = "0.34", optional = true }
tokio = { version = "1", features = ["sync"] } tokio = { version = "1", features = ["sync"] }
thiserror = "1.0" thiserror = "1.0"
tracing = "0.1" tracing = "0.1"
waku-bindings = { version = "0.1.0-beta2", optional = true } waku-bindings = { version = "0.1.0-beta3", optional = true }
tracing-appender = "0.2" tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["json"] } tracing-subscriber = { version = "0.3", features = ["json"] }
tracing-gelf = "0.7" tracing-gelf = "0.7"
@ -23,4 +23,4 @@ futures = "0.3"
[features] [features]
default = [] default = []
waku = ["waku-bindings"] waku = ["waku-bindings"]