fix rayon

This commit is contained in:
xacrimon 2021-12-12 18:11:37 +01:00
parent fd828f37b2
commit caa4096ec8
No known key found for this signature in database
GPG Key ID: FE567F46AFBDF3AE
1 changed files with 1 additions and 1 deletions

View File

@ -1,8 +1,8 @@
use crate::lock::RwLock;
use crate::mapref::multiple::{RefMulti, RefMutMulti};
use crate::util;
use crate::{DashMap, HashMap};
use core::hash::{BuildHasher, Hash};
use parking_lot::RwLock;
use rayon::iter::plumbing::UnindexedConsumer;
use rayon::iter::{FromParallelIterator, IntoParallelIterator, ParallelExtend, ParallelIterator};
use std::collections::hash_map::RandomState;