43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "crossbeam-deque"
|
|
# When publishing a new version:
|
|
# - Update CHANGELOG.md
|
|
# - Update README.md
|
|
# - Create "crossbeam-deque-X.Y.Z" git tag
|
|
version = "0.8.0"
|
|
authors = ["The Crossbeam Project Developers"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/crossbeam-rs/crossbeam"
|
|
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque"
|
|
documentation = "https://docs.rs/crossbeam-deque"
|
|
description = "Concurrent work-stealing deque"
|
|
keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
|
|
categories = ["algorithms", "concurrency", "data-structures"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
# Enable to use APIs that require `std`.
|
|
# This is enabled by default.
|
|
std = ["crossbeam-epoch/std", "crossbeam-utils/std"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
|
|
[dependencies.crossbeam-epoch]
|
|
version = "0.9"
|
|
path = "../crossbeam-epoch"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[dependencies.crossbeam-utils]
|
|
version = "0.8"
|
|
path = "../crossbeam-utils"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.3"
|