• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.2"
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-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]
27cfg-if = "1"
28
29[dependencies.crossbeam-utils]
30version = "0.8"
31path = "../crossbeam-utils"
32default-features = false
33optional = true
34
35[dev-dependencies]
36num_cpus = "1.13.0"
37rand = "0.8"
38signal-hook = "0.3"
39