[package] # # 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 # name = "rt-history" version = "3.0.0" edition = "2021" authors = ["Hadrien G. "] rust-version = "1.64" description = "An RT-safe history log with error checking" repository = "https://github.com/HadrienG2/rt-history" license = "MPL-2.0" keywords = [ "wait-free", "real-time", "synchronization", "history", "lock-free" ] categories = [ "concurrency", "data-structures" ] [badges] maintenance = { status = "passively-maintained" } [dependencies] atomic = { version = "0.6", default-features = false } bytemuck = "1.13.1" thiserror = "1.0" [dev-dependencies] criterion = { version = "0.5", default-features = false } quickcheck = "1.0" quickcheck_macros = "1.0" testbench = "1.0" [lib] bench = false [[bench]] name = "benchmark" harness = false