[package] name = "vector-map" version = "1.0.1" keywords = ["map", "structures", "vec-map"] authors = ["Pierre Avital "] edition = "2018" license = "MPL-2.0" readme = "README.md" description = "VecMap: a Linear Search with Map API" repository = "https://github.com/p-avital/vec-map-rs.git" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] nightly = [] serde_impl = ["serde", "serde_test"] enable_contracts = [] default = ["contracts/disable_contracts"] [dependencies] contracts = "0.4" rand = "0.7" serde = { version = "1.0", optional = true } serde_test = { version = "1.0", optional = true } [dev-dependencies] linear-map = "1.2" [lib] test = false bench = false