summaryrefslogtreecommitdiffstats
path: root/examples/tinyhttp.rs
diff options
context:
space:
mode:
authorTaiki Endo <te316e89@gmail.com>2020-06-07 20:38:02 +0900
committerGitHub <noreply@github.com>2020-06-07 20:38:02 +0900
commit4010335c84517571e9b2d13f66f7c72170493622 (patch)
treeb06be19d70869ce78455ede878ab56702de5a505 /examples/tinyhttp.rs
parentbe4577e22f7d0e899501b67408b5befff5adda29 (diff)
chore: fix ci failure on master (#2593)
* Fix clippy warnings * Pin rustc version to 1.43.1 in macOS Refs: https://github.com/rust-lang/rust/issues/73030
Diffstat (limited to 'examples/tinyhttp.rs')
-rw-r--r--examples/tinyhttp.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/tinyhttp.rs b/examples/tinyhttp.rs
index 732da0d6..4870aea2 100644
--- a/examples/tinyhttp.rs
+++ b/examples/tinyhttp.rs
@@ -18,7 +18,6 @@ use futures::SinkExt;
use http::{header::HeaderValue, Request, Response, StatusCode};
#[macro_use]
extern crate serde_derive;
-use serde_json;
use std::{env, error::Error, fmt, io};
use tokio::net::{TcpListener, TcpStream};
use tokio::stream::StreamExt;