Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the unused EncodingDecoder #153

Merged
merged 1 commit into from Jan 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion Cargo.toml
Expand Up @@ -16,7 +16,6 @@ ssl = ["openssl"]
[dependencies]
ascii = "0.8"
chunked_transfer = "0.3"
encoding = "0.2"
openssl = { version = "0.10", optional = true }
url = "1.7"
chrono = "0.4"
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Expand Up @@ -112,7 +112,6 @@ extern crate log;

extern crate ascii;
extern crate chunked_transfer;
extern crate encoding;
extern crate url;
extern crate chrono;

Expand Down Expand Up @@ -141,8 +140,6 @@ mod client;
mod common;
mod request;
mod response;

#[allow(dead_code)] // TODO: remove when everything is implemented
mod util;

/// The main class of this library.
Expand Down
59 changes: 0 additions & 59 deletions src/util/encoding_decoder.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/util/mod.rs
Expand Up @@ -13,7 +13,6 @@
// limitations under the License.

pub use self::custom_stream::CustomStream;
pub use self::encoding_decoder::EncodingDecoder;
pub use self::equal_reader::EqualReader;
pub use self::messages_queue::MessagesQueue;
pub use self::refined_tcp_stream::RefinedTcpStream;
Expand All @@ -24,7 +23,6 @@ pub use self::task_pool::TaskPool;
use std::str::FromStr;

mod custom_stream;
mod encoding_decoder;
mod equal_reader;
mod messages_queue;
mod refined_tcp_stream;
Expand Down