diff --git a/Cargo.lock b/Cargo.lock index 38c5e8d..59d4f21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -715,7 +715,7 @@ dependencies = [ "serde_yml", "tar", "test-temp-dir", - "testcontainers", + "testcontainers 0.22.0", "testcontainers-modules", ] @@ -1796,13 +1796,41 @@ dependencies = [ "url", ] +[[package]] +name = "testcontainers" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ef8374cea2c164699681ecc39316c3e1d953831a7a5721e36c7736d974e15fa" +dependencies = [ + "async-trait", + "bollard", + "bollard-stubs", + "bytes", + "dirs", + "docker_credential", + "either", + "futures", + "log", + "memchr", + "parse-display", + "pin-project-lite", + "serde", + "serde_json", + "serde_with", + "thiserror", + "tokio", + "tokio-stream", + "tokio-util", + "url", +] + [[package]] name = "testcontainers-modules" version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "868e8e818fe37b8ed4c21ac72185206b48e8767b5ad3836d7ec0e5c9386e19a2" dependencies = [ - "testcontainers", + "testcontainers 0.21.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index f1ab278..995af97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ tar = "0.4.38" [dev-dependencies] test-temp-dir = "0.2.2" -testcontainers = { version = "0.21.1", features = ["blocking"] } +testcontainers = { version = "0.22.0", features = ["blocking"] } testcontainers-modules = { version = "0.9.0", features = ["cncf_distribution"] } [package.metadata.generate-rpm]