[package]
edition = "2024"
name = "git-paw"
version = "0.1.0"
build = false
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
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "config_integration"
path = "tests/config_integration.rs"
[[test]]
name = "e2e_tests"
path = "tests/e2e_tests.rs"
[[test]]
name = "git_integration"
path = "tests/git_integration.rs"
[[test]]
name = "session_integration"
path = "tests/session_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.console]
version = "0.16.3"
[dependencies.dialoguer]
version = "0.12"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9.8"
[dependencies.which]
version = "8.0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
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"