#stdio #tokio #stdout #async-io #stdin #little #buffering

tokio-stdin-stdout

Thread- and future::sync::mpsc-based AsyncRead/AsyncWrite stdin/stdout with little buffering

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

#919 in Asynchronous

Download history 337/week @ 2024-07-23 324/week @ 2024-07-30 319/week @ 2024-08-06 350/week @ 2024-08-13 270/week @ 2024-08-20 312/week @ 2024-08-27 429/week @ 2024-09-03 369/week @ 2024-09-10 307/week @ 2024-09-17 435/week @ 2024-09-24 373/week @ 2024-10-01 375/week @ 2024-10-08 404/week @ 2024-10-15 572/week @ 2024-10-22 440/week @ 2024-10-29 381/week @ 2024-11-05

1,852 downloads per month
Used in 10 crates (9 directly)

MIT/Apache

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

  1. loop.rs - Write hello ten times
  2. line-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.

Alternatives

  1. tokio-stdin no AsyncRead, only stdin, byte by byte
  2. tokio-file-unix - better, but only Unix

Dependencies

~615KB
~11K SLoC