forked from timothyandrew/gh-stack
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (33 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
36 lines (33 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "gh-stack"
version = "0.7.0"
authors = ["Timothy Andrew <mail@timothyandrew.net>, Luis Ball <luqven@gmail.com>"]
license = "MIT"
repository = "https://github.com/luqven/gh-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.11", default-features = false, features = ["json", "rustls-tls"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0.215", features = ["derive"] }
futures = "0.3.30"
petgraph = "0.6"
regex = "1"
git2 = { version = "0.18", default-features = false }
dialoguer = "0.11"
dirs = "5"
clap = "2.34"
console = "0.15"
dotenvy = "0.15"
serde_json = "1.0"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
insta = "1.39"
mockito = "1.4"
serial_test = "3.1"
tempfile = "3"
tokio-test = "0.4"