From 4e58c1fa34328f9890af587c115ec58b36199db8 Mon Sep 17 00:00:00 2001 From: Artem Medvedev Date: Tue, 7 Jan 2025 03:18:00 +0100 Subject: [PATCH] build: bump MSRV to `1.81` (#264) Some underlying dependencies (e.g `home`) updated their MSRV within a compatible version update. `home` is used by several important deps (e.g `bollard`), so it's already affected users of the crate However, it's common practice to use newer rust version for testing (in CI and etc) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0cb907e..7403e4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.11.4" description = "Community maintained modules for Testcontainers for Rust" categories = ["development-tools::testing"] edition = "2021" -rust-version = "1.75" +rust-version = "1.81" repository = "https://github.com/testcontainers/testcontainers-rs-modules-community" keywords = ["docker", "testcontainers"] license = "MIT"