From fe256d902307003236de94056279b7e4e85b3478 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 13:20:57 +0000 Subject: [PATCH] build(deps): bump testcontainers-modules from 0.10.0 to 0.11.1 Bumps [testcontainers-modules](https://github.com/testcontainers/testcontainers-rs-modules-community) from 0.10.0 to 0.11.1. - [Release notes](https://github.com/testcontainers/testcontainers-rs-modules-community/releases) - [Changelog](https://github.com/testcontainers/testcontainers-rs-modules-community/blob/main/CHANGELOG.md) - [Commits](https://github.com/testcontainers/testcontainers-rs-modules-community/compare/v0.10.0...v0.11.1) --- updated-dependencies: - dependency-name: testcontainers-modules dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 107 ++++++++++++++++++++++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 103 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 29451a7..f1e6ffe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -916,6 +916,17 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "etcetera" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" +dependencies = [ + "cfg-if", + "home", + "windows-sys 0.48.0", +] + [[package]] name = "event-listener" version = "5.3.1" @@ -959,6 +970,18 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" +[[package]] +name = "filetime" +version = "0.2.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" +dependencies = [ + "cfg-if", + "libc", + "libredox", + "windows-sys 0.59.0", +] + [[package]] name = "float-cmp" version = "0.9.0" @@ -1839,6 +1862,7 @@ checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" dependencies = [ "bitflags 2.6.0", "libc", + "redox_syscall 0.5.4", ] [[package]] @@ -2135,7 +2159,7 @@ checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" dependencies = [ "cfg-if", "libc", - "redox_syscall", + "redox_syscall 0.5.4", "smallvec", "windows-targets 0.52.6", ] @@ -2447,7 +2471,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "testcontainers-modules", + "testcontainers-modules 0.11.1", "tokio", "tokio-postgres", "urlencoding", @@ -2525,6 +2549,15 @@ dependencies = [ "zerocopy", ] +[[package]] +name = "redox_syscall" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" +dependencies = [ + "bitflags 1.3.2", +] + [[package]] name = "redox_syscall" version = "0.5.4" @@ -3362,13 +3395,51 @@ dependencies = [ "url", ] +[[package]] +name = "testcontainers" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f40cc2bd72e17f328faf8ca7687fe337e61bccd8acf9674fa78dd3792b045e1" +dependencies = [ + "async-trait", + "bollard", + "bollard-stubs", + "bytes", + "docker_credential", + "either", + "etcetera", + "futures", + "log", + "memchr", + "parse-display", + "pin-project-lite", + "serde", + "serde_json", + "serde_with", + "thiserror", + "tokio", + "tokio-stream", + "tokio-tar", + "tokio-util", + "url", +] + [[package]] name = "testcontainers-modules" version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "359d9a225791e1b9f60aab01f9ae9471898b9b9904b5db192104a71e96785079" dependencies = [ - "testcontainers", + "testcontainers 0.22.0", +] + +[[package]] +name = "testcontainers-modules" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aef7d623e245645e421c3a6d40d92e4991524b8496f39a0c7ed7994653dbcbc" +dependencies = [ + "testcontainers 0.23.1", ] [[package]] @@ -3539,6 +3610,21 @@ dependencies = [ "tokio", ] +[[package]] +name = "tokio-tar" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d5714c010ca3e5c27114c1cdeb9d14641ace49874aa5626d7149e47aedace75" +dependencies = [ + "filetime", + "futures-core", + "libc", + "redox_syscall 0.3.5", + "tokio", + "tokio-stream", + "xattr", +] + [[package]] name = "tokio-tungstenite" version = "0.23.1" @@ -3796,7 +3882,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "testcontainers-modules", + "testcontainers-modules 0.10.0", "tokio", "tokio-stream", "vaultrs", @@ -3965,7 +4051,7 @@ version = "1.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d" dependencies = [ - "redox_syscall", + "redox_syscall 0.5.4", "wasite", "web-sys", ] @@ -4207,6 +4293,17 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "xattr" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f" +dependencies = [ + "libc", + "linux-raw-sys", + "rustix", +] + [[package]] name = "zerocopy" version = "0.7.35" diff --git a/Cargo.toml b/Cargo.toml index b643f27..2c15027 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ assert_cmd = "2.0.16" ntest = "0.9.3" predicates = "3.1.2" schemars = "0.8.21" -testcontainers-modules = { version = "0.10.0", features = ["hashicorp_vault", "k3s", "postgres"] } +testcontainers-modules = { version = "0.11.1", features = ["hashicorp_vault", "k3s", "postgres"] } tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] } tokio-postgres = "0.7.12" utilities = {path= "tests/utilities" }