Skip to content
This repository was archived by the owner on Mar 23, 2021. It is now read-only.

Commit b2bc14f

Browse files
Remove explicit dependency on libp2p_core in favor of reexported module
1 parent 9201a40 commit b2bc14f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cnd/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ hyper = "0.12"
3636
lazy_static = "1"
3737
libp2p = { version = "0.13" }
3838
libp2p-comit = { path = "../libp2p-comit" }
39-
libp2p-core = "0.13"
4039
libsqlite3-sys = { version = ">=0.8.0, <0.13.0", features = ["bundled"] }
4140
log = { version = "0.4", features = ["serde"] }
4241
maplit = "1"

cnd/src/network/transport.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use libp2p::{
2+
core::{muxing, upgrade},
23
dns, identity, mplex, secio, tcp, yamux, Multiaddr, PeerId, Transport, TransportError,
34
};
4-
use libp2p_core::{muxing, upgrade};
55
use std::{error, io, time::Duration};
66

77
/// Builds a `Transport` that supports the most commonly-used protocols that

0 commit comments

Comments
 (0)