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