[package]
edition = "2024"
rust-version = "1.89.0"
name = "hyphae-cli"
version = "0.1.0"
authors = ["Celiums Solutions LLC"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Single-binary CLI, server, verifier, and MCP adapter for Hyphae."
homepage = "https://hyphae.dev"
documentation = "https://docs.rs/hyphae-cli"
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"
[[bin]]
name = "hyphae"
path = "src/main.rs"
[[test]]
name = "single_binary"
path = "tests/single_binary.rs"
[dependencies.clap]
version = "4.6.1"
features = [
"derive",
"env",
]
[dependencies.hyphae-client]
version = "=0.1.0"
[dependencies.hyphae-contracts]
version = "=0.1.0"
[dependencies.hyphae-core]
version = "=0.1.0"
[dependencies.hyphae-engine]
version = "=0.1.0"
[dependencies.hyphae-query]
version = "=0.1.0"
[dependencies.hyphae-server]
version = "=0.1.0"
[dependencies.hyphae-storage]
version = "=0.1.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.49.0"
features = [
"fs",
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[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"