forked from xacrimon/dashmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 889 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "dashmap"
version = "5.4.0"
authors = ["Acrimon <[email protected]>"]
edition = "2018"
rust-version = "1.59"
license = "MIT"
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]
raw-api = []
inline = ["hashbrown/inline-more"]
[dependencies]
lock_api = "0.4.8"
parking_lot_core = "0.9.3"
hashbrown = { version = "0.12.3", default-features = false }
serde = { version = "1.0.144", optional = true, features = ["derive"] }
cfg-if = "1.0.0"
rayon = { version = "1.5.3", optional = true }
once_cell = "1.13.1"
[package.metadata.docs.rs]
features = ["rayon", "raw-api", "serde"]