Closed

Description
Just for fun, I tried changing
pub type FxHashMap<K, V> = HashMap<K, V, BuildHasherDefault<FxHasher>>;
to
pub type FxHashMap<K, V> = OrderMap<K, V, BuildHasherDefault<FxHasher>>;
Using the new compiler, compilation time of my crate went down from 28.24 seconds to 25.46 seconds. I didn't do any further benchmarks yet, but the results seem promising. Looks like we could easily shave 5-10% from compilation time simply by changing the hash map implementation.
I was wondering if anyone else considered doing the same, and whether this is something I should experiment with further? What do you think?
cc @bluss