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