39 lines
995 B
TOML
39 lines
995 B
TOML
[package]
|
|
name = "crossbeam-channel"
|
|
# When publishing a new version:
|
|
# - Update CHANGELOG.md
|
|
# - Update README.md
|
|
# - Create "crossbeam-channel-X.Y.Z" git tag
|
|
version = "0.5.2"
|
|
edition = "2018"
|
|
rust-version = "1.36"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/crossbeam-rs/crossbeam"
|
|
homepage = "https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel"
|
|
description = "Multi-producer multi-consumer channels for message passing"
|
|
keywords = ["channel", "mpmc", "select", "golang", "message"]
|
|
categories = ["algorithms", "concurrency", "data-structures"]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
|
|
# Enable to use APIs that require `std`.
|
|
# This is enabled by default.
|
|
#
|
|
# NOTE: Disabling `std` feature is not supported yet.
|
|
std = ["crossbeam-utils/std"]
|
|
|
|
[dependencies]
|
|
cfg-if = "1"
|
|
|
|
[dependencies.crossbeam-utils]
|
|
version = "0.8"
|
|
path = "../crossbeam-utils"
|
|
default-features = false
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
num_cpus = "1.13.0"
|
|
rand = "0.8"
|
|
signal-hook = "0.3"
|