Use hashbrown hashmap directly for faster hash (ahash)

This commit is contained in:
Joakim Frostegård 2020-04-12 13:19:07 +02:00
parent eaa42a26b7
commit e61c961126
5 changed files with 16 additions and 4 deletions

View file

@ -3,7 +3,7 @@ use std::sync::atomic::Ordering;
use std::time::{Duration, Instant};
use std::vec::Drain;
use parking_lot::{Mutex, MutexGuard};
use parking_lot::MutexGuard;
use crossbeam_channel::{Sender, Receiver};
use rand::{SeedableRng, Rng, rngs::{SmallRng, StdRng}};