1[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 7version = "0.8.5" 8edition = "2021" 9rust-version = "1.61" 10license = "MIT OR Apache-2.0" 11repository = "https://github.com/crossbeam-rs/crossbeam" 12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque" 13description = "Concurrent work-stealing deque" 14keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"] 15categories = ["algorithms", "concurrency", "data-structures"] 16 17[features] 18default = ["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. 24std = ["crossbeam-epoch/std", "crossbeam-utils/std"] 25 26[dependencies] 27crossbeam-epoch = { version = "0.9.17", path = "../crossbeam-epoch", default-features = false } 28crossbeam-utils = { version = "0.8.18", path = "../crossbeam-utils", default-features = false } 29 30[dev-dependencies] 31rand = "0.8" 32