git-send 0.1.3

Commit and push changes with a single command
[package]
        name = "git-send"
        version = "0.1.3"
        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"
        keywords = ["git", "automation", "workflow"]
        categories = ["development-tools"]

[dependencies]
        clap = { version = "4.5.53" }
        dirs = { version = "6.0.0" }
        duct = { version = "1.1.1" }
        colored = { version = "3.0.0" }
        thiserror = "2.0.17"
        log = "0.4.28"
        anyhow = "1.0.100"
        env_logger = "0.11.8"

[dependencies.serde]
        version = "1.0.228"
        features = ["derive"]

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

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


[lints.clippy]
        all = "deny"

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