Skip to content

Commit

Permalink
chore: update test packages waku dep
Browse files Browse the repository at this point in the history
  • Loading branch information
hopeyen committed Oct 31, 2023
1 parent 62be23e commit fadc41e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion test-runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion test-sender/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
6 changes: 2 additions & 4 deletions test-sender/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion test-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit fadc41e

Please sign in to comment.