[package]
name = "horus-cli"
version = "0.6.12"
edition = "2024"
rust-version = "1.89"
description = "The terminal client for a Horus gateway"
license = "Apache-2.0"
repository = "https://github.com/citizenhicks/horus"
readme = "README.md"
publish = ["crates-io"]
keywords = ["agent", "ai", "cli", "llm", "tui"]
categories = ["command-line-utilities", "development-tools"]
[[bin]]
name = "horus"
path = "src/main.rs"
doc = false
[[bin]]
name = "horus-gateway"
path = "src/gateway_main.rs"
doc = false
[dependencies]
diffy = "0.4.2"
horus = { version = "=0.6.10", path = "../.." }
horus-gateway = { version = "=0.6.12", path = "../horus-gateway" }
pulldown-cmark = { version = "0.10", default-features = false }
ratatui = { version = "0.30.2", features = [
"scrolling-regions",
"unstable-rendered-line-info",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
syntect = "5"
tempfile = "3"
tokio = { version = "1", features = ["io-util", "macros", "process", "rt-multi-thread", "sync", "time"] }
two-face = { version = "0.5", default-features = false, features = ["syntect-default-onig"] }
uuid = { version = "1", features = ["v4"] }
[lints]
workspace = true