chore: dependencies updated

This commit is contained in:
Jack Wills
2025-04-17 15:43:45 +00:00
parent bca67116f3
commit 188490e13f
2 changed files with 2 additions and 4 deletions
-1
View File
@@ -35,7 +35,6 @@ impl ContainerId {
}
/// Only return first 8 chars of id, is usually more than enough for uniqueness
/// TODO container id is a hex string, so can assume that 0..=8 will always return a 8 char ascii &str
/// need to update tests to use real ids, or atleast strings of the correct-ish length
pub fn get_short(&self) -> String {
self.0.chars().take(8).collect::<String>()