Skip to content

Commit 0c8be8d

Browse files
committed
Add a comment for the outdated crossbeam-deque
ref: rayon-rs#480 (comment)
1 parent 386b2f6 commit 0c8be8d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

rayon-core/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ categories = ["concurrency"]
1616
[dependencies]
1717
rand = ">= 0.3, < 0.5"
1818
num_cpus = "1.2"
19-
crossbeam-deque = "0.2.0"
2019
libc = "0.2.16"
2120
lazy_static = "1"
2221

22+
# This is deliberately not the latest version, because we want
23+
# to support older rustc than crossbeam-deque 0.3+ does.
24+
[dependencies.crossbeam-deque]
25+
version = "0.2.0"
26+
2327
[dev-dependencies]

0 commit comments

Comments
 (0)