You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-view/Cargo.toml

29 lines
723 B
TOML

[package]
name = "git-view"
version = "1.0.0"
edition = "2021"
authors = ["Goudham Suresh <sgoudham@gmail.com>"]
description = "A git sub-command to view your git repository on GitHub"
license = "MIT"
readme = "README.md"
repository = "https://github.com/sgoudham/git-view"
keywords = ["git", "github", "cli", "browser"]
categories = ["command-line-utilities"]
include = [ "/src", "/README.md", "/LICENSE" ]
[[bin]]
name = "git-view"
[lib]
name = "git_view"
path = "src/lib.rs"
[dependencies]
clap = { version = '3.2.25', features = ["cargo"] }
url = { version = '2.3.1' }
webbrowser = { version = '0.8.11' }
[dev-dependencies]
test-case = { version = '3.1.0' }
mockall = { version = '0.11.4', features = ["nightly"] }