1[package]
2name = "crossbeam-channel"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Update README.md (when increasing major or minor version)
6# - Run './tools/publish.sh crossbeam-channel <version>'
7version = "0.5.12"
8edition = "2021"
9rust-version = "1.60"
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/crossbeam-rs/crossbeam"
12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
13description = "Multi-producer multi-consumer channels for message passing"
14keywords = ["channel", "mpmc", "select", "golang", "message"]
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-utils/std"]
25
26[dependencies]
27crossbeam-utils = { version = "0.8.18", path = "../crossbeam-utils", default-features = false }
28
29[dev-dependencies]
30num_cpus = "1.13.0"
31rand = "0.8"
32signal-hook = "0.3"
33