• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "crossbeam-queue"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Update README.md
6# - Create "crossbeam-queue-X.Y.Z" git tag
7version = "0.3.4"
8edition = "2018"
9rust-version = "1.36"
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/crossbeam-rs/crossbeam"
12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-queue"
13description = "Concurrent queues"
14keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
15categories = ["concurrency", "data-structures", "no-std"]
16
17[features]
18default = ["std"]
19
20# Enable to use APIs that require `std`.
21# This is enabled by default.
22std = ["alloc", "crossbeam-utils/std"]
23
24# Enable to use APIs that require `alloc`.
25# This is enabled by default and also enabled if the `std` feature is enabled.
26#
27# NOTE: Disabling both `std` *and* `alloc` features is not supported yet.
28alloc = []
29
30# These features are no longer used.
31# TODO: remove in the next major version.
32# Enable to use of unstable functionality.
33# This is disabled by default and requires recent nightly compiler.
34#
35# NOTE: This feature is outside of the normal semver guarantees and minor or
36# patch versions of crossbeam may make breaking changes to them at any time.
37nightly = ["crossbeam-utils/nightly"]
38
39[dependencies]
40cfg-if = "1"
41
42[dependencies.crossbeam-utils]
43version = "0.8.5"
44path = "../crossbeam-utils"
45default-features = false
46
47[dev-dependencies]
48rand = "0.8"
49