Releases: Lut99/stackvec-rs
Releases · Lut99/stackvec-rs
v0.3.0 - Additional `PartialEq`, segfault fix
Added
- Some unit tests for (future) debugging purposes.
- Implementations for
PartialEqforStackVecwith[T, LEN2],&'a [T]andVec<T>.
Changed
From<[T, LEN]>is now implemented forFrom<T, LEN2>instead to also allow building it from arrays that don't consume the full capacity.- Note: not a breaking change because this is strictly more powerful than before.
Fixed
- A double free error when iterating-by-ownership over a
StackVecwithDrop-elements.
v0.2.0 - `Deref<Target = [T]>` implementation
This should greatly increase the power of the StackVec, as its now implementing all typical slice operations from the standard library.
Added
- A
Deref<Target = [u8]>implementation for theStackVec.- Note: Some functions have now moved to the slice implementations. Should not be breaking, but be aware.
- A
From<StackVec>implementation forVecs.
v0.1.0 - Initial Release
Initial release of the StackVec!