[package]
edition = "2024"
rust-version = "1.89.0"
name = "hyphae-engine"
version = "0.1.0"
authors = ["Celiums Solutions LLC"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Embeddable facade for the autonomous, durable, and verifiable Hyphae data engine."
homepage = "https://hyphae.dev"
documentation = "https://docs.rs/hyphae-engine"
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_engine"
path = "src/lib.rs"
[[example]]
name = "embedded"
path = "examples/embedded.rs"
[[test]]
name = "disk_compatibility"
path = "tests/disk_compatibility.rs"
[[test]]
name = "result_proof"
path = "tests/result_proof.rs"
[dependencies.blake3]
version = "1.8.5"
[dependencies.crc32c]
version = "0.6.8"
[dependencies.hyphae-query]
version = "=0.1.0"
[dependencies.hyphae-retrieval]
version = "=0.1.0"
[dependencies.hyphae-storage]
version = "=0.1.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.uuid]
version = "1.23.5"
features = [
"serde",
"v7",
]
[dev-dependencies.serde_json]
version = "1.0.150"
[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"