remove crate tokio-codec (seems to be part of tokio now)

This commit is contained in:
Dietmar Maurer 2019-01-20 14:28:06 +01:00
parent 8eeef8492a
commit 059ca7c3a1
2 changed files with 1 additions and 3 deletions

View File

@ -17,7 +17,6 @@ url = "1.7"
futures = "0.1"
tokio-threadpool = "0.1"
tokio = "0.1"
tokio-codec = "0.1"
http = "0.1"
hyper = "0.12"
lazy_static = "1.1"

View File

@ -16,7 +16,6 @@ use futures::future::{self, Either};
//use tokio::prelude::*;
//use tokio::timer::Delay;
use tokio::fs::File;
use tokio_codec;
//use bytes::{BytesMut, BufMut};
//use hyper::body::Payload;
@ -324,7 +323,7 @@ fn chuncked_static_file_download(filename: PathBuf) -> BoxFut {
Box::new(File::open(filename)
.map_err(|err| http_err!(BAD_REQUEST, format!("File open failed: {}", err)))
.and_then(move |file| {
let payload = tokio_codec::FramedRead::new(file, tokio_codec::BytesCodec::new()).
let payload = tokio::codec::FramedRead::new(file, tokio::codec::BytesCodec::new()).
map(|bytes| {
//sigh - howto avoid copy here? or the whole map() ??
hyper::Chunk::from(bytes.to_vec())