summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Büsch <antoine.busch@gmail.com>2018-10-01 14:27:54 +1000
committerAntoine Büsch <antoine.busch@gmail.com>2018-10-01 14:27:54 +1000
commitb581f77a6ce1f2718104ea50d19ad3364400dfc3 (patch)
tree15094ea925058c370c5512c06ae9ea5e79ba7bb7
parent1da113ce0e607ec6a3099193f40b6efa7289ed63 (diff)
Clean-up imports and dependencies
-rw-r--r--Cargo.toml1
-rw-r--r--src/builder.rs1
-rw-r--r--src/lib.rs2
3 files changed, 0 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 031a67e..421fcdf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,7 +17,6 @@ http = "0.1"
hyper = "0.12"
hyper-openssl = "0.6"
hyperlocal = { version = "0.6", optional = true }
-jed = "0.1"
log = "0.3"
mime = "0.3"
openssl = "0.10"
diff --git a/src/builder.rs b/src/builder.rs
index aa5d178..d19cc7a 100644
--- a/src/builder.rs
+++ b/src/builder.rs
@@ -1143,7 +1143,6 @@ impl ContainerConnectionOptions {
#[cfg(test)]
mod tests {
- use serde_json;
use super::ContainerOptionsBuilder;
#[test]
diff --git a/src/lib.rs b/src/lib.rs
index 60c655f..f628015 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -22,7 +22,6 @@ extern crate hyper;
extern crate hyper_openssl;
#[cfg(feature = "unix-socket")]
extern crate hyperlocal;
-extern crate jed;
extern crate mime;
extern crate openssl;
extern crate tar;
@@ -68,7 +67,6 @@ use std::borrow::Cow;
use std::cell::RefCell;
use std::env;
use std::io::prelude::*;
-use std::iter::IntoIterator;
use std::path::Path;
use std::time::Duration;
use transport::{tar, Transport};