[package]
name = "git-ar"
version = "1.1.2"
edition = "2021"
license = "MIT"
description = """
Git all remotes. Git cli tool that targets both Github and Gitlab. Brings common
development operations such as opening a pull request down to the shell.
This is an alternative to both Github https://github.com/cli/cli and Gitlab
https://gitlab.com/gitlab-org/cli cli tools.
"""
categories = ["command-line-utilities", "development-tools"]
keywords = ["git", "github", "gitlab", "cli", "vcs"]
repository = "https://github.com/jordilin/gitar"
readme = "README.md"
authors = ["Jordi Carrillo <jordilin@gmail.com>"]
[dependencies]
ureq = { version = "2.10.1", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.132"
lazy_static = "1.5"
regex = "1.11.1"
sha2 = "0.10.8"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
console = "0.15.8"
clap = { version = "4.5.20", features = ["derive", "wrap_help"] }
open = "5.3.0"
thiserror = "1.0.66"
anyhow = "1.0.92"
flate2 = "1.0.34"
derive_builder = "0.20.2"
chrono = "0.4.38"
csv = "1.3.0"
log = "0.4.22"
env_logger = "0.11.5"
yaml-rust2 = "0.9.0"
rand = "0.8.5"
paste = "1.0"
toml = "0.8.19"
[dev-dependencies]
httpmock = { version = "0.7.0", default-features = false }
tempfile = "3.13.0"
filetime = "0.2"
[[bin]]
name = "gr"
path = "src/main.rs"
[lib]
name = "gr"