[[bench]]
harness = false
name = "bench"
[dependencies.crossbeam-utils]
version = "0.8"
[dev-dependencies.rand]
version = "0.8"
[package]
authors = ["LlewVallis <llewvallis@gmail.com>"]
categories = ["concurrency", "algorithms", "data-structures"]
description = """
A concurrent, unordered collection for Rust, where each element has an internally generated ID and a read-write lock.
"""
documentation = "https://docs.rs/read-write-store"
edition = "2018"
homepage = "https://github.com/LlewVallis/read-write-store"
include = ["Cargo.toml", "src", "benches", "README.md", "LICENSE"]
keywords = ["atomic", "concurrent", "store"]
license = "MIT"
name = "read-write-store"
readme = "README.md"
repository = "https://github.com/LlewVallis/read-write-store"
version = "0.2.0"
[profile.release]
lto = true
opt-level = 3
[target."cfg(loom)".dev-dependencies.loom]
version = "0.5"
[target."cfg(not(loom))".dependencies.crossbeam-queue]
version = "0.3"
[target."cfg(not(loom))".dependencies.parking_lot]
version = "0.2"