Update crossbeam-queue requirement from 0.2 to 0.3

This commit is contained in:
Harald Hoyer 2020-10-12 10:51:34 +02:00
parent 8d046cb502
commit f79482bb9a
2 changed files with 2 additions and 2 deletions

View file

@ -16,4 +16,4 @@ categories = [ "concurrency" ]
[dependencies]
rayon = "1.3"
crossbeam-queue = { version = "0.2", optional = true }
crossbeam-queue = { version = "0.3", optional = true }

View file

@ -198,7 +198,7 @@ impl<T> Queue<T> for SegQueue<T> {
#[inline(always)]
fn pop(&self) -> Option<T> {
SegQueue::pop(self).ok()
SegQueue::pop(self)
}
#[inline(always)]