v3.11.5 Updated deps.

This commit is contained in:
Acrimon 2020-07-03 01:21:05 +02:00
parent 3565c12971
commit e2d0f9a374
No known key found for this signature in database
GPG Key ID: 79B55D369EAD2A06
1 changed files with 28 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "dashmap"
version = "3.11.4"
version = "3.11.5"
authors = ["Acrimon <joel.wejdenstal@gmail.com>"]
edition = "2018"
license = "MIT"
@ -17,12 +17,36 @@ default = []
raw-api = []
no_std = ["hashbrown"]
[dev-dependencies]
criterion = "0.3.3"
rayon = "1.3.1"
chashmap = "2.2.2"
contrie = "0.1.4"
cht = "0.4.1"
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.13.0"
ahash = "0.3.5"
serde = { version = "1.0.110", optional = true, features = ["derive"] }
ahash = "0.4.0"
serde = { version = "1.0.114", optional = true, features = ["derive"] }
cfg-if = "0.1.10"
hashbrown = { version = "0.7.2", optional = true }
hashbrown = { version = "0.8.0", optional = true }
[package.metadata.docs.rs]
features = ["raw-api"]