49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
[package]
|
|
name = "crossbeam-queue"
|
|
# When publishing a new version:
|
|
# - Update CHANGELOG.md
|
|
# - Update README.md
|
|
# - Create "crossbeam-queue-X.Y.Z" git tag
|
|
version = "0.3.4"
|
|
edition = "2018"
|
|
rust-version = "1.36"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/crossbeam-rs/crossbeam"
|
|
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue"
|
|
description = "Concurrent queues"
|
|
keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
|
|
categories = ["concurrency", "data-structures", "no-std"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
# Enable to use APIs that require `std`.
|
|
# This is enabled by default.
|
|
std = ["alloc", "crossbeam-utils/std"]
|
|
|
|
# Enable to use APIs that require `alloc`.
|
|
# This is enabled by default and also enabled if the `std` feature is enabled.
|
|
#
|
|
# NOTE: Disabling both `std` *and* `alloc` features is not supported yet.
|
|
alloc = []
|
|
|
|
# These features are no longer used.
|
|
# TODO: remove in the next major version.
|
|
# Enable to use of unstable functionality.
|
|
# This is disabled by default and requires recent nightly compiler.
|
|
#
|
|
# NOTE: This feature is outside of the normal semver guarantees and minor or
|
|
# patch versions of crossbeam may make breaking changes to them at any time.
|
|
nightly = ["crossbeam-utils/nightly"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
|
|
[dependencies.crossbeam-utils]
|
|
version = "0.8.5"
|
|
path = "../crossbeam-utils"
|
|
default-features = false
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|