forked from cwnt-io/ripissue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 1.24 KB
/
Cargo.toml
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
37
38
39
40
41
42
[package]
name = "ripissue"
version = "0.1.5"
edition = "2021"
description = "CLI tool written in Rust for distributed bug / issue / story tracking with the filesystem and git."
license-file = "LICENSE"
# homepage = "https://github.com/cwnt-io/ripissue"
repository = "https://github.com/cwnt-io/ripissue"
keywords = ["issue", "tracker", "git", "project", "management"]
categories = ["command-line-utilities", "development-tools", "filesystem"]
authors = ["cwnt.io", "Gustavo Basso <[email protected]>", "Ismael Pamplona <[email protected]>"]
[package.metadata.release]
allow-branch = ["master","staging", "develop"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.2", features = ["derive"] }
anyhow = "1.0.75"
walkdir = "2.4.0"
strum = "0.25.0"
strum_macros = "0.25.2"
chrono = "0.4.31"
serde = { version = "1.0.188", features = ["derive"] }
serde_yaml = "0.9.25"
cmd_lib = "1.3.0"
reqwest = { version = "0.12.5", features = ["json"] }
tokio = { version = "1.38.0", features = ["full"] }
dotenv = "0.15.0"
slug = "0.1.5"
toml = "0.8.14"
[[bin]]
name = "ripi"
path = "src/main.rs"
[dev-dependencies]
tempfile = "3.10.1"
assert_cmd = "2.0.14"
mockito = "1.4.0"
predicates = "3.1.0"