async-flow 0.1.5

Async abstractions for flow-based programming (FBP).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Echo Lines Example

This is a trivial two-block example program that reads bytes from standard
input (stdin) and writes them to standard output (stdout).

Since stdin and stdout are line buffered in the terminal, effectively this
program ends up echoing lines of text without needing to decode/encode lines.

## Usage

```bash
cargo run --example echo_lines
```