[package]
edition = "2024"
rust-version = "1.89.0"
name = "hyphae-core"
version = "0.1.0"
authors = ["Celiums Solutions LLC"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared version and compatibility constants for the Hyphae data engine."
homepage = "https://hyphae.dev"
documentation = "https://docs.rs/hyphae-core"
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_core"
path = "src/lib.rs"
[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"