-
-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/Lokathor/bytemuck into main
- Loading branch information
Showing
10 changed files
with
414 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "bytemuck" | ||
description = "A crate for mucking around with piles of bytes." | ||
version = "1.13.1" | ||
version = "1.13.2" | ||
authors = ["Lokathor <[email protected]>"] | ||
repository = "https://github.com/Lokathor/bytemuck" | ||
readme = "README.md" | ||
|
@@ -20,6 +20,7 @@ zeroable_maybe_uninit = [] | |
zeroable_atomics = [] | ||
min_const_generics = [] | ||
wasm_simd = [] # Until >= 1.54.0 is MSRV this is an off-by-default feature. | ||
must_cast = [] # Until >= 1.57.0 is MSRV this is an off-by-default feature. | ||
aarch64_simd = [] # Until >= 1.59.0 is MSRV this is an off-by-default feature. | ||
|
||
# Do not use if you can avoid it, because this is unsound. | ||
|
@@ -42,6 +43,7 @@ features = [ | |
"zeroable_atomics", | ||
"min_const_generics", | ||
"wasm_simd", | ||
"must_cast", | ||
] | ||
|
||
[package.metadata.playground] | ||
|
@@ -54,4 +56,5 @@ features = [ | |
"zeroable_atomics", | ||
"min_const_generics", | ||
"wasm_simd", | ||
"must_cast", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.