We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 611cf1b commit ae0101fCopy full SHA for ae0101f
.github/workflows/ci.yml
@@ -35,6 +35,14 @@ jobs:
35
with:
36
components: rustfmt
37
- 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
46
47
test:
48
name: Test
Cargo.toml
@@ -3,6 +3,7 @@ name = "endian-num"
3
version = "0.2.0"
4
authors = ["Martin Kröning <mkroening@posteo.net>"]
5
edition = "2021"
6
+rust-version = "1.71"
7
description = "Byte-order-aware numeric types."
8
repository = "https://github.com/rust-osdev/endian-num"
9
license = "MIT OR Apache-2.0"
0 commit comments