mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-26 06:42:48 +00:00
commit
c80f5ead1c
2 changed files with 2 additions and 3 deletions
|
@ -12,9 +12,8 @@ readme = "README.md"
|
|||
crossbeam = "0.7.1"
|
||||
derive-new = "0.5.5"
|
||||
indexmap = "1.0.1"
|
||||
lock_api = "0.2.0"
|
||||
log = "0.4.5"
|
||||
parking_lot = "0.8.0"
|
||||
parking_lot = "0.9.0"
|
||||
rustc-hash = "1.0"
|
||||
smallvec = "0.6.5"
|
||||
rand = { version = "0.7", features = [ "small_rng" ] }
|
||||
|
|
|
@ -3,9 +3,9 @@ use crate::dependency::Dependency;
|
|||
use crate::durability::Durability;
|
||||
use crate::revision::{AtomicRevision, Revision};
|
||||
use crate::{Database, Event, EventKind, SweepStrategy};
|
||||
use lock_api::{RawRwLock, RawRwLockRecursive};
|
||||
use log::debug;
|
||||
use parking_lot::{Mutex, RwLock};
|
||||
use parking_lot::lock_api::{RawRwLock, RawRwLockRecursive};
|
||||
use rustc_hash::{FxHashMap, FxHasher};
|
||||
use smallvec::SmallVec;
|
||||
use std::fmt::Write;
|
||||
|
|
Loading…
Reference in a new issue