git-send 0.1.5

Commit and push changes with a single command
[package]
        name = "git-send"
        version = "0.1.5"
        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"
        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"
        windows-sys = "0.61"

[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"]]