lkv 0.2.0

A lightweight and fast embedded key-value store for Rust.
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"
rust-version = "1.90"
name = "lkv"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight and fast embedded key-value store for Rust."
documentation = "https://docs.rs/lkv"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/nuskey8/lkv"

[features]
ffi = []
nightly = []

[lib]
name = "lkv"
crate-type = [
    "lib",
    "staticlib",
    "cdylib",
]
path = "src/lib.rs"

[[bench]]
name = "c_api"
path = "benches/c_api.rs"
harness = true
required-features = [
    "ffi",
    "nightly",
]

[[bench]]
name = "large_values"
path = "benches/large_values.rs"
harness = true
required-features = ["nightly"]

[[bench]]
name = "reopen"
path = "benches/reopen.rs"
harness = true
required-features = ["nightly"]

[dependencies.crc32c]
version = "0.6.8"

[dependencies.fs2]
version = "0.4.3"

[dependencies.memmap2]
version = "0.9.11"

[dependencies.rustc-hash]
version = "=2.1.3"

[dependencies.xxhash-rust]
version = "=0.8.18"
features = ["xxh3"]

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