roughdb 0.9.0

Embedded persistent key-value store — a LevelDB port to Rust with a compatible on-disk format
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"
name = "roughdb"
version = "0.9.0"
authors = ["Alex Snaps <alex@wcgw.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embedded persistent key-value store — a LevelDB port to Rust with a compatible on-disk format"
readme = "README.md"
keywords = [
    "database",
    "levelDB",
    "persistence",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/wcgw/roughdb/"

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

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

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

[dependencies.bumpalo]
version = "3.20.2"

[dependencies.crc32c]
version = "0.6.8"

[dependencies.libc]
version = "0.2"

[dependencies.log]
version = "0.4"

[dependencies.snap]
version = "1"

[dependencies.zstd]
version = "0.13"

[dev-dependencies.clap]
version = "4"
features = ["derive"]

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

[dev-dependencies.serial_test]
version = "3.4"

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