[package]
edition = "2021"
name = "statehouse-daemon"
version = "0.1.0"
authors = ["Statehouse Team"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Strongly consistent state and memory engine for AI agents"
homepage = "https://statehouse.dev"
documentation = "https://statehouse.dev"
readme = false
license-file = "LICENSE.md"
repository = "https://github.com/statehouse-dev/statehouse"
[[bin]]
name = "statehoused"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.prost]
version = "0.13"
[dependencies.prost-types]
version = "0.13"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.statehouse-core]
version = "0.1"
[dependencies.statehouse-proto]
version = "0.1"
[dependencies.tokio]
version = "1.40"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tonic]
version = "0.12"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]