serde-rs / bytes

Wrapper types to enable optimized handling of &[u8] and Vec<u8>
Apache License 2.0
306 stars 37 forks source link

Remove unstable feature attribute for alloc crate #16

Closed martindisch closed 5 years ago

martindisch commented 5 years ago

This crate has been very helpful in one of my projects, thanks a lot!

I noticed it needs nightly Rust because of the feature for the alloc crate. Since alloc has been stabilized in 1.36.0 for library crates, this is no longer necessary and removing it allows the library to be compiled in projects with stable Rust.

dtolnay commented 5 years ago

Published in 0.11.2.

martindisch commented 5 years ago

That was quick, thank you!