etchdb 0.3.2

A fast, embedded database for Rust. Minimal dependencies. No C code. No build scripts.
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 = "etchdb"
version = "0.3.2"
authors = ["Tell Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, embedded database for Rust. Minimal dependencies. No C code. No build scripts."
readme = "README.md"
license = "MIT"
repository = "https://github.com/tell-rs/etch"

[features]
async = ["tokio"]
compression = ["zstd"]
default = []

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

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

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

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

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

[dependencies.etchdb-derive]
version = "0.3.0"

[dependencies.parking_lot]
version = "0.12"

[dependencies.postcard]
version = "1"
features = ["alloc"]

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

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
]
optional = true

[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]

[dependencies.zstd]
version = "0.13"
optional = true

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