Skip to content

Commit 4eaa4ef

Browse files
authored
Merge pull request #505 from mbrobbel/issue-504-deps
Remove some unused dependencies
2 parents 091421b + 396c4a4 commit 4eaa4ef

File tree

5 files changed

+2
-10
lines changed

5 files changed

+2
-10
lines changed

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ description = "A generic framework for on-demand, incrementalized computation (e
1010
[dependencies]
1111
arc-swap = "1.6.0"
1212
crossbeam = "0.8.1"
13-
crossbeam-utils = { version = "0.8", default-features = false }
1413
dashmap = "5.3.4"
1514
hashlink = "0.8.0"
1615
indexmap = "2"
@@ -22,12 +21,10 @@ smallvec = "1.0.0"
2221

2322
[dev-dependencies]
2423
derive-new = "0.5.9"
25-
env_logger = "*"
2624
expect-test = "1.4.0"
2725
eyre = "0.6.8"
2826
notify-debouncer-mini = "0.2.1"
2927
ordered-float = "3.0"
30-
parking_lot = "0.12.1"
3128
rustversion = "1.0"
3229
test-log = "0.2.11"
3330
trybuild = "1.0"

components/salsa-macros/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ description = "Procedural macros for the salsa crate"
1111
proc-macro = true
1212

1313
[dependencies]
14-
eyre = "0.6.5"
15-
heck = "0.4"
1614
proc-macro2 = "1.0"
1715
quote = "1.0"
1816
syn = { version = "2.0.64", features = ["full", "visit-mut"] }

src/function/lru.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::{hash::FxLinkedHashSet, Id};
22

3-
use crossbeam_utils::atomic::AtomicCell;
3+
use crossbeam::atomic::AtomicCell;
44
use parking_lot::Mutex;
55

66
#[derive(Default)]

src/function/memo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use std::sync::Arc;
22

33
use arc_swap::{ArcSwap, Guard};
4-
use crossbeam_utils::atomic::AtomicCell;
4+
use crossbeam::atomic::AtomicCell;
55

66
use crate::{
77
hash::FxDashMap, key::DatabaseKeyIndex, runtime::local_state::QueryRevisions, Event, EventKind,

tests/compile-fail/singleton_only_for_input.stderr

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ error[E0432]: unresolved imports `common::HasLogger`, `common::Logger`
3232
| ^^^^^^^^^ ^^^^^^ no `Logger` in `common`
3333
| |
3434
| no `HasLogger` in `common`
35-
|
36-
= help: consider importing this struct instead:
37-
env_logger::Logger
3835

3936
error[E0412]: cannot find type `MyTracked` in this scope
4037
--> tests/compile-fail/singleton_only_for_input.rs:11:21

0 commit comments

Comments
 (0)