Skip to content

Instantly share code, notes, and snippets.

@vi
vi / playground.rs
Created August 1, 2018 20:39 — forked from rust-play/playground.rs
Code shared from the Rust Playground
#!/usr/bin/env run-cargo-script
// cargo-deps: tokio, tokio-codec, tokio-io, futures-cpupool
extern crate tokio;
extern crate tokio_codec;
extern crate tokio_io;
extern crate futures_cpupool;
use tokio_codec::{Decoder, LinesCodec};