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

23 lines
526 B
TOML

[package]
name = "git-browser"
version = "0.1.0"
edition = "2021"
authors = ["Goudham Suresh <sgoudham@gmail.com>"]
description = "A git sub-command to open your git repository in the web browser"
license = "MIT"
readme = "README.md"
repository = "https://github.com/sgoudham/git-remote"
exclude = [".github/**"]
[[bin]]
name = "git-browser"
path = "src/bin/git-browser.rs"
[lib]
name = "git_browser"
path = "src/lib.rs"
[dependencies]
clap = { version = '3.1.18', features = ["cargo"] }
webbrowser = { version = '0.7.1' }