grumpydb 5.0.0

A disk-based object storage engine with B+Tree indexing and page-based storage
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.88"
name = "grumpydb"
version = "5.0.0"
build = false
exclude = [
    ".claude/",
    "docs/",
    "tests/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A disk-based object storage engine with B+Tree indexing and page-based storage"
homepage = "https://github.com/pierreg256/grumpydb"
documentation = "https://docs.rs/grumpydb"
readme = "README.md"
keywords = [
    "database",
    "storage-engine",
    "btree",
    "embedded",
    "key-value",
]
categories = [
    "database-implementations",
    "data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/pierreg256/grumpydb"

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

[[example]]
name = "taskman"
path = "examples/taskman/main.rs"

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

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

[dependencies.crc32fast]
version = "1"

[dependencies.parking_lot]
version = "0.12"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

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

[dev-dependencies.jsonwebtoken]
version = "9"

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

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

[dev-dependencies.serde_json]
version = "1"

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

[dev-dependencies.tokio]
version = "1"
features = [
    "rt-multi-thread",
    "macros",
    "net",
    "io-util",
    "time",
]