Releases: servo/smallbitvec
Releases · servo/smallbitvec
v2.5.3
- Update dependencies.
- Update to Rust 2021 edition.
Full Changelog: v2.5.2...v2.5.3
v2.5.1
- Speed up hashing of bit vectors (#27).
v2.5.0
- Allow creating empty iterators.
- Made
SmallBitVec::new
a const fn.
v2.3.0
- New
into_storage
and from_storage
methods (#17).
v2.2.0
- New methods
truncate
and resize
(#15)
- Improved documentation
v2.1.1
- Inline hot functions to avoid performance issues (#12).
v2.1.0
- Added
range
method for slicing a vector by a range of indices (#11)
- Some code cleanup and testing improvements
v2.0.0
- [breaking change] Use
usize
instead of u32
indices (#8).
- [breaking change] Make
get
return Option<bool>
(#7).
- [breaking change] Make
remove
return the removed bit.
- New
sbvec!
macro for constructing a SmallBitVec.