openpencil/crates/op-cli/Cargo.toml

21 lines
606 B
TOML

[package]
name = "op-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
description = "OpenPencil `op` CLI — drives the editor via the HTTP MCP transport"
# The binary is `op` (the command users type); the crate is `op-cli`.
[[bin]]
name = "op"
path = "src/main.rs"
[dependencies]
op-ai-skills = { path = "../op-ai-skills" }
op-config-store = { path = "../op-config-store" }
op-figma = { path = "../op-figma" }
op-process-io = { path = "../op-process-io" }
op-rpc-transport = { path = "../op-rpc-transport" }
serde_json = { workspace = true }