[package]
edition = "2024"
name = "git-id"
version = "1.1.2"
authors = ["John Thor <lucknite7@gmail.com>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command-line tool to manage any number of GitHub/GitLab accounts on one machine."
homepage = "https://github.com/se7uh/git-id"
readme = "README.md"
keywords = [
"git",
"cli",
"profile",
"github",
"gitlab",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/se7uh/git-id"
[[bin]]
name = "git-id"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.clap_complete]
version = "4"
[dependencies.dialoguer]
version = "0.11"
[dependencies.dirs]
version = "5"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.toml]
version = "0.8"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true