[package]
edition = "2024"
name = "indexmap_store"
version = "0.2.2"
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Persistent IndexMap for Rust — embedded key-value store with in-memory hash map + append-only WAL on disk. O(1) get/insert/remove, insertion-order iteration, crash-safe recovery, automatic log compaction, serde-generic keys and values. No dependencies on sled/sqlite."
homepage = "https://github.com/shirotech/indexmap_store"
documentation = "https://docs.rs/indexmap_store"
readme = "README.md"
keywords = [
"indexmap",
"key-value",
"persistent",
"database",
"embedded",
]
categories = [
"data-structures",
"database-implementations",
"filesystem",
]
license = "MIT"
repository = "https://github.com/shirotech/indexmap_store"
[lib]
name = "indexmap_store"
path = "src/lib.rs"
[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