Skip to content

Commit a89c4d9

Browse files
schneemsedmorley
andauthored
Update Rust minimum version to 1.86 (#117)
* Update Rust minimum version to 1.86 More details in this PR to bullet_stream heroku-buildpacks/bullet_stream#47. And this comment reporting the issue #110 (comment). The short version is: This buildpack uses a dependency that accidentally uses a feature stabilized in Rust 1.86, but it didn't correctly update the minimum required Rust version. If it had, when #115 was merged, it would have also triggered the change that's now being made (I'm guessing this field is not linted, but I've not verified). This change corrects the problem by correctly stating the minimum Rust version so all dependencies can compile correctly. * Update CHANGELOG.md Co-authored-by: Ed Morley <[email protected]> Signed-off-by: Richard Schneeman <[email protected]> --------- Signed-off-by: Richard Schneeman <[email protected]> Co-authored-by: Ed Morley <[email protected]>
1 parent 1720c2b commit a89c4d9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- Minimum supported Rust version incremented to 1.86 to support syntax introduced in [115](https://github.com/heroku/buildpacks-deb-packages/pull/115). ([#117](https://github.com/heroku/buildpacks-deb-packages/pull/117))
13+
1014
## [0.1.3] - 2025-04-01
1115

1216
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "buildpacks-deb-packages"
33
edition = "2021"
4-
rust-version = "1.85"
4+
rust-version = "1.86"
55

66
[build-dependencies]
77
toml_edit = "0.22"

0 commit comments

Comments
 (0)