[package]
edition = "2024"
name = "git-paw"
version = "0.3.0"
build = false
include = [
"src/**/*",
"assets/**/*",
"Cargo.toml",
"LICENSE*",
"README*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parallel AI Worktrees — orchestrate multiple AI coding CLI sessions across git worktrees"
homepage = "https://bearicorn.github.io/git-paw"
readme = "README.md"
keywords = [
"cli",
"tmux",
"git",
"ai",
"worktree",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/bearicorn/git-paw"
[lib]
name = "git_paw"
path = "src/lib.rs"
[[bin]]
name = "git-paw"
path = "src/main.rs"
test = false
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console]
version = "0.16.3"
[dependencies.crossterm]
version = "0.28"
[dependencies.dialoguer]
version = "0.12"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"net",
"sync",
"time",
"signal",
]
default-features = false
[dependencies.toml]
version = "1.1.2"
[dependencies.which]
version = "8.0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.hyper]
version = "1"
[dev-dependencies.hyper-util]
version = "0.1"
features = [
"client-legacy",
"http1",
"tokio",
]
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]
[lints.clippy]
await_holding_lock = "deny"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[profile.dist]
lto = "thin"
inherits = "release"