dashmap/Cargo.toml

50 lines
979 B
TOML
Raw Normal View History

[package]
name = "dashmap"
2020-01-14 19:34:30 +00:00
version = "3.0.2"
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-01-14 18:10:14 +00:00
nightly = ["parking_lot/nightly"]
2019-11-19 16:47:59 +00:00
[dev-dependencies]
2019-12-06 15:21:45 +00:00
criterion = "0.3.0"
rayon = "1.2.1"
2019-11-19 17:27:57 +00:00
chashmap = "2.2.2"
2019-11-19 17:35:45 +00:00
contrie = "0.1.4"
2019-11-19 17:40:42 +00:00
cht = "0.1.2"
2019-11-19 16:47:59 +00:00
[[bench]]
name = "rwlock_std"
harness = false
[[bench]]
name = "dashmap"
harness = false
2019-11-19 17:27:57 +00:00
[[bench]]
name = "chashmap"
harness = false
2019-11-19 17:35:45 +00:00
[[bench]]
name = "contrie"
harness = false
2019-11-19 17:40:42 +00:00
[[bench]]
name = "cht"
harness = false
[dependencies]
2019-12-06 15:21:45 +00:00
parking_lot = "0.10.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"
2020-01-14 18:34:03 +00:00
serde = { version = "~1.0.24", optional = true, features = ["derive"] }