Example of async programming in Rust, written for this blog post.
Run the server with:
$ cargo run --release --bin serverThen run the different clients with:
$ cargo run --release --bin client_synchronous
$ cargo run --release --bin client_async
$ cargo run --release --bin client_synchronous_parallelWhile the echo server is running.