[package]
edition = "2024"
rust-version = "1.89"
name = "frame-host"
version = "0.4.0"
authors = ["Tom Whiting <tom@ablative.com.au>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Frame host server and embedding seam — boots an application's frame-core component tree with an embedded liminal bus, announces the host's real application events on the bus, and serves the built frame page"
readme = false
license = "Apache-2.0"
repository = "https://github.com/ablative-io/frame"
resolver = "2"
[lib]
name = "frame_host"
path = "src/lib.rs"
[[bin]]
name = "frame-host"
path = "src/main.rs"
doc = false
[[test]]
name = "config_defaults"
path = "tests/config_defaults.rs"
[[test]]
name = "dev_barrier_live"
path = "tests/dev_barrier_live.rs"
[[test]]
name = "document_binding"
path = "tests/document_binding.rs"
[[test]]
name = "embedding_seam"
path = "tests/embedding_seam.rs"
[[test]]
name = "frame_server"
path = "tests/frame_server.rs"
[[test]]
name = "host_lifecycle"
path = "tests/host_lifecycle.rs"
[[test]]
name = "portless"
path = "tests/portless.rs"
[[test]]
name = "shell_serving"
path = "tests/shell_serving.rs"
[dependencies.axum]
version = "=0.8.9"
[dependencies.clap]
version = "=4.5.41"
features = ["derive"]
[dependencies.frame-authority]
version = "0.1.0"
[dependencies.frame-conv]
version = "0.2.0"
[dependencies.frame-core]
version = "0.3.0"
[dependencies.frame-doc-service]
version = "0.1.0"
[dependencies.frame-editor-wire]
version = "0.1.0"
[dependencies.frame-state]
version = "0.2.0"
[dependencies.liminal-sdk]
version = "0.4.1"
[dependencies.liminal-server]
version = "0.4.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[lints.clippy]
expect_used = "warn"
panic = "warn"
todo = "warn"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"