-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 672 Bytes
/
Cargo.toml
File metadata and controls
28 lines (27 loc) · 672 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
26
27
28
[package]
authors = ["Yoann Fleury <yoann.fleury@yahoo.com>"]
categories = ["command-line-utilities"]
description = "Open the current remote repository in your browser"
edition = "2018"
exclude = [
"docs/",
".editorconfig",
".github/",
"*.md",
]
homepage = "https://github.com/yoannfleurydev/gitweb"
keywords = ["git", "browser"]
license = "Apache-2.0"
name = "gitweb"
readme = "README.md"
repository = "https://github.com/yoannfleurydev/gitweb"
version = "0.3.5"
[dependencies]
anyhow = "1.0"
flexi_logger = {version = "0.22", features = ["use_chrono_for_offset"]}
git-url-parse = "0.4"
git2 = "0.14"
log = "0.4"
open = "2.1"
structopt = "0.3"
thiserror = "1.0"