concurrent-queue/Cargo.toml

48 lines
1.2 KiB
TOML
Raw Normal View History

2020-05-27 19:31:05 +00:00
[package]
name = "concurrent-queue"
2022-01-08 09:43:05 +00:00
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v2.x.y" git tag
version = "2.5.0"
2022-11-06 18:05:03 +00:00
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Taiki Endo <te316e89@gmail.com>",
"John Nunley <dev@notgull.net>"
2022-11-06 18:05:03 +00:00
]
2024-01-06 16:55:00 +00:00
edition = "2021"
rust-version = "1.60"
2020-05-27 19:31:05 +00:00
description = "Concurrent multi-producer multi-consumer queue"
license = "Apache-2.0 OR MIT"
2020-12-26 14:47:13 +00:00
repository = "https://github.com/smol-rs/concurrent-queue"
2020-05-27 19:31:05 +00:00
keywords = ["channel", "mpmc", "spsc", "spmc", "mpsc"]
categories = ["concurrency"]
2022-01-08 09:06:35 +00:00
exclude = ["/.*"]
2020-05-27 19:31:05 +00:00
2021-05-23 18:03:28 +00:00
[lib]
bench = false
2020-05-27 19:31:05 +00:00
[dependencies]
crossbeam-utils = { version = "0.8.11", default-features = false }
2023-01-15 14:07:27 +00:00
portable-atomic = { version = "1", default-features = false, optional = true }
# Enables loom testing. This feature is permanently unstable and the API may
# change at any time.
[target.'cfg(loom)'.dependencies]
loom = { version = "0.7", optional = true }
2020-05-27 19:31:05 +00:00
2021-05-23 18:03:28 +00:00
[[bench]]
name = "bench"
harness = false
2020-05-27 19:31:05 +00:00
[dev-dependencies]
criterion = { version = "0.5", features = ["cargo_bench_support"], default-features = false }
2020-07-31 12:26:39 +00:00
easy-parallel = "3.1.0"
fastrand = "2.0.0"
[target.'cfg(target_family = "wasm")'.dev-dependencies]
wasm-bindgen-test = "0.3"
[features]
default = ["std"]
std = []