[package]
name = "git-ar"
version = "0.1.76"
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.9.7", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.117"
lazy_static = "1.4"
regex = "1.10.5"
sha2 = "0.10.8"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
console = "0.15.8"
clap = { version = "4.5.7", features = ["derive", "wrap_help"] }
open = "5.1.4"
thiserror = "1.0.61"
anyhow = "1.0.86"
flate2 = "1.0.30"
derive_builder = "0.20.0"
chrono = "0.4.38"
csv = "1.3.0"
log = "0.4.21"
env_logger = "0.11.3"
yaml-rust2 = "0.8.1"
[dev-dependencies]
httpmock = { version = "0.7.0", default-features = false }
tempfile = "3.10.1"
[[bin]]
name = "gr"
path = "src/main.rs"
[lib]
name = "gr"