git-stack/Cargo.toml

28 lines
868 B
TOML

[package]
name = "git-stack"
version = "0.3.0"
authors = ["Timothy Andrew <mail@timothyandrew.net>, Luis Ball <luqven@gmail.com>, Olivier 'reivilibre' <olivier@librepush.net>"]
license = "MIT"
repository = "https://git.emunest.net/reivilibre/git-stack"
readme = "README.md"
edition = "2021"
description = "Manage stacked PR workflows on Github"
keywords = ["github", "code-review", "stacked-pr"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.10.6", features = ["json"] }
tokio = { version = "0.2", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
futures = "0.3.5"
petgraph = "0.5"
regex = "1"
git2 = "0.13"
dialoguer = "0.6.2"
clap = "2.33"
console = "0.11"
dotenv = "0.15"
eyre = "0.6.8"
serde_json = "1.0.89"