lsm_storage_engine 0.1.0

A high-performance, zero-dependency LSM-Tree storage engine in pure 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"
name = "lsm_storage_engine"
version = "0.1.0"
authors = ["0Albiere"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance, zero-dependency LSM-Tree storage engine in pure Rust."
homepage = "https://github.com/0Albiere/LSM_Tree_Storage_Engine"
documentation = "https://docs.rs/lsm_storage_engine"
readme = "README.md"
keywords = [
    "lsm",
    "kv",
    "storage",
    "engine",
    "database",
]
categories = [
    "database-implementations",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/0Albiere/LSM_Tree_Storage_Engine"

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

[[bin]]
name = "lsm-cli"
path = "src/bin/lsm-cli.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

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

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

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

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

[dependencies]

[dev-dependencies]