0.2.2 - 2024-07-28
0.2.1 - 2024-01-03
- (release) switch to release-plz
- avoid unnecessary allocations in
Vec{Map,Set}::into_vec
0.2.0 (2023-12-25)
- map: The type of the function parameter of
VecMap::retain
was changed fromFnMut(&K, &V) -> bool
toFnMut(&K, &mut V) -> bool
to make it consistent withretain
implementations of other commonstd
collections.
0.1.15 (2023-12-23)
0.1.14 (2023-12-23)
- apply new clippy lint suggestions (ed59fa5)
0.1.13 (2023-12-11)
0.1.12 (2023-09-19)
- set: remove unnecessary trait bounds from
Drain
(5643f73)
0.1.11 (2023-06-23)
0.1.10 (2023-03-18)
0.1.9 (2022-12-13)
- remove unnecessary usages of
mem::transmute
(41d90b6)
0.1.8 (2022-10-30)
- set: implement
Clone
forIntoIter
(e78d5ee)
- enable
clippy::pedantic
warnings (d61b8f8)
0.1.7 (2022-10-11)
- test: switch to
serde_test
(a980545)
0.1.6 (2022-10-02)
- add
as_slice
,to_vec
andinto_vec
methods (3f1906d)
- remove some needless borrows (29bd06e)
0.1.5 (2022-09-21)
- entry: add
into_key
method toOccupiedEntry
(f94cbc3)
0.1.4 (2022-09-18)
0.1.3 (2022-09-17)
0.1.2 (2022-09-15)
- manually implement
PartialEq
andEq
(6809137)
- add documentation link to
Cargo.toml
(4c76dc1)
0.1.1 (2022-09-14)
- add
vecmap!
macro (0d188cf)