[package]
edition = "2024"
rust-version = "1.89.0"
name = "hyphae-query"
version = "0.1.0"
authors = ["Celiums Solutions LLC"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Deterministic structured query types and reference execution for Hyphae."
homepage = "https://hyphae.dev"
documentation = "https://docs.rs/hyphae-query"
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_query"
path = "src/lib.rs"
[[test]]
name = "reference_properties"
path = "tests/reference_properties.rs"
[dependencies.hyphae-core]
version = "=0.1.0"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.proptest]
version = "1.6.0"
[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"