From bee2b89af888b97f72b78cd31199aaeec617c192 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 08:05:34 +0000 Subject: [PATCH 1/2] build(deps): update testcontainers requirement from 0.20.0 to 0.21.1 Updates the requirements on [testcontainers](https://github.com/testcontainers/testcontainers-rs) to permit the latest version. - [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.20.0...0.21.1) --- updated-dependencies: - dependency-name: testcontainers dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 59aede6..593f200 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,5 +58,5 @@ cfg-if = "1.0" rstest = "0.22" tempfile = "3.2" textwrap = "0.16" -testcontainers = "0.20.0" +testcontainers = "0.21.1" anyhow = "1.0.83" From 3cb98ee8ff8d04afa31b9944cf0e3f0eec2300bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Mon, 12 Aug 2024 11:28:29 +0200 Subject: [PATCH 2/2] deps: Enable reqwest for testcontainers dev dependency MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit By enabling http_wait we pull reqwest. This should mean we drop the dep on aws-lc-rs, which depends on nasm for building on Windows. Signed-off-by: VĂ­ctor Cuadrado Juan --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 593f200..4b8138a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,5 +58,5 @@ cfg-if = "1.0" rstest = "0.22" tempfile = "3.2" textwrap = "0.16" -testcontainers = "0.21.1" +testcontainers = { version = "0.21", features = ["http_wait"] } anyhow = "1.0.83"