From 55aece674bf020f55a664bffdb9778dcc028f53f Mon Sep 17 00:00:00 2001 From: Daniel Sanchez Date: Wed, 22 Feb 2023 15:55:59 +0100 Subject: [PATCH] Update to waku rc 1 (#80) --- nodes/mockpool-node/Cargo.toml | 4 ++-- nomos-services/consensus/Cargo.toml | 2 +- nomos-services/mempool/Cargo.toml | 2 +- nomos-services/network/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/nodes/mockpool-node/Cargo.toml b/nodes/mockpool-node/Cargo.toml index 143b5972..0a9d191f 100644 --- a/nodes/mockpool-node/Cargo.toml +++ b/nodes/mockpool-node/Cargo.toml @@ -14,7 +14,7 @@ futures = "0.3" overwatch-rs = { git = "https://github.com/logos-co/Overwatch", branch = "main" } overwatch-derive = { git = "https://github.com/logos-co/Overwatch", branch = "main" } tracing = "0.1" -multiaddr = "0.16" +multiaddr = "0.17" nomos-core = { path = "../../nomos-core" } nomos-network = { path = "../../nomos-services/network", features = ["waku"] } nomos-log = { path = "../../nomos-services/log" } @@ -26,4 +26,4 @@ serde_json = "1.0" serde_yaml = "0.9" color-eyre = "0.6.0" serde = "1" -waku-bindings = "0.1.0-beta3" +waku-bindings = "0.1.0-rc.1" diff --git a/nomos-services/consensus/Cargo.toml b/nomos-services/consensus/Cargo.toml index e93ed8bc..447990eb 100644 --- a/nomos-services/consensus/Cargo.toml +++ b/nomos-services/consensus/Cargo.toml @@ -18,7 +18,7 @@ nomos-core = { path = "../../nomos-core" } tokio = { version = "1", features = ["sync"] } tokio-stream = "0.1" futures = "0.3" -waku-bindings = { version = "0.1.0-beta4", optional = true} +waku-bindings = { version = "0.1.0-rc.1", optional = true} tracing = "0.1" [features] diff --git a/nomos-services/mempool/Cargo.toml b/nomos-services/mempool/Cargo.toml index 2e39a8c5..9a1dc6a0 100644 --- a/nomos-services/mempool/Cargo.toml +++ b/nomos-services/mempool/Cargo.toml @@ -20,7 +20,7 @@ thiserror = "1.0" tracing = "0.1" tokio = { version = "1", features = ["sync"] } tokio-stream = "0.1" -waku-bindings = { version = "0.1.0-beta4", optional = true} +waku-bindings = { version = "0.1.0-rc.1", optional = true} [dev-dependencies] nomos-log = { path = "../log" } diff --git a/nomos-services/network/Cargo.toml b/nomos-services/network/Cargo.toml index 687e0307..084be91b 100644 --- a/nomos-services/network/Cargo.toml +++ b/nomos-services/network/Cargo.toml @@ -19,7 +19,7 @@ tokio-stream = "0.1" thiserror = "1.0" tracing = "0.1" rand = { version = "0.8", optional = true } -waku-bindings = { version = "0.1.0-beta4", optional = true } +waku-bindings = { version = "0.1.0-rc.1", optional = true } tracing-appender = "0.2" tracing-subscriber = { version = "0.3", features = ["json"] } tracing-gelf = "0.7"