[package]
edition = "2024"
name = "gwtr"
version = "0.4.0"
authors = ["Katsuhiro Honda <freewave3@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple Git worktree manager"
readme = "README.md"
keywords = [
"git",
"worktree",
"cli",
"tool",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/katsuhirohonda/gwtr"
[lib]
name = "gwtr"
path = "src/lib.rs"
[[bin]]
name = "gwtr"
path = "src/main.rs"
[[test]]
name = "completions_command"
path = "tests/completions_command.rs"
[[test]]
name = "list_command"
path = "tests/list_command.rs"
[[test]]
name = "prune_command"
path = "tests/prune_command.rs"
[[test]]
name = "pull_command"
path = "tests/pull_command.rs"
[[test]]
name = "remove_command"
path = "tests/remove_command.rs"
[[test]]
name = "status_command"
path = "tests/status_command.rs"
[[test]]
name = "worktree_creation"
path = "tests/worktree_creation.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.colored]
version = "2.1"
[dependencies.git2]
version = "0.19"
features = ["vendored-openssl"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.13"