[package]
edition = "2024"
rust-version = "1.88"
name = "marver"
version = "0.0.25"
authors = ["Kit <rootpy1@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A TUI workspace for AI agent sessions: tmux orchestration, git worktree management, and repo control in one place."
readme = "README.md"
keywords = [
"tui",
"tmux",
"worktree",
"agents",
"workspace",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rootpy1/marver"
[lib]
name = "marver"
path = "src/lib.rs"
[[bin]]
name = "marver"
path = "src/main.rs"
[[test]]
name = "cleanup"
path = "tests/cleanup.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "daemon_lifecycle"
path = "tests/daemon_lifecycle.rs"
[dependencies.chrono]
version = "0.4.45"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.portable-pty]
version = "0.9.0"
[dependencies.ratatui]
version = "0.30"
[dependencies.rusqlite]
version = "0.40.1"
features = ["bundled"]
[dependencies.serde]
version = "1.0.229"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.151"
[dependencies.shell-words]
version = "1.1.1"
[dependencies.thiserror]
version = "2.0.19"
[dependencies.tui-term]
version = "0.3"
[dependencies.vt100]
version = "0.16"
[dev-dependencies.tempfile]
version = "3.27.0"