-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (35 loc) · 893 Bytes
/
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
[package]
name = "cargo-git-open"
version = "0.0.11"
edition = "2021"
readme = "README.md"
license = "MIT"
authors = ["Jesus Galvan <2798097+jsgv@users.noreply.github.com>"]
repository = "https://github.com/jsgv/git-open"
homepage = "https://github.com/jsgv/git-open"
description = "Open a git repository in a web browser"
categories = [
"command-line-utilities"
]
keywords = [
"git",
"cli"
]
[[bin]]
name = "git-open"
path = "src/main.rs"
[lib]
name = "gitopen"
path = "src/lib.rs"
doctest = false
[dependencies]
anyhow = "1.0.83"
clap = { version = "4.5.4", features = ["derive"] }
git-url-parse = "0.4.4"
git2 = { version = "0.18.3", features = ["openssl-sys", "https"] }
graphql_client = { version = "0.13.0", features = ["reqwest-blocking"] }
open = "5.1.2"
regex = "1.10.4"
reqwest = "0.11.27"
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"