Skip to content

Commit

Permalink
Don't use versions for dev-dependencies (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaseizinger authored Sep 2, 2022
1 parent 9ff67a3 commit 9b1547d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions transports/webrtc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ webrtc = "0.4.0"
[dev-dependencies]
anyhow = "1.0"
env_logger = "0.9"
libp2p-request-response = { version = "0.20.0", path = "../../protocols/request-response" }
libp2p-swarm = { version = "0.38.0", path = "../../swarm" }
libp2p = { path = "../..", features = ["request-response"], default-features = false }
rand_core = "0.5"
rcgen = "0.9"
quickcheck = "1"
6 changes: 3 additions & 3 deletions transports/webrtc/tests/smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ use futures::{
io::{AsyncRead, AsyncWrite, AsyncWriteExt},
stream::StreamExt,
};
use libp2p_core::{identity, multiaddr::Protocol, muxing::StreamMuxerBox, upgrade, Transport};
use libp2p_request_response::{
use libp2p::request_response::{
ProtocolName, ProtocolSupport, RequestResponse, RequestResponseCodec, RequestResponseConfig,
RequestResponseEvent, RequestResponseMessage,
};
use libp2p_swarm::{Swarm, SwarmBuilder, SwarmEvent};
use libp2p::swarm::{Swarm, SwarmBuilder, SwarmEvent};
use libp2p_core::{identity, multiaddr::Protocol, muxing::StreamMuxerBox, upgrade, Transport};
use libp2p_webrtc::transport::WebRTCTransport;
use multihash::{Code, Multihash, MultihashDigest};
use rand::RngCore;
Expand Down

0 comments on commit 9b1547d

Please sign in to comment.