From: Chris Morgan Date: Tue, 22 Feb 2022 02:50:22 +0000 (+1100) Subject: Resolve the std/hashbrown conflict situation X-Git-Tag: 1.0.0-beta.2~1 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/40e60cefd62236753888e887713692713683cdce?ds=sidebyside;hp=40e60cefd62236753888e887713692713683cdce Resolve the std/hashbrown conflict situation Big diff, but it’s mostly just whitespace changes; ignore whitespace and it’s much smaller, though still not as tiny as it could potentially be. Essentially, this just duplicates everything for the hashbrown variant. It’d be possible to use generic associated types to achieve this without the duplication, but that depends on currently-unstable features, and is probably slightly more painful to use anyway. I’ll keep the approach in mind for a possible version 2, but for now this is the pragmatic route. ---