- Bugfix, disambiguate the Display and Debug trait in some cases.
- Remove derive(Debug) from generated Iter, IterMut, VacantEntry. This was forcing all elements to implement Debug. Users can implement Debug themselves trivially if needed.
- Add Display trait for generated keys. This will just be the same as
usize
.
- Implement Iter, IterMut, and Drain.
- Minor change to allow re-exporting wrapped_slab from other local crates.
- Initial version with only basic Slab methods implemented. Notably Iter and IterMut are missing, along with drain() and retain().