dashmap/Cargo.toml

29 lines
774 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2020-08-04 17:52:31 +00:00
version = "3.11.10"
2019-12-06 21:53:51 +00:00
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
license = "MIT"
2019-12-06 21:53:51 +00:00
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]
2020-03-26 15:26:29 +00:00
default = []
raw-api = []
2020-03-26 15:26:29 +00:00
no_std = ["hashbrown"]
[dependencies]
2020-08-04 17:52:14 +00:00
num_cpus = "1.13.0"
2020-07-04 23:10:28 +00:00
ahash = "0.3.8"
2020-07-02 23:21:05 +00:00
serde = { version = "1.0.114", optional = true, features = ["derive"] }
cfg-if = "0.1.10"
2020-07-02 23:21:05 +00:00
hashbrown = { version = "0.8.0", optional = true }
[package.metadata.docs.rs]
features = ["raw-api", "serde"]