embers-cli 0.1.0

Interactive terminal UI and automation CLI for the Embers terminal multiplexer.
[package]
name = "embers-cli"
autobins = false
autotests = false
description = "Interactive terminal UI and automation CLI for the Embers terminal multiplexer."
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true

# `embers` is the main interactive entry point; `embers-cli` is the lightweight
# command-focused binary kept for explicit CLI/tooling workflows.
[[bin]]
name = "embers"
path = "src/main.rs"

[[bin]]
name = "embers-cli"
path = "src/bin/embers-cli.rs"

[dependencies]
base64.workspace = true
clap.workspace = true
embers-client = { version = "0.1.0", path = "../embers-client" }
embers-core = { version = "0.1.0", path = "../embers-core" }
embers-protocol = { version = "0.1.0", path = "../embers-protocol" }
embers-server = { version = "0.1.0", path = "../embers-server" }
libc.workspace = true
shell-words.workspace = true
serde_json.workspace = true
tokio.workspace = true
tracing.workspace = true
unicode-width.workspace = true

[dev-dependencies]
assert_cmd.workspace = true
embers-test-support = { version = "0.1.0", path = "../embers-test-support" }
filetime = "0.2"
predicates.workspace = true
tempfile.workspace = true

[[test]]
name = "integration"
path = "tests/integration.rs"