Remove some unused dependencies

This commit is contained in:
Matthijs Brobbel 2024-06-19 11:55:18 +02:00
parent 38a44eef87
commit 38070130a8
No known key found for this signature in database
GPG key ID: 551189F8515034D3
4 changed files with 2 additions and 6 deletions

View file

@ -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"

View file

@ -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"] }

View file

@ -1,6 +1,6 @@
use crate::{hash::FxLinkedHashSet, Id};
use crossbeam_utils::atomic::AtomicCell;
use crossbeam::atomic::AtomicCell;
use parking_lot::Mutex;
#[derive(Default)]

View file

@ -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,