summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-05-14 10:27:36 -0700
committerGitHub <noreply@github.com>2019-05-14 10:27:36 -0700
commitcb4aea394e6851ae8cc45a68beeaf2c93cc9a0c0 (patch)
tree2158eab230c8717d3b35717e50f14fda6ca0edf1 /README.md
parent79d88200500f6e6c9970e1ad26469276c1a2f71f (diff)
Update Tokio to Rust 2018 (#1082)
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index 9aff6837..20f5bf18 100644
--- a/README.md
+++ b/README.md
@@ -58,8 +58,6 @@ an asynchronous application.
A basic TCP echo server with Tokio:
```rust
-extern crate tokio;
-
use tokio::prelude::*;
use tokio::io::copy;
use tokio::net::TcpListener;