Skip to content

Commit

Permalink
Update dashmap, hashlink, and rustc-hash
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaReiser committed Jul 1, 2024
1 parent a1bf3a6 commit d9a1144
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ description = "A generic framework for on-demand, incrementalized computation (e
[dependencies]
arc-swap = "1.6.0"
crossbeam = "0.8.1"
dashmap = "5.3.4"
hashlink = "0.8.0"
dashmap = "6.0.1"
hashlink = "0.9.1"
indexmap = "2"
log = "0.4.5"
parking_lot = "0.12.1"
rustc-hash = "1.1.0"
rustc-hash = "2.0.0"
salsa-macros = { path = "components/salsa-macros" }
smallvec = "1.0.0"

Expand Down
8 changes: 2 additions & 6 deletions src/tracked_struct/struct_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ use std::{
use crossbeam::queue::SegQueue;
use dashmap::mapref::one::RefMut;

use crate::{
alloc::Alloc,
hash::{FxDashMap, FxHasher},
Id, Runtime,
};
use crate::{alloc::Alloc, hash::FxDashMap, Id, Runtime};

use super::{Configuration, KeyStruct, ValueStruct};

Expand Down Expand Up @@ -243,7 +239,7 @@ pub(crate) struct UpdateRef<'db, C>
where
C: Configuration,
{
guard: RefMut<'db, Id, Alloc<ValueStruct<C>>, FxHasher>,
guard: RefMut<'db, Id, Alloc<ValueStruct<C>>>,
}

impl<'db, C> UpdateRef<'db, C>
Expand Down

0 comments on commit d9a1144

Please sign in to comment.