• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "dashmap"
3version = "5.5.3"
4authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
5edition = "2018"
6rust-version = "1.65"
7license = "MIT"
8repository = "https://github.com/xacrimon/dashmap"
9homepage = "https://github.com/xacrimon/dashmap"
10description = "Blazing fast concurrent HashMap for Rust."
11readme = "README.md"
12documentation = "https://docs.rs/dashmap"
13keywords = ["atomic", "concurrent", "hashmap"]
14categories = ["concurrency", "algorithms", "data-structures"]
15
16[features]
17raw-api = []
18inline = ["hashbrown/inline-more"]
19
20[dependencies]
21lock_api = "0.4.10"
22parking_lot_core = "0.9.8"
23hashbrown = { version = "0.14.0", default-features = false }
24serde = { version = "1.0.188", optional = true, features = ["derive"] }
25cfg-if = "1.0.0"
26rayon = { version = "1.7.0", optional = true }
27once_cell = "1.18.0"
28arbitrary = { version = "1.3.0", optional = true }
29
30[package.metadata.docs.rs]
31features = ["rayon", "raw-api", "serde"]
32