[package]
edition = "2024"
rust-version = "1.89.0"
name = "hyphae-storage"
version = "0.1.0"
authors = ["Celiums Solutions LLC"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Append-only durable local storage, recovery, snapshots, and backups for Hyphae."
homepage = "https://hyphae.dev"
documentation = "https://docs.rs/hyphae-storage"
readme = "README.md"
keywords = [
"database",
"embedded",
"local-first",
"provenance",
"verification",
]
categories = ["database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/celiumsai/hyphae"
resolver = "2"
[lib]
name = "hyphae_storage"
path = "src/lib.rs"
[dependencies.blake3]
version = "1.8.5"
[dependencies.crc32c]
version = "0.6.8"
[dependencies.fs4]
version = "1.1.0"
[dependencies.hyphae-core]
version = "=0.1.0"
[dependencies.redb]
version = "4.1.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1.23.5"
features = [
"serde",
"v7",
]
[lints.clippy]
expect_used = "deny"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"