20 lines
514 B
TOML
20 lines
514 B
TOML
[package]
|
|
name = "git_mob"
|
|
version = "0.2.0"
|
|
authors = ["Martin Frost <martin@frost.ws>"]
|
|
edition = "2018"
|
|
description = "A CLI tool for social coding."
|
|
license = "MIT"
|
|
homepage = "https://github.com/Frost/git-mob"
|
|
repository = "https://github.com/Frost/git-mob"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dirs = "2.0"
|
|
git2 = "0.13"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
structopt = "0.3"
|