triple_buffer 9.0.0

An implementation of triple buffering, useful for sharing frequently updated data between threads
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.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"