litemap 0.7.2

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.7.2"
keywords = ["sorted", "vec", "map", "hashmap", "btreemap"]
description = "A key-value Map implementation based on a flat, sorted Vec."
documentation = "https://docs.rs/litemap"
license-file = "LICENSE"

authors.workspace = true
edition.workspace = true
include.workspace = true
repository.workspace = true
rust-version.workspace = true

[package.metadata.workspaces]
independent = true

[package.metadata.docs.rs]
all-features = true

[dependencies]
databake = { workspace = true, default-features = false, optional = true }
serde = {version = "1", optional = true, default-features = false, features = ["alloc"]}
yoke = { workspace = true, features = ["derive"], optional = true }

[dev-dependencies]
bincode = "1"
bytecheck = "0.6"
icu_benchmark_macros = { path = "../../tools/benchmark/macros" }
icu_locid = { path = "../../components/locid" }
postcard = { version = "1.0.0", features = ["use-std"], default-features = false }
rkyv = { version = "0.7", features = ["validation"] }
serde = "1"
serde_json = "1"

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
criterion = "0.4"

[features]
bench = ["serde"]
default = ["alloc"]
alloc = []
databake = ["dep:databake"]
serde = ["dep:serde"]
yoke = ["dep:yoke"]

# Enables the `testing` module with tools for testing custom stores.
testing = ["alloc"]

[package.metadata.cargo-all-features]
# Bench feature gets tested separately and is only relevant for CI
denylist = ["bench"]

[lib]
bench = false  # This option is required for Benchmark CI

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

[[test]]
name = "store"
required-features = ["testing"]

[[example]]
name = "litemap_bincode"
path = "examples/litemap_bincode.rs"
required-features = ["serde"]

[[example]]
name = "litemap_postcard"
path = "examples/litemap_postcard.rs"
required-features = ["serde"]

[[bench]]
name = "litemap"
harness = false
required-features = ["serde"]