Releases: orium/rpds
Releases · orium/rpds
rpds 1.1.0
rpds 1.0.1
- Fix the tests of
SparseArrayUsize
on 32-bit computers. This issue did not affect production code which did work correctly on 32-bit platforms.
rpds 1.0.0
- First stable version. It’s time to commit to a stable release :).
- Improved performance of equality check for
{HashTrie,RedBlackTree}Map
and{HashTrie,RedBlackTree}Set
, as well as
subset and superset checks for{HashTrie,RedBlackTree}Set
when the references are the same.
rpds 0.13.0
- Updated archery fixing a soundness bug. See issue #18.
rpds 0.12.0
- Implemented
Hash
ofrRedBlackTreeSet
.
rpds 0.11.0
- Added
{HashTrie,RedBlackTree}Map::get_key_value()
and{HashTrie,RedBlackTree}Set::get()
.
rpds 0.10.0
- Improved
{HashTrieMap,HashTrieSet}
iteration performance.
rpds 0.9.0
- Added
{HashTrie,RedBlackTree}Map::get_mut()
. - Improved
HashTrieMap
performance when usingRc
pointers.
rpds 0.8.0
- Added support for
no_std
.
rpds 0.7.0
- Now the shared pointer type of all data structures use can be parameterizable. See the
Thread safety section in the README for details.
(#7) - Fix bug where dropping long lists would cause a stack overflow. (#46)