emdb 0.5.0

A lightweight, high-performance embedded database for 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 = "2021"
rust-version = "1.75"
name = "emdb"
version = "0.5.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, high-performance embedded database for Rust."
homepage = "https://github.com/jamesgober/emdb-rs"
documentation = "https://docs.rs/emdb"
readme = "README.md"
keywords = [
    "database",
    "embedded",
    "storage",
    "kv",
    "db",
]
categories = [
    "database",
    "database-implementations",
    "data-structures",
    "caching",
]
license = "Apache-2.0"
repository = "https://github.com/jamesgober/emdb-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["ttl"]
nested = []
ttl = []

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

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

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

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

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

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

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

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

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

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

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

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

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

[[bench]]
name = "concurrency"
path = "benches/concurrency.rs"

[[bench]]
name = "kv"
path = "benches/kv.rs"

[[bench]]
name = "persistence"
path = "benches/persistence.rs"

[[bench]]
name = "transactions"
path = "benches/transactions.rs"

[dependencies.crc32fast]
version = "1.4"

[dependencies.fs4]
version = "0.8"

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

[profile.bench]
opt-level = 3
lto = "fat"
codegen-units = 1

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"