batched-queue 0.1.0-alpha.1

A high-performance, highly-concurrent batched queue implementation for Rust.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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"