• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "crossbeam-utils"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Update README.md
6# - Create "crossbeam-utils-X.Y.Z" git tag
7version = "0.8.15"
8edition = "2018"
9rust-version = "1.38"
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/crossbeam-rs/crossbeam"
12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils"
13description = "Utilities for concurrent programming"
14keywords = ["scoped", "thread", "atomic", "cache"]
15categories = ["algorithms", "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 = []
23
24# These features are no longer used.
25# TODO: remove in the next major version.
26# Enable to use of unstable functionality.
27# This is disabled by default and requires recent nightly compiler.
28#
29# NOTE: This feature is outside of the normal semver guarantees and minor or
30# patch versions of crossbeam may make breaking changes to them at any time.
31nightly = []
32
33[dependencies]
34cfg-if = "1"
35
36# Enable the use of loom for concurrency testing.
37#
38# NOTE: This feature is outside of the normal semver guarantees and minor or
39# patch versions of crossbeam may make breaking changes to them at any time.
40[target.'cfg(crossbeam_loom)'.dependencies]
41loom = { version = "0.5", optional = true }
42
43[dev-dependencies]
44rand = "0.8"
45rustversion = "1"
46