Skip to content

Commit c92ec1d

Browse files
authored
Merge pull request #7 from rust-osdev/msrv
feat: add MSRV of 1.71
2 parents 611cf1b + f2228d3 commit c92ec1d

File tree

3 files changed

+27
-18
lines changed

3 files changed

+27
-18
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.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)