From 988ded95627c6c1c9fcb84e73e0258eeb482b568 Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Tue, 4 Jun 2024 12:42:24 -0600 Subject: [PATCH] Fix the build with Rust 1.77.0 By working around rust bug https://github.com/rust-lang/cargo/issues/13807 --- capsicum/CHANGELOG.md | 7 +++++++ capsicum/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/capsicum/CHANGELOG.md b/capsicum/CHANGELOG.md index 921375c..7d99c34 100644 --- a/capsicum/CHANGELOG.md +++ b/capsicum/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## [Unreleased] - ReleaseDate + +### Fixed + +- Fixed the build with Rust 1.77.0, by working around Rust bug 13807 + ([#101](https://github.com/dlrobertson/capsicum-rs/pull/101)) + ## [0.4.0] - 2024-06-04 ### Added diff --git a/capsicum/Cargo.toml b/capsicum/Cargo.toml index d622057..5480a0d 100644 --- a/capsicum/Cargo.toml +++ b/capsicum/Cargo.toml @@ -5,7 +5,7 @@ version = "0.4.0" authors = ["Dan Robertson "] license = "MPL-2.0" repository = "https://github.com/dlrobertson/capsicum-rs" -rust-version = "1.77" +rust-version = "1.77.0" description = """ Simple intuitive Rust bindings for the FreeBSD capsicum framework """