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.0" 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" 21readme = "README.md" 22keywords = ["channel", "mpmc", "select", "golang", "message"] 23categories = ["algorithms", "concurrency", "data-structures"] 24license = "MIT OR Apache-2.0" 25repository = "https://github.com/crossbeam-rs/crossbeam" 26[dependencies.cfg-if] 27version = "1" 28 29[dependencies.crossbeam-utils] 30version = "0.8" 31optional = true 32default-features = false 33[dev-dependencies.num_cpus] 34version = "1.13.0" 35 36[dev-dependencies.rand] 37version = "0.7.3" 38 39[dev-dependencies.signal-hook] 40version = "0.1.15" 41 42[features] 43default = ["std"] 44std = ["crossbeam-utils/std"] 45