Skip to content

Commit c4f5a02

Browse files
authored
Fix to bytemuck_derive 1.8.1 (#1288)
`bytemuck` uses `bytemuck_derive ^1.4.1`. Recent `bytemuck_derive` versions are not compatible with our MSRV 1.74.1 (1.9.1 requires Rust 1.84+, 1.9.0 requires edition 2024 which is stablized in 1.84). So fix `bytemuck_derive` to the last version before 1.9.0.
1 parent 1a78557 commit c4f5a02

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ atomic = "0.6.0"
2323
atomic_refcell = "0.1.7"
2424
atomic-traits = "0.4.0"
2525
bytemuck = { version = "1.14.0", features = ["derive"] }
26+
bytemuck_derive = "=1.8.1" # We can remove this dependency when we use MSRV 1.84+
2627
cfg-if = "1.0"
2728
crossbeam = "0.8.1"
2829
delegate = "0.13.2"

0 commit comments

Comments
 (0)