[package]
edition = "2021"
rust-version = "1.81"
name = "waitfree-sync"
version = "0.3.3"
authors = ["Marc Fischer"]
build = false
exclude = [".github/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A collection of wait-free data structures"
homepage = "https://github.com/novomation/waitfree-sync"
readme = "Readme.md"
keywords = [
"wait-free",
"queue",
"buffer",
"non-blocking",
"lock-free",
]
categories = [
"concurrency",
"memory-management",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/novomation/waitfree-sync"
[lib]
name = "waitfree_sync"
path = "src/lib.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "miri"
path = "tests/miri.rs"
[[bench]]
name = "spsc"
path = "benches/spsc.rs"
harness = false
[dependencies.crossbeam-utils]
version = "0.8"
[dev-dependencies.core_affinity]
version = "0.8"
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[target."cfg(loom)".dependencies.loom]
version = "0.7"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(loom)"]