mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-26 22:53:15 -04:00
At the moment, the wayland code uses ahash to perform hashing in its various hash mas. This was done because ahash was seen as the best default in the Rust community at the time. However, most Rust crates (including `hashbrown`) have since moved to using foldhash instead. This move is done for two primary reasons: - This reduces the number of dependencies in the tree for most GUI projects. As other projects use foldhash now, this removes ahash (as well as its five dependencies) from the tree. - In most cases, foldhash is faster than ahash. Signed-off-by: John Nunley <dev@notgull.net>
2.6 KiB
2.6 KiB