cdb64 0.2.0

A Rust implementation of the cdb (constant database) format with 64-bit support.
Documentation
[[bench]]
harness = false
name = "cdb_benchmarks"
path = "benches/cdb_benchmarks.rs"

[dependencies.memmap2]
optional = true
version = "0.9.4"

[dependencies.thiserror]
version = "2.0.12"

[dev-dependencies.criterion]
version = "0.6"

[dev-dependencies.rand]
version = "0.9"

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

[features]
default = []
mmap = ["memmap2"]

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

[package]
authors = ["Jiseok CHOI <jiseok.dev@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database"]
description = "A Rust implementation of the cdb (constant database) format with 64-bit support."
edition = "2024"
keywords = ["cdb", "database", "hash", "kvstore"]
license = "MIT"
name = "cdb64"
readme = "README.md"
repository = "https://github.com/ever0de/cdb64-rs"
version = "0.2.0"

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

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

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