Skip to content

Commit ae39850

Browse files
committed
Adapt riscv-target-parser to edition 2024
1 parent ce881c2 commit ae39850

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/riscv-target-parser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [ macos-latest, ubuntu-latest, windows-latest ]
14-
toolchain: [ stable, nightly, 1.67.0 ]
14+
toolchain: [ stable, nightly, 1.85.0 ]
1515
include:
1616
# Nightly is only for reference and allowed to fail
1717
- rust: nightly

riscv-target-parser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
### Changed
9+
10+
- Update to Rust edition 2024 (MSRV 1.85)
11+
812
## [v0.1.2] - 2025-06-10
913

1014
### Fixed

riscv-target-parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "riscv-target-parser"
33
version = "0.1.2"
4-
rust-version = "1.61"
4+
rust-version = "1.85"
55
repository = "https://github.com/rust-embedded/riscv"
66
authors = ["The RISC-V Team <risc-v@teams.rust-embedded.org>"]
77
categories = ["embedded", "no-std"]
88
description = "Parser for RISC-V target specifications"
99
documentation = "https://docs.rs/riscv-target-parser"
1010
keywords = ["riscv", "build"]
1111
license = "ISC"
12-
edition = "2021"
12+
edition = "2024"

riscv-target-parser/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This project is developed and maintained by the [RISC-V team][team].
1111

1212
## Minimum Supported Rust Version (MSRV)
1313

14-
This crate is guaranteed to compile on stable Rust 1.61 and up. It *might*
14+
This crate is guaranteed to compile on stable Rust 1.85 and up. It **won't**
1515
compile with older versions but that may change in any new patch release.
1616

1717
## License

0 commit comments

Comments
 (0)