dashmap/Cargo.toml

29 lines
827 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2022-03-14 21:11:37 +00:00
version = "5.2.0"
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]
2022-02-06 15:14:01 +00:00
default = ["send_guard"]
raw-api = []
2022-02-06 15:14:01 +00:00
send_guard = ["parking_lot/send_guard"]
[dependencies]
2022-02-06 16:48:39 +00:00
parking_lot = "0.12.0"
2022-04-27 12:15:16 +00:00
hashbrown = "0.11.2"
2022-02-06 16:48:39 +00:00
serde = { version = "1.0.136", optional = true, features = ["derive"] }
2020-11-12 12:39:40 +00:00
cfg-if = "1.0.0"
2021-12-12 17:04:45 +00:00
rayon = { version = "1.5.1", optional = true }
[package.metadata.docs.rs]
2022-02-06 15:15:08 +00:00
features = ["rayon", "raw-api", "serde", "send_guard"]