-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 695 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 695 Bytes
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
[package]
name = "git-open-rs"
version = "0.1.1"
edition = "2021"
authors = ["Nachtab <na@nachtalb.io>"]
keywords = ["git", "git-open", "cli"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/Nachtalb/git-open-rs"
description = "Open your git repository in the browser with a simple command"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }
clap-verbosity-flag = "2.0.0"
env_logger = "0.10.0"
git-url-parse = "0.4.4"
git2 = "0.15"
log = "0.4.17"
path-absolutize = "3.0.14"
shellexpand = "2.1.2"
ssh2-config = "0.1.3"
url = "2.3.1"
webbrowser = "0.8.7"