From 2877b80c176b4f64aeddcb29a83b032770a2280b Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Wed, 20 Aug 2025 00:01:52 +0100 Subject: [PATCH 1/2] Document de facto MSRV of 1.53 Signed-off-by: Nico Burns --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index c5c86d8..8489aac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ license = "MIT/Apache-2.0" repository = "https://github.com/gankra/thin-vec" homepage = "https://github.com/gankra/thin-vec" readme = "README.md" +rust-version = "1.53" [features] unstable = [] From ecff3288374ca84da0a7ff4dbacb88150f05b762 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Tue, 19 Aug 2025 23:37:13 +0100 Subject: [PATCH 2/2] CI: Add MSRV job Signed-off-by: Nico Burns --- .github/workflows/rust.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 796c73e..2edaf20 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,6 +44,16 @@ jobs: - name: Run tests (no_std) run: cargo test --tests --no-default-features --verbose + msrv: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions-rs/toolchain@v1 + with: + toolchain: 1.53 + override: true + - run: cargo +1.53 check + fmt: runs-on: ubuntu-latest steps: