[package]
edition = "2021"
rust-version = "1.85"
name = "gwx"
version = "2.2.1"
build = "build.rs"
exclude = [
"docs/",
".github/",
".githooks/",
"codecov.yml",
"deny.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A friendly git worktree manager with automatic paths, hooks and shell integration"
readme = "README.md"
keywords = [
"git",
"worktree",
"cli",
"development",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/ktakada42/gwx"
[[bin]]
name = "gwx"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"unstable-ext",
]
[dependencies.clap_complete]
version = "~4.6"
features = ["unstable-dynamic"]
[dependencies.clap_mangen]
version = "0.3"
[dependencies.crossterm]
version = "0.29"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.toml]
version = "1.1"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
lto = true
strip = true