mirror of https://github.com/sgoudham/git-view.git
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.
27 lines
613 B
TOML
27 lines
613 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"
|
|
exclude = [".github/**"]
|
|
|
|
[[bin]]
|
|
name = "git-view"
|
|
|
|
[lib]
|
|
name = "git_view"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = '3.1.18', features = ["cargo"] }
|
|
url = { version = '2.3.1' }
|
|
webbrowser = { version = '0.8.2' }
|
|
|
|
[dev-dependencies]
|
|
test-case = { version = '3.0.0' }
|
|
mockall = { version = '0.11.4', features = ["nightly"] }
|