-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
58 lines (50 loc) · 1.48 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "git-ar"
version = "1.1.3"
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 <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ureq = { version = "2.12.1", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.134"
lazy_static = "1.5"
regex = "1.11.1"
sha2 = "0.10.8"
dialoguer = { version = "0.11.0", features = ["fuzzy-select"] }
console = "0.15.10"
clap = { version = "4.5.23", features = ["derive", "wrap_help"] }
open = "5.3.1"
thiserror = "2.0.9"
anyhow = "1.0.95"
flate2 = "1.0.35"
derive_builder = "0.20.2"
chrono = "0.4.39"
csv = "1.3.1"
log = "0.4.22"
env_logger = "0.11.6"
yaml-rust2 = "0.9.0"
rand = "0.8.5"
paste = "1.0"
toml = "0.8.19"
[dev-dependencies]
# disable basic-cookies from httpmock - not needed
httpmock = { version = "0.7.0", default-features = false }
tempfile = "3.14.0"
filetime = "0.2"
[[bin]]
name = "gr"
path = "src/main.rs"
[lib]
name = "gr"