[package]
edition = "2024"
name = "batched-queue"
version = "0.1.0-alpha.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, highly-concurrent batched queue implementation for Rust."
homepage = "https://github.com/SeedyROM/batched-queue"
documentation = "https://docs.rs/batched-queue"
readme = "README.md"
keywords = [
"message-queue",
"batched",
"concurrent",
"async",
]
categories = [
"concurrency",
"data-structures",
]
license-file = "LICENSE"
repository = "https://github.com/SeedyROM/batched-queue"
[features]
async = ["tokio"]
default = ["sync"]
sync = [
"parking_lot",
"crossbeam-channel",
]
tracing = ["dep:tracing"]
[lib]
name = "batched_queue"
path = "src/lib.rs"
[[bench]]
name = "sync_benchmark"
path = "benches/sync_benchmark.rs"
harness = false
[dependencies.crossbeam-channel]
version = "0.5.15"
optional = true
[dependencies.parking_lot]
version = "0.12.3"
optional = true
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.34"
features = ["full"]
optional = true
[dependencies.tracing]
version = "0.1.41"
optional = true
[dev-dependencies.criterion]
version = "0.5.1"