From 033c7821a23e115c51f93f474536f5ef98a12e1c Mon Sep 17 00:00:00 2001 From: hopeyen Date: Tue, 31 Oct 2023 15:11:30 +0200 Subject: [PATCH] chore: update test packages waku dep --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- test-runner/Cargo.toml | 2 +- test-sender/Cargo.toml | 2 +- test-sender/src/main.rs | 6 ++---- test-utils/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce3f13f..efec63c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "graphcast-sdk" version = "0.5.0" -source = "git+https://github.com/graphops/graphcast-sdk?branch=hope/peer-helpers#de519bd80914397ab984fb6b6c0ee7058d5c0da0" +source = "git+https://github.com/graphops/graphcast-sdk#0f89833e0e6b57a9d2b40a9f742fd697573114f1" dependencies = [ "anyhow", "async-graphql", @@ -6030,9 +6030,9 @@ checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" [[package]] name = "waku-bindings" -version = "0.3.2" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c52764c1cde43ad4e233ad23b18bbba11f9179a6a4e9b60c660d4f22450289" +checksum = "2db391df1457690eb489ce20fdcc7ba5d1fd6c24feee3a5942ce51273c71e514" dependencies = [ "aes-gcm", "base64 0.21.4", @@ -6052,9 +6052,9 @@ dependencies = [ [[package]] name = "waku-sys" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a23174a6c97644142b87cfb11e1b80b972a1d79b9260ec8ad2896775cbd45a99" +checksum = "31f010dd1ed719eacb7b7a7dc26e39cc285f9f006cfd0147af90ae2695136556" dependencies = [ "bindgen", ] diff --git a/Cargo.toml b/Cargo.toml index 5aed768..c4b0d24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,4 +12,4 @@ panic = 'unwind' opt-level = 3 [workspace.dependencies] -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk", branch = "hope/peer-helpers" } +graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } diff --git a/test-runner/Cargo.toml b/test-runner/Cargo.toml index e33f4f8..42ec35b 100644 --- a/test-runner/Cargo.toml +++ b/test-runner/Cargo.toml @@ -21,7 +21,7 @@ categories = [ ] [dependencies] -waku = { version = "0.3.0", package = "waku-bindings" } +waku = { version = "0.4.0", package = "waku-bindings" } test-utils = { path = "../test-utils" } graphcast-sdk = { workspace = true } subgraph-radio = { path = "../subgraph-radio" } diff --git a/test-sender/Cargo.toml b/test-sender/Cargo.toml index 6126bbb..95be442 100644 --- a/test-sender/Cargo.toml +++ b/test-sender/Cargo.toml @@ -21,7 +21,7 @@ categories = [ ] [dependencies] -waku = { version = "0.3.0", package = "waku-bindings" } +waku = { version = "0.4.0", package = "waku-bindings" } graphcast-sdk = { workspace = true } test-utils = { path = "../test-utils" } subgraph-radio = { path = "../subgraph-radio" } diff --git a/test-sender/src/main.rs b/test-sender/src/main.rs index 63541cd..91b37ce 100644 --- a/test-sender/src/main.rs +++ b/test-sender/src/main.rs @@ -8,15 +8,13 @@ use graphcast_sdk::{ }, init_tracing, networks::NetworkName, - wallet_address, + wallet_address, WakuPubSubTopic, }; use std::{net::IpAddr, str::FromStr, thread::sleep, time::Duration}; use subgraph_radio::messages::poi::PublicPoiMessage; use test_utils::{config::TestSenderConfig, dummy_msg::DummyMsg, find_random_udp_port}; use tracing::{error, info}; -use waku::{ - waku_new, GossipSubParams, ProtocolId, WakuContentTopic, WakuNodeConfig, WakuPubSubTopic, -}; +use waku::{waku_new, GossipSubParams, ProtocolId, WakuContentTopic, WakuNodeConfig}; async fn start_sender(config: TestSenderConfig) { std::env::set_var( diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 8884515..ad73f1b 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -21,7 +21,7 @@ categories = [ ] [dependencies] -waku = { version = "0.3.0", package = "waku-bindings" } +waku = { version = "0.4.0", package = "waku-bindings" } graphcast-sdk = { workspace = true } subgraph-radio = { path = "../subgraph-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] }