diff --git a/Cargo.lock b/Cargo.lock index 0351f5f29..517cdc20f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1039,6 +1039,18 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "dns-lookup" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5766087c2235fec47fafa4cfecc81e494ee679d0fd4a59887ea0919bfb0e4fc" +dependencies = [ + "cfg-if", + "libc", + "socket2 0.5.5", + "windows-sys 0.48.0", +] + [[package]] name = "docker_credential" version = "1.3.1" @@ -4596,14 +4608,15 @@ dependencies = [ [[package]] name = "testcontainers" -version = "0.16.5" +version = "0.16.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "279c6fb2b8db23b09ce3a68ec5dd720530e5743af060a65be8ab9acfb7394aef" +checksum = "69d47265a44d1035a322691cf0a6cc227d79b62ef86ffb0dbc204b394fee3d07" dependencies = [ "async-trait", "bollard", "bollard-stubs", "dirs", + "dns-lookup", "docker_credential", "futures", "log", diff --git a/Cargo.toml b/Cargo.toml index d731bed16..1a51c2c00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ serde_test = "1.0.175" serde_yaml = "0.9.34" reqwest = { version = "0.12.4", default-features = false, features = ["rustls-tls"] } rstest = "0.17.0" -testcontainers = "0.16.5" +testcontainers = "0.16.7" thiserror = "1.0" tokio = { version = "1.37", features = ["full", "tracing"] } trillium = "0.2.19"