summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs5
2 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a4bf7b5..77371f6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
base64 = "0.13"
-byteorder = "1.3"
+byteorder = "1.4"
bytes = "1.0"
chrono = { version = "0.4", optional = true, features = ["serde"] }
flate2 = "1.0"
diff --git a/src/lib.rs b/src/lib.rs
index 83c53b9..b18ba45 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -635,6 +635,11 @@ impl<'docker> Containers<'docker> {
}
/// Returns a reference to a set of operations available to a specific container instance
+ ///
+ /// # Warning
+ ///
+ /// This function does not check whether the container with `name` actually exists and returns
+ /// a potentially invalid handle.
pub fn get<S>(
&self,
name: S,