forked from jonhoo/flurry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (38 loc) · 1.06 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
[package]
name = "flurry"
version = "0.3.1"
authors = ["Jon Gjengset <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Rust port of Java's ConcurrentHashMap"
repository = "https://github.com/jonhoo/flurry.git"
keywords = ["hashmap","concurrent","map"]
categories = ["concurrency", "data-structures"]
exclude = ["/jsr166/**"]
[badges]
azure-devops = { project = "jonhoo/jonhoo", pipeline = "flurry", build = "15" }
codecov = { repository = "jonhoo/flurry", branch = "master", service = "github" }
maintenance = { status = "experimental" }
[features]
sanitize = ['crossbeam-epoch/sanitize']
[dependencies]
crossbeam-epoch = "0.8.2"
parking_lot = "0.10"
num_cpus = "1.12.0"
rayon = {version = "1.3", optional = true}
serde = {version = "1.0.105", optional = true}
[dependencies.ahash]
version = "0.3.2"
default-features = false
[dev-dependencies]
rand = "0.7"
rayon = "1.3"
criterion = "0.3"
serde_json = "1.0.50"
[[bench]]
name = "flurry_dashmap"
harness = false
[[bench]]
name = "flurry_hashbrown"
harness = false