Skip to content

Commit

Permalink
Revert crossbeam-epoch, cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
saethlin committed May 19, 2022
1 parent c2471a7 commit 41e85dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ unstable-debug-counters = ["future"]

[dependencies]
crossbeam-channel = "0.5.4"
crossbeam-epoch = "0.9"
crossbeam-epoch = "0.8.2"
crossbeam-utils = "0.8"
num_cpus = "1.13"
once_cell = "1.7"
Expand Down
5 changes: 4 additions & 1 deletion src/sync/housekeeper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ impl<T> Drop for Housekeeper<T> {
}

// functions/methods used by Cache
impl<T: InnerSync> Housekeeper<T> where T: 'static {
impl<T: InnerSync> Housekeeper<T>
where
T: 'static,
{
pub(crate) fn new(inner: Weak<T>) -> Self {
use crate::common::thread_pool::PoolName;

Expand Down

0 comments on commit 41e85dd

Please sign in to comment.