From 628b52f1b562a0a55dc5e4235235b49a06e8f6ec Mon Sep 17 00:00:00 2001 From: Zeeshan Ali Khan Date: Wed, 20 Aug 2025 21:06:01 +0200 Subject: [PATCH] Declare MSRV in Cargo.toml Let's make our MSRV explicit. --- CHANGELOG.md | 2 ++ Cargo.toml | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0932a62..564dd10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +- Make MSRV of 1.87.0 explicit. + ## [v0.9.1] - 2025-08-19 ### Added diff --git a/Cargo.toml b/Cargo.toml index ec2e2f32..a900f675 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ categories = ["data-structures", "no-std"] description = "`static` friendly data structures that don't require dynamic memory allocation" documentation = "https://docs.rs/heapless" edition = "2021" +rust-version = "1.87" keywords = ["static", "no-heap"] license = "MIT OR Apache-2.0" name = "heapless"