kovan 0.1.2

High-performance wait-free memory reclamation for lock-free data structures. Bounded memory usage, predictable latency.
[[bench]]
harness = false
name = "comparison"
path = "benches/comparison.rs"

[[bench]]
harness = false
name = "throughput"
path = "benches/throughput.rs"

[dependencies.once_cell]
default-features = false
features = ["alloc"]
version = "1.19"

[dependencies.portable-atomic]
default-features = false
features = ["require-cas"]
version = "1.11.1"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5"

[dev-dependencies.crossbeam-epoch]
version = "0.9"

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

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

[features]
default = []
nightly = []
robust = []

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

[package]
authors = ["Theo M. Bulut <vertexclique@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "memory-management", "no-std"]
description = "High-performance wait-free memory reclamation for lock-free data structures. Bounded memory usage, predictable latency."
edition = "2024"
keywords = ["concurrency", "lock-free", "memory-reclamation", "smr"]
license = "Apache-2.0"
name = "kovan"
readme = "README.md"
repository = "https://github.com/vertexclique/kovan"
rust-version = "1.90"
version = "0.1.2"

[package.metadata.docs.rs]
rustdoc-args = ["-C", "target-feature=+cmpxchg16b"]

[profile.bench]
inherits = "release"

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

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

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

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