blob: 572ddfd611459d3037561d0742c46c0bb147f59a [file] [log] [blame]
Jakub Kotur5dd645c2020-12-21 17:28:14 +01001[package]
2name = "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
Joel Galensonf0b17732021-08-09 10:27:52 -07007version = "0.8.1"
Jakub Kotur5dd645c2020-12-21 17:28:14 +01008authors = ["The Crossbeam Project Developers"]
9edition = "2018"
10license = "MIT OR Apache-2.0"
Jakub Kotur5dd645c2020-12-21 17:28:14 +010011repository = "https://github.com/crossbeam-rs/crossbeam"
12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque"
13documentation = "https://docs.rs/crossbeam-deque"
14description = "Concurrent work-stealing deque"
15keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
16categories = ["algorithms", "concurrency", "data-structures"]
17
18[features]
19default = ["std"]
20
21# Enable to use APIs that require `std`.
22# This is enabled by default.
Joel Galensonf0b17732021-08-09 10:27:52 -070023#
24# NOTE: Disabling `std` feature is not supported yet.
Jakub Kotur5dd645c2020-12-21 17:28:14 +010025std = ["crossbeam-epoch/std", "crossbeam-utils/std"]
26
27[dependencies]
28cfg-if = "1"
29
30[dependencies.crossbeam-epoch]
31version = "0.9"
32path = "../crossbeam-epoch"
33default-features = false
34optional = true
35
36[dependencies.crossbeam-utils]
37version = "0.8"
38path = "../crossbeam-utils"
39default-features = false
40optional = true
41
42[dev-dependencies]
Joel Galensonf0b17732021-08-09 10:27:52 -070043rand = "0.8"