Skip to content

Commit 4ec322a

Browse files
committed
Update MSRV to 1.80
1 parent 67ad331 commit 4ec322a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
matrix:
3333
toolchain:
3434
# msrv
35-
- 1.71
35+
- 1.80
3636

3737
steps:
3838
- uses: actions/checkout@v4

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["deku", "bits", "serialization", "deserialization", "struct"]
99
categories = ["encoding", "parsing", "no-std"]
1010
description = "bit level serialization/deserialization proc-macro for structs"
1111
readme = "README.md"
12-
rust-version = "1.71"
12+
rust-version = "1.80"
1313

1414
[lib]
1515
bench = false

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Avoid the requirement of writing redundant, error-prone parsing and writing code
1717
for binary structs or network headers
1818

1919
## Usage
20-
*Compiler support: requires rustc 1.71+*
20+
*Compiler support: requires rustc 1.80+*
2121

2222
```toml
2323
[dependencies]

deku-derive/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ license = "MIT OR Apache-2.0"
77
repository = "https://github.com/sharksforarms/deku"
88
description = "bit level serialization/deserialization proc-macro for structs"
99
readme = "../README.md"
10-
rust-version = "1.71"
10+
rust-version = "1.80"
11+
"
1112

1213
[lib]
1314
proc-macro = true

0 commit comments

Comments
 (0)