dashmap/Cargo.toml

23 lines
675 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2019-11-18 06:30:20 +00:00
version = "2.0.0"
authors = ["acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
license = "MIT"
repository = "https://gitlab.nebulanet.cc/xacrimon/dashmap"
homepage = "https://gitlab.nebulanet.cc/xacrimon/dashmap"
description = "Extremely fast concurrent map."
readme = "README.md"
documentation = "https://docs.rs/dashmap"
keywords = ["atomic", "concurrent", "hashmap"]
categories = ["concurrency", "algorithms", "data-structures"]
[features]
2019-09-03 14:59:07 +00:00
nightly = ["parking_lot/nightly", "dashmap-shard/nightly"]
[dependencies]
2019-11-19 11:14:46 +00:00
dashmap-shard = { version = "0.1.1", default-features = false }
parking_lot = "0.9.0"
2019-11-19 06:28:39 +00:00
num_cpus = "1.11.1"
2019-09-03 14:56:20 +00:00
fxhash = "0.2.1"