1[package]
2name = "crossbeam-channel"
3# When publishing a new version:
4# - Update CHANGELOG.md
5# - Update README.md
6# - Create "crossbeam-channel-X.Y.Z" git tag
7version = "0.5.1"
8authors = ["The Crossbeam Project Developers"]
9edition = "2018"
10license = "MIT OR Apache-2.0"
11repository = "https://github.com/crossbeam-rs/crossbeam"
12homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
13documentation = "https://docs.rs/crossbeam-channel"
14description = "Multi-producer multi-consumer channels for message passing"
15keywords = ["channel", "mpmc", "select", "golang", "message"]
16categories = ["algorithms", "concurrency", "data-structures"]
17
18[features]
19default = ["std"]
20
21# Enable to use APIs that require `std`.
22# This is enabled by default.
23std = ["crossbeam-utils/std"]
24
25[dependencies]
26cfg-if = "1"
27
28[dependencies.crossbeam-utils]
29version = "0.8"
30path = "../crossbeam-utils"
31default-features = false
32optional = true
33
34[dev-dependencies]
35num_cpus = "1.13.0"
36rand = "0.8"
37signal-hook = "0.3"
38