dashmap 2.1.1

Blazing fast concurrent HashMap for Rust.
Documentation
[package]
name = "dashmap"
version = "2.1.1"
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/xacrimon/dashmap"
homepage = "https://github.com/xacrimon/dashmap"
description = "Blazing fast concurrent HashMap for Rust."
readme = "README.md"
documentation = "https://docs.rs/dashmap"
keywords = ["atomic", "concurrent", "hashmap"]
categories = ["concurrency", "algorithms", "data-structures"]

[features]
nightly = ["parking_lot/nightly", "dashmap-shard/nightly"]

[dev-dependencies]
criterion = "0.3.0"
rayon = "1.2.1"
chashmap = "2.2.2"
contrie = "0.1.4"
cht = "0.1.2"

[[bench]]
name = "rwlock_std"
harness = false

[[bench]]
name = "dashmap"
harness = false

[[bench]]
name = "chashmap"
harness = false

[[bench]]
name = "contrie"
harness = false

[[bench]]
name = "cht"
harness = false

[dependencies]
dashmap-shard = { version = "0.1.1", default-features = false }
parking_lot = "0.10.0"
num_cpus = "1.11.1"
fxhash = "0.2.1"
crossbeam-utils = "0.7.0"