dashmap/Cargo.toml

26 lines
668 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2019-12-06 15:26:18 +00:00
version = "1.2.1"
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]
default = ["async"]
2019-12-06 15:30:34 +00:00
async = ["futures"]
nightly = ["parking_lot/nightly", "hashbrown/nightly"]
[dependencies]
hashbrown = "0.6.0"
parking_lot = "0.9.0"
num_cpus = "1.10.1"
ahash = "0.2.12"