git-alias 1.2.30

A fast git alias tool with dual-style command support
[package]
name = "git-alias"
version = "1.2.30"
edition = "2024"
description = "A fast git alias tool with dual-style command support"
authors = ["Your Name"]
license = "MIT"

[dependencies]
clap = { version = "4", features = ["derive"] }
colored = "2"
comfy-table = "7"
dirs = "5"
regex = "1"
toml = "0.8"
reqwest = { version = "0.12", features = ["json", "blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[target.'cfg(windows)'.dependencies]
windows = { version = "0.56", features = ["Win32_System_LibraryLoader", "Win32_System_Console", "Win32_Foundation"] }

[profile.dev]
opt-level = 0 # 不优化,便于调试
debug = true  # 包含调试信息

[profile.release]
opt-level = 3
lto = "thin"
panic = "abort"
strip = true
debug = "line-tables-only"
codegen-units = 16