Skip to content

Commit

Permalink
libp2p version update (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
momosh-ethernal authored Sep 25, 2023
1 parent 466e8cb commit 834cbce
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 15 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ futures = { version = "0.3.15", default-features = false, features = ["std", "as
hex = "0.4"
hyper = { version = "0.14.23", features = ["full", "http1"] }
itertools = "0.10.5"
libp2p = { version = "0.52.2", features = ["kad", "identify", "ping", "mdns", "autonat", "relay", "dcutr", "noise", "yamux", "dns", "metrics", "tokio", "macros"] }
libp2p-quic = { version = "0.9.2-alpha", features = ["tokio"] }
libp2p = { version = "0.52.3", features = ["kad", "identify", "ping", "mdns", "autonat", "relay", "dcutr", "noise", "yamux", "dns", "metrics", "tokio", "macros", "quic"] }
mockall = "0.11.3"
multihash = { version = "0.14.0", default-features = false, features = ["blake3", "sha3"] }
num = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion src/network/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ use libp2p::{
multiaddr::Protocol,
noise::Config as NoiseConfig,
ping::{Behaviour as Ping, Config as PingConfig},
quic::{tokio::Transport as TokioQuic, Config as QuicConfig},
relay::{self, client::Behaviour as RelayClient},
swarm::{NetworkBehaviour, SwarmBuilder},
Multiaddr, PeerId, Transport,
};
use libp2p_quic::{tokio::Transport as TokioQuic, Config as QuicConfig};
use mem_store::{MemoryStore, MemoryStoreConfig};
use multihash::{self, Hasher};
use tokio::sync::mpsc::{self, Sender};
Expand Down

0 comments on commit 834cbce

Please sign in to comment.