[package]
edition = "2024"
rust-version = "1.85"
name = "cove-cli"
version = "0.7.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Claude Code session manager — tmux-based multi-session workflow"
homepage = "https://github.com/rasha-hantash/cove"
readme = "README.md"
keywords = [
"tmux",
"claude",
"cove",
"terminal",
"tui",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/rasha-hantash/cove"
[lib]
name = "cove_cli"
path = "src/lib.rs"
[[bin]]
name = "cove"
path = "src/main.rs"
[[test]]
name = "cli_parsing"
path = "tests/cli_parsing.rs"
[[test]]
name = "event_pipeline"
path = "tests/event_pipeline.rs"
[[test]]
name = "hook_state_mapping"
path = "tests/hook_state_mapping.rs"
[[test]]
name = "performance"
path = "tests/performance.rs"
[[test]]
name = "regressions"
path = "tests/regressions.rs"
[[test]]
name = "system"
path = "tests/system.rs"
[[test]]
name = "tmux_parsing"
path = "tests/tmux_parsing.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "3"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"
[profile.dist]
lto = "thin"
inherits = "release"