subms-mpsc-queue 0.5.2

submillisecond.com cookbook recipe - concurrency: subms-mpsc-queue. Vyukov-style multi-producer single-consumer linked queue with dangling-tail handling.
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"
rust-version = "1.85"
name = "subms-mpsc-queue"
version = "0.5.2"
authors = ["Kieran Smith <oss@submillisecond.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "submillisecond.com cookbook recipe - concurrency: subms-mpsc-queue. Vyukov-style multi-producer single-consumer linked queue with dangling-tail handling."
homepage = "https://submillisecond.com/cookbook/recipes/subms-mpsc-queue"
readme = "README.md"
keywords = [
    "mpsc",
    "queue",
    "lock-free",
    "vyukov",
    "subms",
]
categories = [
    "concurrency",
    "data-structures",
]
license = "MIT OR Apache-2.0"

[features]
affinity = []
batch = []
bounded = []
default = []
harness = ["dep:subms"]
metrics = []
mpmc = []

[lib]
name = "subms_mpsc_queue"
path = "src/lib.rs"

[[example]]
name = "perf_features"
path = "examples/perf_features.rs"
required-features = [
    "harness",
    "mpmc",
    "bounded",
    "batch",
    "metrics",
]

[[example]]
name = "perf_main"
path = "examples/perf_main.rs"
required-features = ["harness"]

[[test]]
name = "mpsc_queue_tests"
path = "tests/mpsc_queue_tests.rs"

[[test]]
name = "sub_millisecond_bench"
path = "tests/sub_millisecond_bench.rs"

[dependencies.subms]
version = "0.5.2"
optional = true