[package]
edition = "2024"
name = "git-quick-add"
version = "0.2.0"
authors = ["Andrew Fletcher (fletch-r)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Quickly add your files with the command `qa` using the interactive terminal."
readme = "README.md"
keywords = [
"git",
"commits",
"add",
"git-add",
"cli",
]
license = "MIT"
repository = "https://github.com/fletch-r/git-quick-add"
[lib]
name = "git_quick_add"
path = "src/lib.rs"
[[bin]]
name = "qa"
path = "src/main.rs"
[dependencies.console]
version = "0.16.0"
[dependencies.dialoguer]
version = "0.12.0"
[dependencies.git2]
version = "0.20.2"
[dependencies.regex]
version = "1.11.1"
[dependencies.tempfile]
version = "3.21.0"