[package]
edition = "2024"
name = "git-mate"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A focused Git CLI extension for branch and sync workflows"
homepage = "https://github.com/frenetisch-applaudierend/git-mate"
readme = "README.md"
keywords = [
"git",
"cli",
"workflow",
"branch",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/frenetisch-applaudierend/git-mate"
[[bin]]
name = "mate"
path = "src/main.rs"
[[test]]
name = "checkout"
path = "tests/checkout.rs"
[[test]]
name = "finish"
path = "tests/finish.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "new"
path = "tests/new.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
features = ["unstable-dynamic"]
[dependencies.console]
version = "0.16"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"