From f9e3f78e456e56dadaa70554d86b130e2655b148 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Sun, 20 Sep 2020 19:21:53 +0300 Subject: [PATCH] eemove non-relevant comment from actix-http README.md (#1701) --- actix-http/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/actix-http/README.md b/actix-http/README.md index d4c96f2a7..96fc54d2e 100644 --- a/actix-http/README.md +++ b/actix-http/README.md @@ -13,12 +13,11 @@ Actix http ## Example ```rust -// see examples/framed_hello.rs for complete list of used crates. use std::{env, io}; use actix_http::{HttpService, Response}; use actix_server::Server; -use futures::future; +use futures_util::future; use http::header::HeaderValue; use log::info;