bytemuck/README.md

28 lines
1.1 KiB
Markdown
Raw Normal View History

2019-11-26 02:11:00 +00:00
[![License:Zlib](https://img.shields.io/badge/License-Zlib-brightgreen.svg)](https://opensource.org/licenses/Zlib)
2019-11-26 02:17:41 +00:00
![Minimum Rust Version](https://img.shields.io/badge/Min%20Rust-1.34-green.svg)
2019-09-20 01:09:31 +00:00
[![crates.io](https://img.shields.io/crates/v/bytemuck.svg)](https://crates.io/crates/bytemuck)
[![docs.rs](https://docs.rs/bytemuck/badge.svg)](https://docs.rs/bytemuck/)
2019-09-20 00:43:51 +00:00
# bytemuck
2019-09-20 01:09:31 +00:00
2019-11-26 02:11:00 +00:00
A crate for mucking around with piles of bytes.
2019-11-26 02:21:38 +00:00
2019-12-06 18:58:38 +00:00
## Extensions
There is experimental support for the `Zeroable` trait being derived through a
proc-macro. I'm not the author of that crate, please file bugs with that crate
in the other repo.
* https://github.com/rodrimati1992/zeroable_crates
2019-11-26 02:21:38 +00:00
## Stability
2020-01-29 08:57:45 +00:00
The goal is to stay at 1.y.z until _at least_ the next edition of Rust.
I consider any increase of the Minimum Rust Version to be a semver breaking change,
so `rustc-1.34` will continue to be supported for at least the rest of the
`bytemuck-1.y.z` series of the crate.
2020-07-25 22:03:30 +00:00
(The secret goal is to get all of this functionality into the standard library
some day so that we don't even need to import a crate to do all this fun stuff.)