From dfbb68675bacad1d4d2ea58eeb0b1e638623707a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 21:41:00 +0000 Subject: [PATCH] build(deps): Bump testcontainers from 0.16.5 to 0.16.7 (#3094) Bumps [testcontainers](https://github.com/testcontainers/testcontainers-rs) from 0.16.5 to 0.16.7. - [Release notes](https://github.com/testcontainers/testcontainers-rs/releases) - [Changelog](https://github.com/testcontainers/testcontainers-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-rs/compare/0.16.5...0.16.7) --- updated-dependencies: - dependency-name: testcontainers dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 17 +++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 3 deletions(-) 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"