You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Requires Rust 1.36 or later.
[breaking change] Use MaybeUninit to avoid possible undefined behavior (#162, #170).
[breaking change] The drain method now takes a range argument, just like the standard Vec::drain (#145).
[breaking change] Remove the unreachable function and replace it with the new standard unreachable_unchecked function (#164).
[breaking change] Use no_std by default. This crate depends only on core and alloc by default. If the optional write feature is enabled then it depends on std so that SmallVec<[u8;_]> can implement the std::io::Write trait (#173).
[breaking change] Remove the deprecated VecLike trait (#165).
Add support for 96-element small vectors, SmallVec<[T; 96]> (#163).