summaryrefslogtreecommitdiffstats
path: root/src/transport.rs
diff options
context:
space:
mode:
authorFelix Krull <f_krull@gmx.de>2018-09-27 19:06:03 +0200
committerFelix Krull <f_krull@gmx.de>2018-09-27 19:07:32 +0200
commita616f2cb62ed57e6a31a43d03f286e295989ae93 (patch)
tree35d593fb9ad042aea9dcd46b914d3268362764b6 /src/transport.rs
parent6e8a2179cfbfd447453475b9de4984a2c93ce377 (diff)
Fix build with non-nightly Rust
Diffstat (limited to 'src/transport.rs')
-rw-r--r--src/transport.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/transport.rs b/src/transport.rs
index ffa040d..69c2eab 100644
--- a/src/transport.rs
+++ b/src/transport.rs
@@ -1,6 +1,8 @@
//! Transports for communicating with the docker daemon
extern crate hyper;
+#[cfg(feature = "unix-socket")]
+extern crate hyperlocal;
use self::hyper::buffer::BufReader;
use self::hyper::header::ContentType;