[dependencies.hashbag]
version = "0.1.3"
[dependencies.indexmap]
optional = true
version = "1.6.1"
[dependencies.indexmap-amortized]
optional = true
version = "1.6.1"
[dependencies.left-right]
version = "0.11.5"
[dependencies.rand]
default-features = false
features = ["alloc"]
optional = true
version = "0.7"
[dependencies.smallvec]
version = "1.0.0"
[dev-dependencies.quickcheck]
version = "0.9"
[dev-dependencies.quickcheck_macros]
version = "0.9"
[dev-dependencies.rand]
version = "0.7"
[features]
amortize = ["indexmap-amortized", "hashbag/amortize"]
default = []
eviction = ["indexed", "rand"]
indexed = ["indexmap"]
[lib]
name = "evmap"
path = "src/lib.rs"
[package]
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["concurrency", "data-structures"]
description = "A lock-free, eventually consistent, concurrent multi-value map."
edition = "2018"
keywords = ["map", "multi-value", "lock-free"]
license = "MIT OR Apache-2.0"
name = "evmap"
readme = "README.md"
repository = "https://github.com/jonhoo/evmap.git"
version = "11.0.0-alpha.8"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[target."cfg(any())".dependencies.getrandom]
optional = true
version = "0.1.15"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "quick"
path = "tests/quick.rs"