triple_buffer 6.0.0

An implementation of triple buffering, useful for sharing frequently updated data between threads
Documentation
[package]
name = "triple_buffer"
#
# Release checklist:
#
# - Cross-check all public API documentation, update as needed
# - Update changelog
# - Update version number in Cargo.toml
# - Push master, make sure it passes CI
# - Cargo publish
# - Roll an annotated git tag
# - Add a github release
#
version = "6.0.0"
authors = ["Hadrien G. <knights_of_ni@gmx.com>"]
description = "An implementation of triple buffering, useful for sharing frequently updated data between threads"
documentation = "https://docs.rs/triple_buffer/"
repository = "https://github.com/HadrienG2/triple-buffer"
readme = "README.md"
keywords = [ "synchronization", "spsc", "multithreading", "non-blocking", "wait-free" ]
categories = [ "algorithms", "asynchronous", "concurrency", "data-structures" ]
license = "MPL-2.0"
edition = "2018"
rust-version = "1.46"

[badges]
maintenance = { status = "passively-maintained" }

[dependencies]
cache-padded = "1.1"

[dev-dependencies]
criterion = "0.3"
testbench = "0.8"

[lib]
bench = false

[[bench]]
name = "benchmarks"
harness = false