1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "crossbeam-channel"
16version = "0.5.1"
17authors = ["The Crossbeam Project Developers"]
18description = "Multi-producer multi-consumer channels for message passing"
19homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
20documentation = "https://docs.rs/crossbeam-channel"
21keywords = ["channel", "mpmc", "select", "golang", "message"]
22categories = ["algorithms", "concurrency", "data-structures"]
23license = "MIT OR Apache-2.0"
24repository = "https://github.com/crossbeam-rs/crossbeam"
25[dependencies.cfg-if]
26version = "1"
27
28[dependencies.crossbeam-utils]
29version = "0.8"
30optional = true
31default-features = false
32[dev-dependencies.num_cpus]
33version = "1.13.0"
34
35[dev-dependencies.rand]
36version = "0.8"
37
38[dev-dependencies.signal-hook]
39version = "0.3"
40
41[features]
42default = ["std"]
43std = ["crossbeam-utils/std"]
44