[package]
edition = "2018"
name = "vector-map"
version = "1.1.0"
authors = ["Pierre Avital <pierre.avital@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "VecMap<K, V>: a Linear Search with Map API"
readme = "README.md"
keywords = [
"map",
"structures",
"vec-map",
]
license = "MPL-2.0"
repository = "https://github.com/p-avital/vec-map-rs.git"
[features]
enable_contracts = []
expose_pair_of_slices = []
nightly = []
serde_impl = ["dep:serde"]
[lib]
name = "vector_map"
path = "src/lib.rs"
test = false
bench = false
[[bench]]
name = "bench"
path = "benches/bench.rs"
[dependencies.serde]
version = "1.0"
optional = true
[dev-dependencies.linear-map]
version = "1.2"
[dev-dependencies.rand]
version = "0.9"