evmap 9.0.0-beta.2

A lock-free, eventually consistent, concurrent multi-value map.
Documentation
[package]
name = "evmap"
version = "9.0.0-beta.2"
edition = "2018"

description = "A lock-free, eventually consistent, concurrent multi-value map."
readme = "README.md"

authors = ["Jon Gjengset <jon@thesquareplanet.com>"]

documentation = "https://docs.rs/evmap"
homepage = "https://github.com/jonhoo/rust-evmap"
repository = "https://github.com/jonhoo/rust-evmap.git"

keywords = ["map","multi-value","lock-free"]
categories = ["concurrency", "data-structures"]

license = "MIT/Apache-2.0"

[badges]
azure-devops = { project = "jonhoo/jonhoo", pipeline = "evmap", build = "8" }
codecov = { repository = "jonhoo/rust-evmap", branch = "master", service = "github" }
maintenance = { status = "passively-maintained" }

[dependencies]
indexmap = { version = "1.1.0", optional = true }
smallvec = "1.0.0"
hashbag = "0.1.2"
bytes = { version = "0.5", optional = true }

[features]
default = []
indexed = ["indexmap"]