frame-cli 0.3.0

CLI for Frame — five intention-verbs over one application: frame new scaffolds it, frame run serves it, frame test proves it (real browser included), frame check verifies it statically, frame doctor walks the prerequisites
Documentation
[package]
name = "frame-cli"
version = "0.3.0"
description = "CLI for Frame — five intention-verbs over one application: frame new scaffolds it, frame run serves it, frame test proves it (real browser included), frame check verifies it statically, frame doctor walks the prerequisites"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true

[[bin]]
name = "frame"
path = "src/main.rs"
doc = false

[dependencies]
clap = { workspace = true }
# The retired standalone host binary's whole surface, now reached as
# `frame host --config`; also the ONE frame.toml loader every verb shares
# (the CLI never grows a second parser). frame-host is Apache-2.0 like the
# rest of the workspace (relicensed 2026-07-22 — see LICENSING.md), so the
# combined `frame` binary is Apache-2.0 throughout.
frame-host = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true }
tracing-subscriber = { workspace = true }

[dev-dependencies]
blake3 = { workspace = true }

[lints]
workspace = true