[package]
edition = "2024"
name = "gitas"
version = "0.0.5"
authors = ["letmutex"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub Account Switch — manage multiple git identities"
homepage = "https://github.com/letmutex/gitas"
documentation = "https://docs.rs/gitas"
readme = "README.md"
keywords = [
"git",
"github",
"account",
"cli",
"tui",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/letmutex/gitas"
[[bin]]
name = "gitas"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.crossterm]
version = "0.29"
[dependencies.dirs]
version = "6"
[dependencies.keyring]
version = "3"
[dependencies.open]
version = "5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "3.2"
features = ["json"]
[target.'cfg(target_os = "linux")'.dependencies.keyring]
version = "3"
features = ["linux-native"]
[target.'cfg(target_os = "macos")'.dependencies.keyring]
version = "3"
features = ["apple-native"]
[target.'cfg(target_os = "windows")'.dependencies.keyring]
version = "3"
features = ["windows-native"]
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true