6 releases
Uses old Rust 2015
0.1.5 | Oct 31, 2018 |
---|---|
0.1.4 | Aug 15, 2018 |
0.1.3 | Jun 25, 2018 |
0.1.1 | Oct 12, 2017 |
#724 in Asynchronous
1,762 downloads per month
Used in 10 crates
(9 directly)
23KB
410 lines
tokio-stdin-stdout
AsyncRead/AsyncWrite stdin/stdout for Tokio
Documentation - more description there
Example
let mut core = tokio_core::reactor::Core::new()?;
let stdin = tokio_stdin_stdout::stdin(0);
let stdout = tokio_stdin_stdout::stdout(0);
core.run(tokio_io::io::copy(stdin, stdout))?;
Additional examples
loop.rs
- Write hello ten timesline-by-line.rs
- Convert all input text to ASCII upper case, line by line. This example also demonstrates usage of tokio-codec and various modes of starting Tokio programs (multithreaded, singlethreaded).
async fn demo
Not much related to tokio-stdin-stdout, but there are some async fn
examples runnable by cargo script
.
They require nightly Rust.
- loop example as async fn v1 - The same as loop.rs above, but may be more readable.due to async fn backed by futures_await crate.
- line-by-line example as async fn v1 - The same as line-by-line.rs, but more prodecural-looking.
- loop example as async fn v3 - Another try with loop.rs, but this time using new async engine built-in in Rust itself. As it intrefaces early alpha code, it may stop working after a while.
Alternatives
- tokio-stdin no AsyncRead, only stdin, byte by byte
- tokio-file-unix - better, but only Unix
Dependencies
~605KB
~11K SLoC