[package]
edition = "2021"
rust-version = "1.88"
name = "bohay"
version = "0.9.6"
authors = ["Riz <rizflagz@gmail.com>"]
build = "build.rs"
exclude = [
"/docs",
"/.github",
"/assets",
"/preview.html",
"/preview.ans",
"/MODULE-GUIDE.md",
"/examples",
"/CONTRIBUTING.md",
"/SECURITY.md",
"/install.sh",
"/install.ps1",
"/RELEASING.md",
"/scripts",
"/website",
"/flake.nix",
"/flake.lock",
"/nix",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mission control for your AI coding agents"
homepage = "https://github.com/RizRiyz/bohay"
documentation = "https://bohay.dev/docs/"
readme = "README.md"
keywords = [
"terminal",
"multiplexer",
"tui",
"agents",
"workspace",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/RizRiyz/bohay"
[package.metadata.deb]
section = "utils"
priority = "optional"
depends = ""
recommends = "git, openssh-client, xclip"
suggests = "gh, wl-clipboard"
extended-description = "A terminal workspace manager for AI coding agents: persistent panes, tabs, and workspaces that survive detach, a live sidebar of agent states, zero-config agent session resume, a built-in git tab, worktrees, remote attach over plain SSH, and an extension system. Ships as a single static binary."
assets = [[
"target/release/bohay",
"usr/bin/",
"755",
]]
[[package.metadata.generate-rpm.assets]]
source = "target/release/bohay"
dest = "/usr/bin/bohay"
mode = "755"
[package.metadata.generate-rpm.recommends]
git = "*"
openssh-clients = "*"
xclip = "*"
[package.metadata.generate-rpm.suggests]
gh = "*"
wl-clipboard = "*"
[[bin]]
name = "bohay"
path = "src/main.rs"
[dependencies.alacritty_terminal]
version = "0.26"
[dependencies.anyhow]
version = "1"
[dependencies.bincode]
version = "2"
features = ["serde"]
[dependencies.crossterm]
version = "0.29"
features = ["serde"]
[dependencies.interprocess]
version = "2"
[dependencies.portable-pty]
version = "0.9"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.toml]
version = "0.8"
[dependencies.toml_edit]
version = "0.22"
[dependencies.unicode-width]
version = "0.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[profile.release]
lto = "thin"
strip = true