ringbuffer-spsc 0.2.2

A fast thread-safe single producer-single consumer ring buffer
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 = "2021"
rust-version = "1.79"
name = "ringbuffer-spsc"
version = "0.2.2"
authors = ["Luca Cominardi <luca.cominardi@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast thread-safe single producer-single consumer ring buffer"
readme = "README.md"
license = "EPL-2.0 OR Apache-2.0"
repository = "https://github.com/Mallets/ringbuffer-spsc"

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

[[example]]
name = "throughput"
path = "examples/throughput.rs"

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

[dependencies.crossbeam-utils]
version = "0.8.4"
default-features = false

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"