diff --git a/core/Cargo.toml b/core/Cargo.toml index 2e1b18cb..a0b4fdc1 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -13,7 +13,7 @@ categories = ["network-programming", "asynchronous"] asn1_der = "0.6.1" bs58 = "0.3.0" bytes = "0.4" -ed25519-dalek = "1.0.0-pre.2" +ed25519-dalek = "1.0.0-pre.3" failure = "0.1" fnv = "1.0" futures = { version = "0.3.1", features = ["compat", "io-compat", "executor", "thread-pool"] } diff --git a/misc/multistream-select/Cargo.toml b/misc/multistream-select/Cargo.toml index 0568d75d..43ca2137 100644 --- a/misc/multistream-select/Cargo.toml +++ b/misc/multistream-select/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "multistream-select" description = "Multistream-select negotiation protocol for libp2p" -version = "0.6.0" +version = "0.6.1" authors = ["Parity Technologies "] license = "MIT" repository = "https://github.com/libp2p/rust-libp2p" diff --git a/protocols/noise/src/io.rs b/protocols/noise/src/io.rs index 6c920826..4370e626 100644 --- a/protocols/noise/src/io.rs +++ b/protocols/noise/src/io.rs @@ -427,7 +427,6 @@ impl AsyncWrite for NoiseOutput { ready!(self.as_mut().poll_flush(cx))?; Pin::new(&mut self.io).poll_close(cx) } - } /// Read 2 bytes as frame length from the given source into the given buffer. diff --git a/src/lib.rs b/src/lib.rs index 28cb9dc6..6aee5fc7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -142,7 +142,7 @@ //! [`PublicKey`]: identity::PublicKey //! [`Future`]: futures::Future //! [`TcpConfig`]: tcp::TcpConfig -//! [`NetworkBehaviour`]: core::swarm::NetworkBehaviour +//! [`NetworkBehaviour`]: swarm::NetworkBehaviour //! [`StreamMuxer`]: core::muxing::StreamMuxer //! [`Yamux`]: yamux::Yamux //!