litemap 0.2.0

A key-value Map implementation based on a flat, sorted Vec.
Documentation
# This file is part of ICU4X. For terms of use, please see the file
# called LICENSE at the top level of the ICU4X source tree
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

[package]
name = "litemap"
version = "0.2.0"
authors = ["The ICU4X Project Developers"]
repository = "https://github.com/unicode-org/icu4x"
edition = "2018"
license-file = "../../LICENSE"
keywords = ["sorted", "vec", "map", "hashmap", "btreemap"]
description = "A key-value Map implementation based on a flat, sorted Vec."
documentation = "https://docs.rs/litemap"
readme = "./README.md"
# Keep this in sync with other crates unless there are exceptions
include = [
    "src/**/*",
    "examples/**/*",
    "benches/**/*",
    "tests/**/*",
    "Cargo.toml",
    "README.md"
]

[dependencies]
serde = {version = "1", optional = true}

[dev-dependencies]
serde = "1"
serde_json = "1"
icu_locid = { version = "0.2", path = "../../components/locid" }
icu_locid_macros = { version = "0.2", path = "../../components/locid/macros" }
icu_benchmark_macros = { version = "0.2", path = "../../tools/benchmark/macros" }

[[test]]
name = "serde"
required-features = ["serde"]