Update core, tcp, secio and mplex to futures-0.3. (#1302)

* Update `rw-stream-sink` to futures-0.3.

* Update core, tcp, secio and mplex to futures-0.3.

On top of https://github.com/libp2p/rust-libp2p/pull/1301
This commit is contained in:
Toralf Wittner 2019-11-14 13:42:14 +01:00 committed by Pierre Krieger
parent cb74580e35
commit f85241dd36
11 changed files with 155 additions and 139 deletions

View File

@ -16,24 +16,24 @@ bytes = "0.4"
ed25519-dalek = "1.0.0-pre.2" ed25519-dalek = "1.0.0-pre.2"
failure = "0.1" failure = "0.1"
fnv = "1.0" fnv = "1.0"
futures = { version = "0.3.1", features = ["compat", "io-compat", "executor", "thread-pool"] }
futures-timer = "0.3" futures-timer = "0.3"
lazy_static = "1.2" lazy_static = "1.2"
libsecp256k1 = { version = "0.3.1", optional = true }
log = "0.4" log = "0.4"
multiaddr = { package = "parity-multiaddr", version = "0.5.0", path = "../misc/multiaddr" } multiaddr = { package = "parity-multiaddr", version = "0.5.0", path = "../misc/multiaddr" }
multihash = { package = "parity-multihash", version = "0.1.4", path = "../misc/multihash" } multihash = { package = "parity-multihash", version = "0.1.4", path = "../misc/multihash" }
multistream-select = { version = "0.6.0", path = "../misc/multistream-select" } multistream-select = { version = "0.6.0", path = "../misc/multistream-select" }
futures-preview = { version = "0.3.0-alpha.18", features = ["compat", "io-compat"] }
parking_lot = "0.9.0" parking_lot = "0.9.0"
protobuf = "2.8" protobuf = "2.8"
quick-error = "1.2" quick-error = "1.2"
rand = "0.7" rand = "0.7"
rw-stream-sink = { version = "0.1.1", path = "../misc/rw-stream-sink" } rw-stream-sink = { version = "0.1.1", path = "../misc/rw-stream-sink" }
libsecp256k1 = { version = "0.3.1", optional = true }
sha2 = "0.8.0" sha2 = "0.8.0"
smallvec = "0.6" smallvec = "0.6"
wasm-timer = "0.1"
unsigned-varint = "0.2" unsigned-varint = "0.2"
void = "1" void = "1"
wasm-timer = "0.1"
zeroize = "1" zeroize = "1"
[target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies] [target.'cfg(not(any(target_os = "emscripten", target_os = "unknown")))'.dependencies]
@ -41,15 +41,15 @@ ring = { version = "0.16.9", features = ["alloc", "std"], default-features = fal
untrusted = "0.7.0" untrusted = "0.7.0"
[dev-dependencies] [dev-dependencies]
async-std = "0.99" assert_matches = "1.3"
libp2p-swarm = { version = "0.3.0", path = "../swarm" } async-std = "1.0"
libp2p-tcp = { version = "0.13.0", path = "../transports/tcp" }
libp2p-mplex = { version = "0.13.0", path = "../muxers/mplex" } libp2p-mplex = { version = "0.13.0", path = "../muxers/mplex" }
libp2p-secio = { version = "0.13.0", path = "../protocols/secio" } libp2p-secio = { version = "0.13.0", path = "../protocols/secio" }
rand = "0.7.2" libp2p-swarm = { version = "0.3.0", path = "../swarm" }
libp2p-tcp = { version = "0.13.0", path = "../transports/tcp" }
quickcheck = "0.9.0" quickcheck = "0.9.0"
rand = "0.7.2"
wasm-timer = "0.2" wasm-timer = "0.2"
assert_matches = "1.3"
[features] [features]
default = ["secp256k1"] default = ["secp256k1"]

View File

@ -28,7 +28,7 @@ use std::{convert::TryFrom, fmt, str::FromStr};
/// automatically used as the peer id using an identity multihash. /// automatically used as the peer id using an identity multihash.
// //
// Note: see `from_public_key` for how this value will be used in the future. // Note: see `from_public_key` for how this value will be used in the future.
const MAX_INLINE_KEY_LENGTH: usize = 42; const _MAX_INLINE_KEY_LENGTH: usize = 42;
/// Identifier of a peer of the network. /// Identifier of a peer of the network.
/// ///

View File

@ -115,7 +115,7 @@ pub async fn read_varint(socket: &mut (impl AsyncRead + Unpin)) -> Result<usize,
/// > **Note**: Assumes that a variable-length prefix indicates the length of the message. This is /// > **Note**: Assumes that a variable-length prefix indicates the length of the message. This is
/// > compatible with what `write_one` does. /// > compatible with what `write_one` does.
pub async fn read_one(socket: &mut (impl AsyncRead + Unpin), max_size: usize) pub async fn read_one(socket: &mut (impl AsyncRead + Unpin), max_size: usize)
-> Result<Vec<u8>, ReadOneError> -> Result<Vec<u8>, ReadOneError>
{ {
let len = read_varint(socket).await?; let len = read_varint(socket).await?;
if len > max_size { if len > max_size {
@ -171,7 +171,6 @@ impl error::Error for ReadOneError {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::*; use super::*;
use std::io::{self, Cursor};
#[test] #[test]
fn write_one_works() { fn write_one_works() {
@ -181,7 +180,7 @@ mod tests {
let mut out = vec![0; 10_000]; let mut out = vec![0; 10_000];
futures::executor::block_on( futures::executor::block_on(
write_one(&mut Cursor::new(&mut out[..]), data.clone()) write_one(&mut futures::io::Cursor::new(&mut out[..]), data.clone())
).unwrap(); ).unwrap();
let (out_len, out_data) = unsigned_varint::decode::usize(&out).unwrap(); let (out_len, out_data) = unsigned_varint::decode::usize(&out).unwrap();

View File

@ -10,4 +10,8 @@ keywords = ["networking"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
futures-preview = "0.3.0-alpha.18" bytes = "0.4.12"
futures = "0.3.1"
[dev-dependencies]
async-std = "1.0"

View File

@ -18,179 +18,195 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE. // DEALINGS IN THE SOFTWARE.
//! This crate provides the `RwStreamSink` type. It wraps around a `Stream + Sink` that produces //! This crate provides the [`RwStreamSink`] type. It wraps around a [`Stream`]
//! and accepts byte arrays, and implements `PollRead` and `PollWrite`. //! and [`Sink`] that produces and accepts byte arrays, and implements
//! [`AsyncRead`] and [`AsyncWrite`].
//! //!
//! Each call to `write()` will send one packet on the sink. Calls to `read()` will read from //! Each call to [`AsyncWrite::poll_write`] will send one packet to the sink.
//! incoming packets. //! Calls to [`AsyncRead::read`] will read from the stream's incoming packets.
//!
//! > **Note**: Although this crate is hosted in the libp2p repo, it is purely a utility crate and
//! > not at all specific to libp2p.
use futures::prelude::*; use bytes::{IntoBuf, Buf};
use std::{cmp, io, pin::Pin, task::Context, task::Poll}; use futures::{prelude::*, ready};
use std::{io, pin::Pin, task::{Context, Poll}};
/// Wraps around a `Stream + Sink` whose items are buffers. Implements `AsyncRead` and `AsyncWrite`. /// Wraps a [`Stream`] and [`Sink`] whose items are buffers.
/// /// Implements [`AsyncRead`] and [`AsyncWrite`].
/// The `B` generic is the type of buffers that the `Sink` accepts. The `I` generic is the type of pub struct RwStreamSink<S>
/// buffer that the `Stream` generates. where
pub struct RwStreamSink<S> { S: TryStream,
<S as TryStream>::Ok: IntoBuf
{
inner: S, inner: S,
current_item: Option<Vec<u8>>, current_item: Option<<<S as TryStream>::Ok as IntoBuf>::Buf>
} }
impl<S> RwStreamSink<S> { impl<S> RwStreamSink<S>
where
S: TryStream,
<S as TryStream>::Ok: IntoBuf
{
/// Wraps around `inner`. /// Wraps around `inner`.
pub fn new(inner: S) -> RwStreamSink<S> { pub fn new(inner: S) -> Self {
RwStreamSink { inner, current_item: None } RwStreamSink { inner, current_item: None }
} }
} }
impl<S> AsyncRead for RwStreamSink<S> impl<S> AsyncRead for RwStreamSink<S>
where where
S: TryStream<Ok = Vec<u8>, Error = io::Error> + Unpin, S: TryStream<Error = io::Error> + Unpin,
<S as TryStream>::Ok: IntoBuf
{ {
fn poll_read(mut self: Pin<&mut Self>, cx: &mut Context, buf: &mut [u8]) -> Poll<Result<usize, io::Error>> { fn poll_read(mut self: Pin<&mut Self>, cx: &mut Context, buf: &mut [u8]) -> Poll<io::Result<usize>> {
// Grab the item to copy from. // Grab the item to copy from.
let current_item = loop { let item_to_copy = loop {
if let Some(ref mut i) = self.current_item { if let Some(ref mut i) = self.current_item {
if !i.is_empty() { if i.has_remaining() {
break i; break i
} }
} }
self.current_item = Some(match ready!(self.inner.try_poll_next_unpin(cx)) {
self.current_item = Some(match TryStream::try_poll_next(Pin::new(&mut self.inner), cx) { Some(Ok(i)) => i.into_buf(),
Poll::Ready(Some(Ok(i))) => i, Some(Err(e)) => return Poll::Ready(Err(e)),
Poll::Ready(Some(Err(err))) => return Poll::Ready(Err(err)), None => return Poll::Ready(Ok(0)) // EOF
Poll::Ready(None) => return Poll::Ready(Ok(0)), // EOF
Poll::Pending => return Poll::Pending,
}); });
}; };
// Copy it! // Copy it!
debug_assert!(!current_item.is_empty()); debug_assert!(item_to_copy.has_remaining());
let to_copy = cmp::min(buf.len(), current_item.len()); let to_copy = std::cmp::min(buf.len(), item_to_copy.remaining());
buf[..to_copy].copy_from_slice(&current_item[..to_copy]); item_to_copy.take(to_copy).copy_to_slice(&mut buf[.. to_copy]);
for _ in 0..to_copy { current_item.remove(0); }
Poll::Ready(Ok(to_copy)) Poll::Ready(Ok(to_copy))
} }
} }
impl<S> AsyncWrite for RwStreamSink<S> impl<S> AsyncWrite for RwStreamSink<S>
where where
S: Stream + Sink<Vec<u8>, Error = io::Error> + Unpin, S: TryStream + Sink<<S as TryStream>::Ok, Error = io::Error> + Unpin,
<S as TryStream>::Ok: IntoBuf + for<'r> From<&'r [u8]>
{ {
fn poll_write(mut self: Pin<&mut Self>, cx: &mut Context, buf: &[u8]) -> Poll<Result<usize, io::Error>> { fn poll_write(mut self: Pin<&mut Self>, cx: &mut Context, buf: &[u8]) -> Poll<io::Result<usize>> {
match Sink::poll_ready(Pin::new(&mut self.inner), cx) { ready!(Pin::new(&mut self.inner).poll_ready(cx)?);
Poll::Pending => return Poll::Pending, let n = buf.len();
Poll::Ready(Ok(())) => {} if let Err(e) = Pin::new(&mut self.inner).start_send(buf.into()) {
Poll::Ready(Err(err)) => return Poll::Ready(Err(err)) return Poll::Ready(Err(e))
}
let len = buf.len();
match Sink::start_send(Pin::new(&mut self.inner), buf.into()) {
Ok(()) => Poll::Ready(Ok(len)),
Err(err) => Poll::Ready(Err(err))
} }
Poll::Ready(Ok(n))
} }
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), io::Error>> { fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Sink::poll_flush(Pin::new(&mut self.inner), cx) Pin::new(&mut self.inner).poll_flush(cx)
} }
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), io::Error>> { fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<io::Result<()>> {
Sink::poll_close(Pin::new(&mut self.inner), cx) Pin::new(&mut self.inner).poll_close(cx)
} }
} }
impl<S> Unpin for RwStreamSink<S> { impl<S> Unpin for RwStreamSink<S>
} where
S: TryStream,
<S as TryStream>::Ok: IntoBuf
{}
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use crate::RwStreamSink; use async_std::task;
use futures::{prelude::*, stream, channel::mpsc::channel}; use bytes::Bytes;
use std::io::Read; use futures::{channel::mpsc, prelude::*, stream};
use std::{pin::Pin, task::{Context, Poll}};
use super::RwStreamSink;
// This struct merges a stream and a sink and is quite useful for tests. // This struct merges a stream and a sink and is quite useful for tests.
struct Wrapper<St, Si>(St, Si); struct Wrapper<St, Si>(St, Si);
impl<St, Si> Stream for Wrapper<St, Si> impl<St, Si> Stream for Wrapper<St, Si>
where where
St: Stream, St: Stream + Unpin,
Si: Unpin
{ {
type Item = St::Item; type Item = St::Item;
type Error = St::Error;
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> { fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
self.0.poll() self.0.poll_next_unpin(cx)
} }
} }
impl<St, Si> Sink for Wrapper<St, Si>
impl<St, Si, T> Sink<T> for Wrapper<St, Si>
where where
Si: Sink, St: Unpin,
Si: Sink<T> + Unpin,
{ {
type SinkItem = Si::SinkItem; type Error = Si::Error;
type SinkError = Si::SinkError;
fn start_send( fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
&mut self, Pin::new(&mut self.1).poll_ready(cx)
item: Self::SinkItem,
) -> StartSend<Self::SinkItem, Self::SinkError> {
self.1.start_send(item)
} }
fn poll_complete(&mut self) -> Poll<(), Self::SinkError> {
self.1.poll_complete() fn start_send(mut self: Pin<&mut Self>, item: T) -> Result<(), Self::Error> {
Pin::new(&mut self.1).start_send(item)
} }
fn close(&mut self) -> Poll<(), Self::SinkError> {
self.1.close() fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
Pin::new(&mut self.1).poll_flush(cx)
}
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Result<(), Self::Error>> {
Pin::new(&mut self.1).poll_close(cx)
} }
} }
#[test] #[test]
fn basic_reading() { fn basic_reading() {
let (tx1, _) = channel::<Vec<u8>>(10); let (tx1, _) = mpsc::channel::<Vec<u8>>(10);
let (tx2, rx2) = channel(10); let (mut tx2, rx2) = mpsc::channel(10);
let mut wrapper = RwStreamSink::new(Wrapper(rx2.map_err(|_| panic!()), tx1)); let mut wrapper = RwStreamSink::new(Wrapper(rx2.map(Ok), tx1));
tx2.send(Bytes::from("hel")) task::block_on(async move {
.and_then(|tx| tx.send(Bytes::from("lo wor"))) tx2.send(Bytes::from("hel")).await.unwrap();
.and_then(|tx| tx.send(Bytes::from("ld"))) tx2.send(Bytes::from("lo wor")).await.unwrap();
.wait() tx2.send(Bytes::from("ld")).await.unwrap();
.unwrap(); tx2.close().await.unwrap();
let mut data = Vec::new(); let mut data = Vec::new();
wrapper.read_to_end(&mut data).unwrap(); wrapper.read_to_end(&mut data).await.unwrap();
assert_eq!(data, b"hello world"); assert_eq!(data, b"hello world");
})
} }
#[test] #[test]
fn skip_empty_stream_items() { fn skip_empty_stream_items() {
let data: Vec<&[u8]> = vec![b"", b"foo", b"", b"bar", b"", b"baz", b""]; let data: Vec<&[u8]> = vec![b"", b"foo", b"", b"bar", b"", b"baz", b""];
let mut rws = RwStreamSink::new(stream::iter_ok::<_, std::io::Error>(data)); let mut rws = RwStreamSink::new(stream::iter(data).map(Ok));
let mut buf = [0; 9]; let mut buf = [0; 9];
assert_eq!(3, rws.read(&mut buf).unwrap()); task::block_on(async move {
assert_eq!(3, rws.read(&mut buf[3..]).unwrap()); assert_eq!(3, rws.read(&mut buf).await.unwrap());
assert_eq!(3, rws.read(&mut buf[6..]).unwrap()); assert_eq!(3, rws.read(&mut buf[3..]).await.unwrap());
assert_eq!(0, rws.read(&mut buf).unwrap()); assert_eq!(3, rws.read(&mut buf[6..]).await.unwrap());
assert_eq!(b"foobarbaz", &buf[..]); assert_eq!(0, rws.read(&mut buf).await.unwrap());
assert_eq!(b"foobarbaz", &buf[..])
})
} }
#[test] #[test]
fn partial_read() { fn partial_read() {
let data: Vec<&[u8]> = vec![b"hell", b"o world"]; let data: Vec<&[u8]> = vec![b"hell", b"o world"];
let mut rws = RwStreamSink::new(stream::iter_ok::<_, std::io::Error>(data)); let mut rws = RwStreamSink::new(stream::iter(data).map(Ok));
let mut buf = [0; 3]; let mut buf = [0; 3];
assert_eq!(3, rws.read(&mut buf).unwrap()); task::block_on(async move {
assert_eq!(b"hel", &buf[..3]); assert_eq!(3, rws.read(&mut buf).await.unwrap());
assert_eq!(0, rws.read(&mut buf[..0]).unwrap()); assert_eq!(b"hel", &buf[..3]);
assert_eq!(1, rws.read(&mut buf).unwrap()); assert_eq!(0, rws.read(&mut buf[..0]).await.unwrap());
assert_eq!(b"l", &buf[..1]); assert_eq!(1, rws.read(&mut buf).await.unwrap());
assert_eq!(3, rws.read(&mut buf).unwrap()); assert_eq!(b"l", &buf[..1]);
assert_eq!(b"o w", &buf[..3]); assert_eq!(3, rws.read(&mut buf).await.unwrap());
assert_eq!(0, rws.read(&mut buf[..0]).unwrap()); assert_eq!(b"o w", &buf[..3]);
assert_eq!(3, rws.read(&mut buf).unwrap()); assert_eq!(0, rws.read(&mut buf[..0]).await.unwrap());
assert_eq!(b"orl", &buf[..3]); assert_eq!(3, rws.read(&mut buf).await.unwrap());
assert_eq!(1, rws.read(&mut buf).unwrap()); assert_eq!(b"orl", &buf[..3]);
assert_eq!(b"d", &buf[..1]); assert_eq!(1, rws.read(&mut buf).await.unwrap());
assert_eq!(0, rws.read(&mut buf).unwrap()); assert_eq!(b"d", &buf[..1]);
assert_eq!(0, rws.read(&mut buf).await.unwrap());
})
} }
} }

View File

@ -12,11 +12,11 @@ categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
bytes = "0.4.5" bytes = "0.4.5"
fnv = "1.0" fnv = "1.0"
futures_codec = "0.3.0" futures = "0.3.1"
futures-preview = "0.3.0-alpha.18" futures_codec = "0.3.1"
libp2p-core = { version = "0.13.0", path = "../../core" } libp2p-core = { version = "0.13.0", path = "../../core" }
log = "0.4" log = "0.4"
parking_lot = "0.8" parking_lot = "0.9"
unsigned-varint = { version = "0.2.3", features = ["futures-codec"] } unsigned-varint = { version = "0.2.3", features = ["futures-codec"] }
[dev-dependencies] [dev-dependencies]

View File

@ -10,21 +10,21 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
bytes = "0.4" aes-ctr = "0.3"
futures-preview = "0.3.0-alpha.18" aesni = { version = "0.6", features = ["nocheck"], optional = true }
futures_codec = "0.3.0" bytes = "0.4.12"
ctr = "0.3"
futures = "0.3.1"
futures_codec = "0.3.1"
hmac = "0.7.0"
lazy_static = "1.2.0"
libp2p-core = { version = "0.13.0", path = "../../core" } libp2p-core = { version = "0.13.0", path = "../../core" }
log = "0.4.6" log = "0.4.6"
protobuf = "2.8" protobuf = "2.8"
rand = "0.6.5" rand = "0.6.5"
aes-ctr = "0.3"
aesni = { version = "0.6", features = ["nocheck"], optional = true }
twofish = "0.2.0"
ctr = "0.3"
lazy_static = "1.2.0"
rw-stream-sink = { version = "0.1.1", path = "../../misc/rw-stream-sink" } rw-stream-sink = { version = "0.1.1", path = "../../misc/rw-stream-sink" }
sha2 = "0.8.0" sha2 = "0.8.0"
hmac = "0.7.0" twofish = "0.2.0"
unsigned-varint = { version = "0.2.3", features = ["futures-codec"] } unsigned-varint = { version = "0.2.3", features = ["futures-codec"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
@ -44,8 +44,8 @@ secp256k1 = []
aes-all = ["aesni"] aes-all = ["aesni"]
[dev-dependencies] [dev-dependencies]
async-std = "0.99" async-std = "1.0"
criterion = "0.3.0" criterion = "0.3"
libp2p-mplex = { version = "0.13.0", path = "../../muxers/mplex" } libp2p-mplex = { version = "0.13.0", path = "../../muxers/mplex" }
libp2p-tcp = { version = "0.13.0", path = "../../transports/tcp" } libp2p-tcp = { version = "0.13.0", path = "../../transports/tcp" }

View File

@ -148,7 +148,7 @@ impl SecioConfig {
/// Output of the secio protocol. /// Output of the secio protocol.
pub struct SecioOutput<S> pub struct SecioOutput<S>
where where
S: AsyncRead + AsyncWrite, S: AsyncRead + AsyncWrite + Unpin
{ {
/// The encrypted stream. /// The encrypted stream.
pub stream: RwStreamSink<StreamMapErr<SecioMiddleware<S>, fn(SecioError) -> io::Error>>, pub stream: RwStreamSink<StreamMapErr<SecioMiddleware<S>, fn(SecioError) -> io::Error>>,

View File

@ -10,7 +10,7 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
futures-preview = "0.3.0-alpha.18" futures = "0.3.1"
libp2p-core = { version = "0.13.0", path = "../core" } libp2p-core = { version = "0.13.0", path = "../core" }
smallvec = "0.6" smallvec = "0.6"
wasm-timer = "0.2" wasm-timer = "0.2"

View File

@ -10,11 +10,11 @@ keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"] categories = ["network-programming", "asynchronous"]
[dependencies] [dependencies]
async-std = "0.99" async-std = "1.0"
bytes = "0.4" bytes = "0.4.12"
futures = "0.3.1"
futures-timer = "2.0"
get_if_addrs = "0.5.3" get_if_addrs = "0.5.3"
ipnet = "2.0.0" ipnet = "2.0.0"
libp2p-core = { version = "0.13.0", path = "../../core" } libp2p-core = { version = "0.13.0", path = "../../core" }
log = "0.4.1" log = "0.4.1"
futures-preview = "0.3.0-alpha.18"
futures-timer = "0.3"

View File

@ -37,10 +37,7 @@
//! documentation of `swarm` and of libp2p in general to learn how to use the `Transport` trait. //! documentation of `swarm` and of libp2p in general to learn how to use the `Transport` trait.
use async_std::net::TcpStream; use async_std::net::TcpStream;
use futures::{ use futures::{future::{self, Ready}, prelude::*};
future::{self, Ready},
prelude::*,
};
use futures_timer::Delay; use futures_timer::Delay;
use get_if_addrs::{IfAddr, get_if_addrs}; use get_if_addrs::{IfAddr, get_if_addrs};
use ipnet::{IpNet, Ipv4Net, Ipv6Net}; use ipnet::{IpNet, Ipv4Net, Ipv6Net};
@ -449,7 +446,7 @@ impl Drop for TcpTransStream {
mod tests { mod tests {
use futures::prelude::*; use futures::prelude::*;
use libp2p_core::{Transport, multiaddr::{Multiaddr, Protocol}, transport::ListenerEvent}; use libp2p_core::{Transport, multiaddr::{Multiaddr, Protocol}, transport::ListenerEvent};
use std::{net::{IpAddr, Ipv4Addr, SocketAddr}, time::Duration}; use std::net::{IpAddr, Ipv4Addr, SocketAddr};
use super::{multiaddr_to_socketaddr, TcpConfig}; use super::{multiaddr_to_socketaddr, TcpConfig};
#[test] #[test]