[package]
edition = "2024"
rust-version = "1.95"
name = "btree-store"
version = "0.1.7"
authors = ["AbbyCin <abbytsing@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A persistent, embedded key-value storage engine in Rust featuring a Copy-On-Write (COW) B-Tree, ACID compliance, and crash safety with multi-bucket support"
homepage = "https://github.com/abbycin/btree-store"
readme = "README.md"
keywords = [
"database",
"kv",
"btree",
"storage",
"embedded",
]
categories = [
"database-implementations",
"data-structures",
]
license = "MIT"
repository = "https://github.com/abbycin/btree-store"
[features]
ffi = []
[lib]
name = "btree_store"
crate-type = [
"rlib",
"cdylib",
"staticlib",
]
path = "src/lib.rs"
[[test]]
name = "bench"
path = "tests/bench.rs"
[[test]]
name = "btree_tests"
path = "tests/btree_tests.rs"
[[test]]
name = "compaction_tests"
path = "tests/compaction_tests.rs"
[[test]]
name = "complex_leak_tests"
path = "tests/complex_leak_tests.rs"
[[test]]
name = "concurrency_tests"
path = "tests/concurrency_tests.rs"
[[test]]
name = "crash_safety_tests"
path = "tests/crash_safety_tests.rs"
[[test]]
name = "cross_instance_test"
path = "tests/cross_instance_test.rs"
[[test]]
name = "data_corruption"
path = "tests/data_corruption.rs"
[[test]]
name = "delete_merge_tests"
path = "tests/delete_merge_tests.rs"
[[test]]
name = "isolation_tests"
path = "tests/isolation_tests.rs"
[[test]]
name = "iterator_tests"
path = "tests/iterator_tests.rs"
[[test]]
name = "leak_safety_tests"
path = "tests/leak_safety_tests.rs"
[[test]]
name = "mace_repro"
path = "tests/mace_repro.rs"
[[test]]
name = "multi_bucket_tests"
path = "tests/multi_bucket_tests.rs"
[[test]]
name = "open_reuse_tests"
path = "tests/open_reuse_tests.rs"
[[test]]
name = "refresh_usage_test"
path = "tests/refresh_usage_test.rs"
[[test]]
name = "smo_stress_test"
path = "tests/smo_stress_test.rs"
[[test]]
name = "super_large_value_test"
path = "tests/super_large_value_test.rs"
[[bench]]
name = "btree_bench"
path = "benches/btree_bench.rs"
harness = false
[dependencies.crc32c]
version = "0.6.8"
[dependencies.parking_lot]
version = "0.12.5"
[dev-dependencies.criterion]
version = "0.8.1"
[dev-dependencies.rand]
version = "0.9"
[dev-dependencies.tempfile]
version = "3.0"
[profile.release]
lto = true