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.
24 lines
540 B
TOML
24 lines
540 B
TOML
[package]
|
|
name = "git-view"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Goudham Suresh <sgoudham@gmail.com>"]
|
|
description = "A git sub-command to view your git repository in the web browser"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/sgoudham/git-view"
|
|
exclude = [".github/**"]
|
|
|
|
[[bin]]
|
|
name = "git-view"
|
|
path = "src/bin/git-view.rs"
|
|
|
|
[lib]
|
|
name = "git_view"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = '3.1.18', features = ["cargo"] }
|
|
url = { version = '2.2.2' }
|
|
webbrowser = { version = '0.7.1' }
|