[package]
name = "git-send"
version = "0.1.6"
description = "Commit and push changes with a single command"
edition = "2024"
authors = ["anhkhoakz"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://git.sr.ht/~anhkhoakz/git-send"
homepage = "https://git.sr.ht/~anhkhoakz/git-send#git-send"
keywords = ["git", "automation", "workflow", "send"]
categories = ["command-line-utilities"]
documentation = "https://docs.rs/crate/git-send/latest"
[[bin]]
name = "git-send"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
colored = "3.0"
[profile.release]
panic = "abort"
codegen-units = 1
lto = true
incremental = false
opt-level = 3
strip = true
debug = false
[profile.dev]
opt-level = 1
debug = true
[lints.clippy]
all = "deny"
pedantic = "warn"
style = "warn"
[package.metadata]
section = "utils"
priority = "optional"
extended-description = "Stage, commit, pull, and push changes in a single command with robust error handling"
assets = [["target/release/git-send", "usr/local/bin/", "755"]]