forked from xacrimon/dashmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (44 loc) · 1.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "dashmap"
version = "3.11.0"
authors = ["Acrimon <[email protected]>"]
edition = "2018"
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]
default = []
raw-api = []
no_std = ["hashbrown"]
[dev-dependencies]
criterion = "0.3.0"
rayon = "1.2.1"
chashmap = "2.2.2"
contrie = "0.1.4"
cht = "0.1.2"
fxhash = "0.2.1"
[[bench]]
name = "rwlock_std"
harness = false
[[bench]]
name = "dashmap"
harness = false
[[bench]]
name = "chashmap"
harness = false
[[bench]]
name = "contrie"
harness = false
[dependencies]
num_cpus = "1.11.1"
ahash = "0.3.1"
serde = { version = "1.0.104", optional = true, features = ["derive"] }
cfg-if = "0.1.10"
hashbrown = { version = "0.7.1", optional = true }
[package.metadata.docs.rs]
features = ["raw-api"]