cuendillar 0.1.0

Embedded persistent key–value storage engine (LSM-tree based)
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 = "cuendillar"
version = "0.1.0"
build = false
include = [
    "src/**/*",
    "benches/**/*",
    "tests/**/*",
    "LICENSE",
    "README.md",
    "Cargo.toml",
    "workload/sample.txt",
    "default_config.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded persistent key–value storage engine (LSM-tree based)"
documentation = "https://docs.rs/cuendillar"
readme = "README.md"
keywords = [
    "database",
    "kv-store",
    "lsm",
    "storage",
    "embedded",
]
categories = ["database-implementations"]
license = "MIT"
repository = "https://github.com/Lovepreet67/cuendillar"

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

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

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

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

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

[dependencies.byteorder]
version = "1.5.0"

[dependencies.crc]
version = "3.4.0"

[dependencies.figment]
version = "0.10.19"
features = ["toml"]

[dependencies.murmur3]
version = "0.5.2"

[dependencies.serde]
version = "1.0.228"
features = ["derive"]

[dependencies.tracing]
version = "0.1.41"

[dependencies.uuid]
version = "1.19.0"
features = ["v4"]

[dev-dependencies.chrono]
version = "0.4.42"

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

[dev-dependencies.hdrhistogram]
version = "7.5.4"

[dev-dependencies.plotters]
version = "0.3.7"

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

[dev-dependencies.tracing-subscriber]
version = "0.3.19"
features = [
    "env-filter",
    "json",
]

[profile.bench]
debug = 2

[profile.release]
debug = 0