From 884bbfef5c5511d323370ddb564a327cec51169d Mon Sep 17 00:00:00 2001 From: Floris Bruynooghe Date: Wed, 4 Dec 2024 11:41:04 +0100 Subject: [PATCH] Pin cargo-platform to keep MSRV in check --- CHANGELOG.md | 4 ++++ Cargo.toml | 3 +++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2148391..bce8d98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v0.9.2 + +- Pin cargo-platform dependency so we do not exceed MSRV of 0.76. + ## v0.9.1 - Fix windows support up a bit. Previously it would not detect the diff --git a/Cargo.toml b/Cargo.toml index dd98ab4..8863434 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,5 +18,8 @@ once_cell = "1.5" sysinfo = { version = "0.26", default-features = false } whoami = "1" +# Force old version of cargo-platform before they bumped the MSRV +cargo-platform = ">=0.1.2, <0.1.9" + [dev-dependencies] tempfile = "3"