aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a5ea35b25e11998d40e311b949a54e0082bb9a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "github-suggestion"
version = "0.0.1"
edition = "2018"

[dependencies]
git2 = "0.13.8"
github-rs = "0.7.0"
regex = "1.3.9"
serde = { version = "1.0.114", features = ["derive"] }
serde_json = "1.0.56"
tempfile = "3.1.0"
thiserror = "1.0.20"
url = "2.1.1"

github-suggestion-cli = { path = "github-suggestion-cli" }


[workspace]
members = [
	"github-suggestion-cli",
]