git-send 0.1.6

Commit and push changes with a single command
[[bin]]
name = "git-send"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

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

[dependencies.colored]
version = "3.0"

[lints.clippy]
all = "deny"
pedantic = "warn"
style = "warn"

[package]
authors = ["anhkhoakz"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "Commit and push changes with a single command"
documentation = "https://docs.rs/crate/git-send/latest"
edition = "2024"
homepage = "https://git.sr.ht/~anhkhoakz/git-send#git-send"
keywords = ["git", "automation", "workflow", "send"]
license = "MIT OR Apache-2.0"
name = "git-send"
readme = "README.md"
repository = "https://git.sr.ht/~anhkhoakz/git-send"
version = "0.1.6"

[package.metadata]
assets = [["target/release/git-send", "usr/local/bin/", "755"]]
extended-description = "Stage, commit, pull, and push changes in a single command with robust error handling"
priority = "optional"
section = "utils"

[profile.dev]
debug = 2
opt-level = 1

[profile.release]
codegen-units = 1
debug = 0
incremental = false
lto = true
opt-level = 3
panic = "abort"
strip = true