gwtr 0.3.13

A simple Git worktree manager
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "gwtr"
version = "0.3.13"
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 = "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.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"