Skip to content

Commit

Permalink
Fix bee-gossip example
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex6323 committed Nov 24, 2021
1 parent e3facc0 commit 7f20768
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bee-network/bee-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ tokio-stream = { version = "0.1.7", default-features = false, features = [ "time
fern = { version = "0.6.0", default-features = false }
hex = { version = "0.4.3", default-features = false, features = [ "alloc" ] }
serial_test = { version = "0.5.1", default-features = false }
tokio = { version = "1.12.0", default-features = false, features = [ "rt", "rt-multi-thread", "macros", "signal", "time", "io-std", "io-util" ] }
tokio = { version = "1.12.0", default-features = false, features = [ "io-std", "io-util", "macros", "rt", "rt-multi-thread", "signal", "time" ] }

[[example]]
name = "chat"
Expand Down
2 changes: 1 addition & 1 deletion bee-network/bee-gossip/examples/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod common;

#[tokio::main]
async fn main() {
use bee_network::{alias, standalone::init, Event, Multiaddr, NetworkConfig, Protocol};
use bee_gossip::{alias, standalone::init, Event, Multiaddr, NetworkConfig, Protocol};
use common::keys_and_ids::{gen_constant_net_id, gen_deterministic_keys, gen_deterministic_peer_id};
use std::{
env,
Expand Down

0 comments on commit 7f20768

Please sign in to comment.