File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 63
63
//! [`tokio-util`] provides the [`StreamReader`] and [`ReaderStream`]
64
64
//! types when the io feature is enabled.
65
65
//!
66
- //! [`tokio-util`]: https://docs.rs/tokio-util/0.4 /tokio_util/codec/index.html
67
- //! [`tokio::io`]: https://docs.rs/tokio/1.0 /tokio/io/index.html
68
- //! [`AsyncRead`]: https://docs.rs/tokio/1.0 /tokio/io/trait.AsyncRead.html
69
- //! [`AsyncWrite`]: https://docs.rs/tokio/1.0 /tokio/io/trait.AsyncWrite.html
70
- //! [`ReaderStream`]: https://docs.rs/tokio-util/0.4 /tokio_util/io/struct.ReaderStream.html
71
- //! [`StreamReader`]: https://docs.rs/tokio-util/0.4 /tokio_util/io/struct.StreamReader.html
66
+ //! [`tokio-util`]: https://docs.rs/tokio-util/latest /tokio_util/codec/index.html
67
+ //! [`tokio::io`]: https://docs.rs/tokio/latest /tokio/io/index.html
68
+ //! [`AsyncRead`]: https://docs.rs/tokio/latest /tokio/io/trait.AsyncRead.html
69
+ //! [`AsyncWrite`]: https://docs.rs/tokio/latest /tokio/io/trait.AsyncWrite.html
70
+ //! [`ReaderStream`]: https://docs.rs/tokio-util/latest /tokio_util/io/struct.ReaderStream.html
71
+ //! [`StreamReader`]: https://docs.rs/tokio-util/latest /tokio_util/io/struct.StreamReader.html
72
72
73
73
#[ macro_use]
74
74
mod macros;
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ cfg_io_util! {
146
146
/// [`next_line`] method.
147
147
/// * Use [`tokio_util::codec::LinesCodec`][LinesCodec].
148
148
///
149
- /// [LinesCodec]: https://docs.rs/tokio-util/0.6 /tokio_util/codec/struct.LinesCodec.html
149
+ /// [LinesCodec]: https://docs.rs/tokio-util/latest /tokio_util/codec/struct.LinesCodec.html
150
150
/// [`read_until`]: Self::read_until
151
151
/// [`lines`]: Self::lines
152
152
/// [`next_line`]: crate::io::Lines::next_line
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ use std::task::{Context, Poll};
18
18
/// To convert the `Sender` into a `Sink` or use it in a poll function, you can
19
19
/// use the [`PollSender`] utility.
20
20
///
21
- /// [`PollSender`]: https://docs.rs/tokio-util/0.6 /tokio_util/sync/struct.PollSender.html
21
+ /// [`PollSender`]: https://docs.rs/tokio-util/latest /tokio_util/sync/struct.PollSender.html
22
22
pub struct Sender < T > {
23
23
chan : chan:: Tx < T , Semaphore > ,
24
24
}
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ use std::sync::Arc;
73
73
/// }
74
74
/// ```
75
75
///
76
- /// [`PollSemaphore`]: https://docs.rs/tokio-util/0.6 /tokio_util/sync/struct.PollSemaphore.html
76
+ /// [`PollSemaphore`]: https://docs.rs/tokio-util/latest /tokio_util/sync/struct.PollSemaphore.html
77
77
/// [`Semaphore::acquire_owned`]: crate::sync::Semaphore::acquire_owned
78
78
#[ derive( Debug ) ]
79
79
pub struct Semaphore {
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ cfg_rt! {
146
146
/// [blocking]: ../index.html#cpu-bound-tasks-and-blocking-code
147
147
/// [rayon]: https://docs.rs/rayon
148
148
/// [`mpsc channel`]: crate::sync::mpsc
149
- /// [`SyncIoBridge`]: https://docs.rs/tokio-util/0.6 /tokio_util/io/struct.SyncIoBridge.html
149
+ /// [`SyncIoBridge`]: https://docs.rs/tokio-util/latest /tokio_util/io/struct.SyncIoBridge.html
150
150
/// [hyper]: https://docs.rs/hyper
151
151
/// [`thread::spawn`]: fn@std::thread::spawn
152
152
/// [`shutdown_timeout`]: fn@crate::runtime::Runtime::shutdown_timeout
You can’t perform that action at this time.
0 commit comments