v1.5.1
- adds
Debugto hash factories - hopefully fixed the doc.rs issue, docgen was failing
v1.5.0
-
revamped hash-collections, thanks again @alex-ozdemir!
Details in PR 8.
- pre-
v1.5.0default was the identity hasher, now calledid-hash; - default hasher is now
p-hash(faster and deterministic); - Rust's std hash (
sip-hash) also available (non-deterministic); a-hashavailable by activating feature"with_ahash"(fastest, non-deterministic).
- pre-
Previous versions were re-exporting lazy_static's main macro, which was technically not needed. It
has been removed for this version.
v1.3.0
- publicized the weak reference API, thanks @alex-ozdemir!
v1.2.0
- cleaned
lazy_staticre-export, now only re-exportinglazy_staticmacro - added a
capacitymethod on the consign - added
collect,shrink_to_fit,collect_to_fitandreserveto theHashConsigntrait, see issue 2
Previous versions were exposing too much from lazy_static which was a mistake. Only the
lazy_static macro is re-exported now, other items such as the __Deref trait are not re-exported
anymore.
v1.1.0
- removed systematic unsafe implementations of
SendandSyncforHConsed, see issue 1
v1.0.1
- fixed path bug with
lazy_staticinconsignmacro
v1.0.0
- removed WIP
new_hconsedmacro (I found no way to make it generic enough) - renamed the factory creation macro
new_consignto justconsign
v0.9.11
- more homogeneous struct/trait naming
- documentation effort
- lazy static consign creation macro