waitfree-sync 0.3.3

A collection of wait-free data structures
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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)"]