From e0075395318eeae157d5c1b5cc005d31021cf446 Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Date: Thu, 26 Jan 2023 15:53:27 +0100 Subject: [PATCH] This update fixes the default waku subscription (#54) --- nomos-services/mempool/Cargo.toml | 4 ++-- nomos-services/network/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nomos-services/mempool/Cargo.toml b/nomos-services/mempool/Cargo.toml index 2708dfb4..beff8197 100644 --- a/nomos-services/mempool/Cargo.toml +++ b/nomos-services/mempool/Cargo.toml @@ -9,7 +9,7 @@ edition = "2021" async-trait = "0.1" bincode = { version = "2.0.0-rc.2", features = ["serde"] } 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-core = { path = "../../nomos-core" } overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } @@ -17,7 +17,7 @@ serde = { version = "1.0", features = ["derive"] } tracing = "0.1" tokio = { version = "1", features = ["sync"] } tokio-stream = "0.1" -waku-bindings = { version = "0.1.0-beta2", optional = true} +waku-bindings = { version = "0.1.0-beta3", optional = true} [features] diff --git a/nomos-services/network/Cargo.toml b/nomos-services/network/Cargo.toml index a1757b71..2b27a3be 100644 --- a/nomos-services/network/Cargo.toml +++ b/nomos-services/network/Cargo.toml @@ -15,7 +15,7 @@ sled = { version = "0.34", optional = true } tokio = { version = "1", features = ["sync"] } thiserror = "1.0" 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-subscriber = { version = "0.3", features = ["json"] } tracing-gelf = "0.7" @@ -23,4 +23,4 @@ futures = "0.3" [features] default = [] -waku = ["waku-bindings"] +waku = ["waku-bindings"] \ No newline at end of file