Skip to content

Commit ae0101f

Browse files
committed
feat: add MSRV of 1.71
1 parent 611cf1b commit ae0101f

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ jobs:
3535
with:
3636
components: rustfmt
3737
- run: cargo fmt --all --check
38+
39+
msrv:
40+
name: MSRV
41+
runs-on: ubuntu-latest
42+
steps:
43+
- uses: actions/checkout@v4
44+
- uses: dtolnay/rust-toolchain@1.71
45+
- run: cargo build
3846

3947
test:
4048
name: Test

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "endian-num"
33
version = "0.2.0"
44
authors = ["Martin Kröning <mkroening@posteo.net>"]
55
edition = "2021"
6+
rust-version = "1.71"
67
description = "Byte-order-aware numeric types."
78
repository = "https://github.com/rust-osdev/endian-num"
89
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)