[package]
edition = "2024"
rust-version = "1.90"
name = "kovan"
version = "0.1.6"
authors = ["Theo M. Bulut <vertexclique@gmail.com>"]
build = false
exclude = ["model_chk"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance wait-free memory reclamation for lock-free data structures. Bounded memory usage, predictable latency."
readme = "README.md"
keywords = [
"concurrency",
"lock-free",
"memory-reclamation",
"smr",
]
categories = [
"concurrency",
"memory-management",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/vertexclique/kovan"
resolver = "2"
[package.metadata.docs.rs]
rustdoc-args = [
"-C",
"target-feature=+cmpxchg16b",
]
[features]
default = []
nightly = []
robust = []
[lib]
name = "kovan"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[example]]
name = "treiber_stack"
path = "examples/treiber_stack.rs"
[[test]]
name = "atom"
path = "tests/atom.rs"
[[test]]
name = "correctness"
path = "tests/correctness.rs"
[[test]]
name = "robust"
path = "tests/robust.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[bench]]
name = "comparison"
path = "benches/comparison.rs"
harness = false
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies.once_cell]
version = "1.21"
features = ["alloc"]
default-features = false
[dependencies.portable-atomic]
version = "1.11.1"
features = [
"require-cas",
"fallback",
]
default-features = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.crossbeam-epoch]
version = "0.9"