featherdb-storage 1.0.0

B-tree storage engine with buffer pool, WAL, and compression for FeatherDB
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 = "featherdb-storage"
version = "1.0.0"
authors = ["FeatherDB Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "B-tree storage engine with buffer pool, WAL, and compression for FeatherDB"
readme = "README.md"
keywords = [
    "database",
    "btree",
    "storage",
    "wal",
    "buffer-pool",
]
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yeshks/featherdb"

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

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

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

[dependencies.bitvec]
version = "1.0"

[dependencies.bytes]
version = "1.5"

[dependencies.crossbeam]
version = "0.8"

[dependencies.featherdb-core]
version = "1.0.0"

[dependencies.featherdb-crypto]
version = "1.0.0"

[dependencies.lz4_flex]
version = "0.11"

[dependencies.parking_lot]
version = "0.12"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.zstd]
version = "0.13"

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