Fix broken links to tokio::net (#2220)

This commit is contained in:
John-John Tedro
2020-02-05 10:03:26 -05:00
committed by GitHub
parent 367511dc6b
commit e096857bc2
6 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -3,9 +3,9 @@
TCP bindings for `tokio`.
> **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved into
> [`tokio::tcp`] behind the `tcp` [feature flag].
> [`tokio::net`] behind the `tcp` [feature flag].
[`tokio::tcp`]: https://docs.rs/tokio/latest/tokio/tcp/index.html
[`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
[feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
[Documentation](https://docs.rs/tokio-tcp/0.1.3/tokio_tcp)
+2 -2
View File
@@ -4,9 +4,9 @@
//! TCP bindings for `tokio`.
//!
//! > **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved
//! > into [`tokio::tcp`] behind the `tcp` [feature flag].
//! > into [`tokio::net`] behind the `tcp` [feature flag].
//!
//! [`tokio::tcp`]: https://docs.rs/tokio/latest/tokio/tcp/index.html
//! [`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
//! [feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
//!
//! This module contains the TCP networking types, similar to the standard
+2 -2
View File
@@ -3,9 +3,9 @@
UDP bindings for `tokio`.
> **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved into
> [`tokio::udp`] behind the `udp` [feature flag].
> [`tokio::net`] behind the `udp` [feature flag].
[`tokio::udp`]: https://docs.rs/tokio/latest/tokio/udp/index.html
[`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
[feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
[Documentation](https://docs.rs/tokio-udp/0.1.5/tokio_udp/)
+2 -2
View File
@@ -4,9 +4,9 @@
//! UDP bindings for `tokio`.
//!
//! > **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved
//! > into[`tokio::udp`] behind the `udp` [feature flag].
//! > into[`tokio::net`] behind the `udp` [feature flag].
//!
//! [`tokio::udp`]: https://docs.rs/tokio/latest/tokio/udp/index.html
//! [`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
//! [feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
//!
//! This module contains the UDP networking types, similar to the standard
+2 -2
View File
@@ -3,9 +3,9 @@
An implementation of Unix Domain Sockets for Tokio
> **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved into
> [`tokio::uds`] behind the `uds` [feature flag].
> [`tokio::net`] behind the `uds` [feature flag].
[`tokio::uds`]: https://docs.rs/tokio-util/latest/tokio/uds/index.html
[`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
[feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
[Documentation](https://docs.rs/tokio-uds/0.2.5/tokio_uds/)
+2 -2
View File
@@ -5,9 +5,9 @@
//! Unix Domain Sockets for Tokio.
//!
//! > **Note:** This crate is **deprecated in tokio 0.2.x** and has been moved
//! > into [`tokio::uds`] behind the `uds` [feature flag].
//! > into [`tokio::net`] behind the `uds` [feature flag].
//!
//! [`tokio::uds`]: https://docs.rs/tokio-util/latest/tokio/uds/index.html
//! [`tokio::net`]: https://docs.rs/tokio/latest/tokio/net/index.html
//! [feature flag]: https://docs.rs/tokio/latest/tokio/index.html#feature-flags
//!
//! This crate provides APIs for using Unix Domain Sockets with Tokio.