Skip to content

Commit a4a2e78

Browse files
committed
add Rust MSRV 1.83
1 parent b074b7f commit a4a2e78

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/workflows/test-debug.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,14 @@ jobs:
2929
# the .cargo/config.toml file inside the QEMU test folder.
3030
- run: cd qemu-tests && cargo build --target thumbv7em-none-eabihf
3131

32+
msrv:
33+
name: Check MSRV
34+
runs-on: ubuntu-latest
35+
steps:
36+
- uses: actions/checkout@v4
37+
- uses: dtolnay/[email protected]
38+
- run: cargo check
39+
3240
# Run some programs in QEMU 9
3341
qemu-test:
3442
runs-on: ubuntu-24.04

bitbybit/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ This version expects arbitrary-int 2.x.
77
### Added
88

99
- Support for signed arbitrary-int integers as field types, e.g. `i3`, `i24`, etc.
10+
- Rust MSRV v1.83
1011

1112
## bitbybit 1.4.0
1213

bitbybit/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "bitbybit"
33
version = "2.0.0"
44
authors = ["Daniel Lehmann <[email protected]>"]
55
edition = "2021"
6+
rust-version = "1.83"
67
description = "Efficient implementation of bit-fields where several numbers are packed within a larger number and bit-enums. Useful for drivers, so it works in no_std environments"
78
license = "MIT"
89
repository = "https://github.com/danlehmann/bitfield"

0 commit comments

Comments
 (0)