Age | Commit message (Collapse) | Author |
|
Instead of these functions, it makes use of the trait object upcasting added in Rust 1.86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This greatly improves compilation speed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Hashbrown's HashMap & HashSet is faster than std's. I
guess this is because std (which uses hashbrown) does
not enable hashbrown's default-hasher flag and instead
uses a slower hasher.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|