git-ar 0.1.82

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.
Documentation
[package]
name = "git-ar"
version = "0.1.82"
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>"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ureq = { version = "2.9.7", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.120"
lazy_static = "1.5"
regex = "1.10.5"
sha2 = "0.10.8"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
console = "0.15.8"
clap = { version = "4.5.8", 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.22"
env_logger = "0.11.3"
yaml-rust2 = "0.8.1"
rand = "0.8.5"

[dev-dependencies]
# disable basic-cookies from httpmock - not needed
httpmock = { version = "0.7.0", default-features = false }
tempfile = "3.10.1"

[[bin]]
name = "gr"
path = "src/main.rs"

[lib]
name = "gr"