gt/Cargo.toml

22 lines
597 B
TOML
Raw Permalink Normal View History

2020-06-01 20:46:04 -05:00
[package]
name = "gt"
2021-12-19 12:10:28 -06:00
version = "0.2.0"
2020-06-01 20:46:04 -05:00
authors = ["Wyatt J. Miller <wjmiller2016@gmail.com>"]
edition = "2018"
2020-06-13 14:11:26 -05:00
description = "A Gitea CLI client"
repository = "https://scm.wyattjmiller.com/wyatt/gt"
readme = "README.md"
license-file = "LICENSE"
2020-06-01 20:46:04 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-06-13 14:11:26 -05:00
clap = "2.33.1"
2021-12-19 19:04:52 -06:00
colored = "2.0.0"
config = "0.11.0"
git2 = "0.13.25"
2020-06-13 14:11:26 -05:00
serde = { version = "1.0.111", features = ["derive"] }
serde_derive = "1.0.111"
2021-12-18 14:07:08 -06:00
serde_json = "1.0.53"
reqwest = { version = "0.11.7", features = ["blocking", "json"] }