[package]
edition = "2021"
name = "gitpushup"
version = "0.1.16"
authors = ["Waldir Borba Junior <wborbajr@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitPushUp in rust!"
homepage = "https://github.com/waldirborbajr/gitpushup"
readme = "README.md"
keywords = [
"gitpushup",
"git",
"cli",
"terminal",
]
license = "MIT"
repository = "https://github.com/waldirborbajr/gitpushup"
[lib]
name = "gitpushup"
path = "src/lib.rs"
[[bin]]
name = "gitpushup"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.89"
[dependencies.clap]
version = "4.5.60"
features = ["derive"]
[dependencies.colorful]
version = "0.3.2"
[dependencies.names]
version = "0.14.0"
[dependencies.regex]
version = "1.11.0"
[profile.ci]
debug = 0
inherits = "dev"
strip = false
[profile.dev]
panic = "abort"
[profile.profiling]
debug = 2
inherits = "release"
strip = false
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
debug = 0
debug-assertions = false
panic = "abort"
overflow-checks = false
incremental = false
strip = "symbols"
[profile.release-lto]
opt-level = 3
lto = "fat"
codegen-units = 1
debug = 0
debug-assertions = false
panic = "abort"
overflow-checks = false
incremental = false
inherits = "release"
strip = "symbols"