left-right 0.11.7

A concurrency primitive for high concurrency reads over a single-writer data structure.
Documentation
[dependencies.crossbeam-utils]
default-features = false
version = "0.8"

[dependencies.slab]
version = "0.4.1"

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

[lints.rust.unexpected_cfgs]
check-cfg = ["cfg(loom)"]
level = "warn"
priority = 0

[package]
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency"]
description = "A concurrency primitive for high concurrency reads over a single-writer data structure."
edition = "2018"
keywords = ["concurrency", "lock-free"]
license = "MIT OR Apache-2.0"
name = "left-right"
readme = "README.md"
repository = "https://github.com/jonhoo/left-right.git"
version = "0.11.7"

[target."cfg(loom)".dependencies.loom]
version = "0.7.2"

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

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