concurrent-queue/Cargo.toml

41 lines
1010 B
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 "v1.x.y" git tag
2022-07-27 02:25:01 +00:00
version = "1.2.4"
2020-05-27 19:31:05 +00:00
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
2022-01-08 09:06:35 +00:00
rust-version = "1.38"
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 }
portable-atomic = { version = "0.3", 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.5", 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]
2021-05-23 18:03:28 +00:00
criterion = "0.3.4"
2020-07-31 12:26:39 +00:00
easy-parallel = "3.1.0"
fastrand = "1.3.3"
[features]
default = ["std"]
std = []