aeternusdb 1.0.1

An embeddable, persistent key-value store built on an LSM-tree architecture.
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.85"
name = "aeternusdb"
version = "1.0.1"
build = false
exclude = [
    ".github/",
    "deny.toml",
    "doc/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embeddable, persistent key-value store built on an LSM-tree architecture."
documentation = "https://docs.rs/aeternusdb"
readme = "README.md"
keywords = [
    "database",
    "key-value",
    "lsm-tree",
    "storage-engine",
    "embedded-database",
]
categories = ["database-implementations"]
license = "MIT"
repository = "https://github.com/kamil-kielbasa/aeternusdb"

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

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

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

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

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

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

[dependencies.bloomfilter]
version = "3.0.1"

[dependencies.crc32fast]
version = "1.5.0"

[dependencies.crossbeam]
version = "0.8.4"

[dependencies.memmap2]
version = "0.9.9"

[dependencies.thiserror]
version = "2.0.17"

[dependencies.tracing]
version = "0.1.41"

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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

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

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]