1 | [package] |
2 | name = "crossbeam-deque" |
3 | # When publishing a new version: |
4 | # - Update CHANGELOG.md |
5 | # - Update README.md |
6 | # - Create "crossbeam-deque-X.Y.Z" git tag |
7 | version = "0.8.5" |
8 | edition = "2021" |
9 | rust-version = "1.61" |
10 | license = "MIT OR Apache-2.0" |
11 | repository = "https://github.com/crossbeam-rs/crossbeam" |
12 | homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque" |
13 | description = "Concurrent work-stealing deque" |
14 | keywords = ["chase-lev" , "lock-free" , "scheduler" , "scheduling" ] |
15 | categories = ["algorithms" , "concurrency" , "data-structures" ] |
16 | |
17 | [features] |
18 | default = ["std" ] |
19 | |
20 | # Enable to use APIs that require `std`. |
21 | # This is enabled by default. |
22 | # |
23 | # NOTE: Disabling `std` feature is not supported yet. |
24 | std = ["crossbeam-epoch/std" , "crossbeam-utils/std" ] |
25 | |
26 | [dependencies] |
27 | crossbeam-epoch = { version = "0.9.17" , path = "../crossbeam-epoch" , default-features = false } |
28 | crossbeam-utils = { version = "0.8.18" , path = "../crossbeam-utils" , default-features = false } |
29 | |
30 | [dev-dependencies] |
31 | rand = "0.8" |
32 | |