indexmap_store 0.2.0

Mutable, persistent key-value store backed by an IndexMap with an append-only log.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "indexmap_store"
version = "0.2.0"
build = false
exclude = [
    "OPTIMIZATIONS.md",
    "optimization-diffs/",
    "bench_results.json",
    ".claude/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mutable, persistent key-value store backed by an IndexMap with an append-only log."
readme = false
license = "MIT OR Apache-2.0"

[lib]
name = "indexmap_store"
path = "src/lib.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[bench]]
name = "store_bench"
path = "benches/store_bench.rs"
harness = false

[dependencies.ahash]
version = "0.8"
features = ["std"]
default-features = false

[dependencies.bincode]
version = "1.3"

[dependencies.indexmap]
version = "2"
features = ["serde"]

[dependencies.serde]
version = "1"
features = ["derive"]

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[profile.bench]
lto = "thin"
codegen-units = 1

[profile.release]
lto = "thin"
codegen-units = 1