bbqueue 0.6.1

A SPSC, lockless, no_std, thread safe, queue, based on BipBuffers
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 = "bbqueue"
version = "0.6.1"
authors = ["James Munns <james@onevariable.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A SPSC, lockless, no_std, thread safe, queue, based on BipBuffers"
documentation = "https://docs.rs/bbqueue/"
readme = "README.md"
keywords = [
    "bipbuffer",
    "lock-free",
]
categories = [
    "embedded",
    "no-std",
    "memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jamesmunns/bbqueue"

[package.metadata.docs.rs]
rustdoc-args = [
    "--cfg",
    "docsrs",
]
features = ["std"]

[features]
alloc = []
critical-section = [
    "dep:critical-section",
    "maitake-sync?/critical-section",
]
default = [
    "maitake-sync-0_2",
    "critical-section",
]
disable-cache-padding = ["maitake-sync?/no-cache-pad"]
maitake-sync-0_2 = ["dep:maitake-sync"]
std = ["alloc"]

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

[dependencies.const-init]
version = "1.0.0"

[dependencies.critical-section]
version = "1.0"
optional = true
default-features = false

[dependencies.maitake-sync]
version = "0.2"
optional = true
default-features = false

[dev-dependencies.tokio]
version = "1.0"
features = [
    "macros",
    "rt",
    "time",
]