Skip to content

Commit ede9141

Browse files
authored
Set rust version for bytemuck_derive to 1.61 (#310)
* Set rust version to 1.61 Signed-off-by: Nico Burns <nico@nicoburns.com> * Add CI check for bytemuck_derive MSRV Signed-off-by: Nico Burns <nico@nicoburns.com> --------- Signed-off-by: Nico Burns <nico@nicoburns.com>
1 parent 46d0910 commit ede9141

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
include:
2020
# versions (all on linux-x86_64)
2121
- { rust: 1.34.0, os: ubuntu-latest }
22+
- { rust: 1.61.0, os: ubuntu-latest }
2223
- { rust: stable, os: ubuntu-latest }
2324
- { rust: beta, os: ubuntu-latest }
2425
- { rust: nightly, os: ubuntu-latest }
@@ -36,6 +37,8 @@ jobs:
3637
- run: cargo test --verbose
3738
- run: cargo test --verbose --no-default-features
3839
- run: cargo test --verbose
40+
- run: cargo test --verbose --features derive
41+
if: matrix.rust == '1.61.0'
3942
- run: cargo test --verbose --all-features
4043
if: matrix.rust == 'nightly'
4144
- run: cargo test --verbose --manifest-path=derive/Cargo.toml --all-features

derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "bytemuck_derive"
33
description = "derive proc-macros for `bytemuck`"
4-
version = "1.9.2"
4+
version = "1.9.3"
55
authors = ["Lokathor <zefria@gmail.com>"]
66
repository = "https://github.com/Lokathor/bytemuck"
77
readme = "README.md"
88
keywords = ["transmute", "bytes", "casting"]
99
categories = ["encoding", "no-std"]
1010
edition = "2018"
1111
license = "Zlib OR Apache-2.0 OR MIT"
12-
rust-version = "1.84"
12+
rust-version = "1.61"
1313
#note(lokathor): do not publish with this set
1414
#resolver = "3"
1515

0 commit comments

Comments
 (0)