gwtr 0.3.1

A simple Git worktree manager
Documentation
[[bin]]
name = "gwtr"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.colored]
version = "2.1"

[dependencies.git2]
features = ["vendored-openssl"]
version = "0.19"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dev-dependencies.tempfile]
version = "3.13"

[lib]
name = "gwtr"
path = "src/lib.rs"

[package]
authors = ["Katsuhiro Honda <freewave3@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A simple Git worktree manager"
edition = "2024"
keywords = ["git", "worktree", "cli", "tool"]
license = "MIT"
name = "gwtr"
readme = "README.md"
repository = "https://github.com/katsuhirohonda/gwtr"
version = "0.3.1"

[[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"