[package]
edition = "2024"
rust-version = "1.86"
name = "triple_buffer"
version = "9.0.0"
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of triple buffering, useful for sharing frequently updated data between threads"
documentation = "https://docs.rs/triple_buffer/"
readme = "README.md"
keywords = [
"synchronization",
"spsc",
"multithreading",
"non-blocking",
"wait-free",
]
categories = [
"algorithms",
"asynchronous",
"concurrency",
"data-structures",
]
license = "MPL-2.0"
repository = "https://github.com/HadrienG2/triple-buffer"
[badges.maintenance]
status = "passively-maintained"
[features]
miri = []
[lib]
name = "triple_buffer"
path = "src/lib.rs"
bench = false
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.crossbeam-utils]
version = "0.8.11"
default-features = false
[dev-dependencies.criterion]
version = "0.8"
default-features = false
[dev-dependencies.testbench]
version = "1.0"