chore: remove dead files (#1718)

The `codec` module has been moved to `tokio-util`. Some files were left,
but they were never activated.
This commit is contained in:
Carl Lerche
2019-11-01 21:30:06 +09:00
committed by Taiki Endo
parent 64c26ab1ee
commit 72caede7be
2 changed files with 0 additions and 19 deletions
-16
View File
@@ -1,16 +0,0 @@
//! Utilities for encoding and decoding frames.
//!
//! Contains adapters to go from streams of bytes, [`AsyncRead`] and
//! [`AsyncWrite`], to framed streams implementing [`Sink`] and [`Stream`].
//! Framed streams are also known as [transports].
//!
//! [`AsyncRead`]: ../io/trait.AsyncRead.html
//! [`AsyncWrite`]: ../io/trait.AsyncWrite.html
//! [`Sink`]: https://docs.rs/futures/0.1/futures/sink/trait.Sink.html
//! [`Stream`]: https://docs.rs/futures/0.1/futures/stream/trait.Stream.html
//! [transports]: https://tokio.rs/docs/going-deeper/frames/
pub use tokio_codec::{
length_delimited, BytesCodec, Decoder, Encoder, Framed, FramedParts, FramedRead, FramedWrite,
LengthDelimitedCodec, LengthDelimitedCodecError, LinesCodec, LinesCodecError,
};
-3
View File
@@ -87,9 +87,6 @@ macro_rules! thread_local {
#[cfg(feature = "timer")]
pub mod clock;
#[cfg(feature = "codec")]
pub mod codec;
#[cfg(feature = "fs")]
pub mod fs;