mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-13 00:40:22 +00:00
Remove some unused dependencies
This commit is contained in:
parent
38a44eef87
commit
38070130a8
4 changed files with 2 additions and 6 deletions
|
@ -10,7 +10,6 @@ description = "A generic framework for on-demand, incrementalized computation (e
|
|||
[dependencies]
|
||||
arc-swap = "1.6.0"
|
||||
crossbeam = "0.8.1"
|
||||
crossbeam-utils = { version = "0.8", default-features = false }
|
||||
dashmap = "5.3.4"
|
||||
hashlink = "0.8.0"
|
||||
indexmap = "2"
|
||||
|
@ -27,7 +26,6 @@ expect-test = "1.4.0"
|
|||
eyre = "0.6.8"
|
||||
notify-debouncer-mini = "0.2.1"
|
||||
ordered-float = "3.0"
|
||||
parking_lot = "0.12.1"
|
||||
rustversion = "1.0"
|
||||
test-log = "0.2.11"
|
||||
trybuild = "1.0"
|
||||
|
|
|
@ -11,8 +11,6 @@ description = "Procedural macros for the salsa crate"
|
|||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
eyre = "0.6.5"
|
||||
heck = "0.4"
|
||||
proc-macro2 = "1.0"
|
||||
quote = "1.0"
|
||||
syn = { version = "2.0.64", features = ["full", "visit-mut"] }
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
use crate::{hash::FxLinkedHashSet, Id};
|
||||
|
||||
use crossbeam_utils::atomic::AtomicCell;
|
||||
use crossbeam::atomic::AtomicCell;
|
||||
use parking_lot::Mutex;
|
||||
|
||||
#[derive(Default)]
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
use std::sync::Arc;
|
||||
|
||||
use arc_swap::{ArcSwap, Guard};
|
||||
use crossbeam_utils::atomic::AtomicCell;
|
||||
use crossbeam::atomic::AtomicCell;
|
||||
|
||||
use crate::{
|
||||
hash::FxDashMap, key::DatabaseKeyIndex, runtime::local_state::QueryRevisions, Event, EventKind,
|
||||
|
|
Loading…
Reference in a new issue