You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib.rs
+65-62Lines changed: 65 additions & 62 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,8 @@
24
24
//!
25
25
//! # Featues
26
26
//!
27
-
//! * `tokio` (default) Implement `AsyncWrite` and `AsyncRead` from `tokio::io`.
28
-
//! * `futures` Implement `AsyncWrite` and `AsyncRead` from `futures::io`
27
+
//! * `futures` (default) Implement `AsyncWrite` and `AsyncRead` from `futures::io`
28
+
//! * `tokio` Implement `AsyncWrite` and `AsyncRead` from `tokio::io`.
29
29
30
30
use state::State;
31
31
use std::sync::{Arc,Mutex};
@@ -37,7 +37,7 @@ mod reader;
37
37
mod state;
38
38
mod writer;
39
39
40
-
/// Creates a piped pair of an [`AsyncWrite`](https://docs.rs/tokio/0.2.16/tokio/io/trait.AsyncWrite.html) and an [`AsyncRead`](https://docs.rs/tokio/0.2.15/tokio/io/trait.AsyncRead.html).
40
+
/// Creates a piped pair of an [`AsyncWrite`](https://docs.rs/tokio/1.9.0/tokio/io/trait.AsyncWrite.html) and an [`AsyncRead`](https://docs.rs/tokio/1.9.0/tokio/io/trait.AsyncRead.html).
0 commit comments