-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 747 Bytes
/
Cargo.toml
File metadata and controls
32 lines (30 loc) · 747 Bytes
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
[package]
name = "shipit"
version = "1.0.1"
edition = "2024"
license = "MIT"
description = "A CLI for managing git releases"
repository = "https://github.com/trollefson/shipit"
authors = ["Tanner Rollefson"]
[dependencies]
clap = { version = "4.5.55", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"
git2 = "0.20.4"
gitlab = "0.1808.0"
serde = { version = "1.0.228", features = ["derive"] }
confy = "2.0.0"
octocrab = "0.41"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
owo-colors = "4"
regex = "1"
clap-markdown = "0.1.5"
chrono = "0.4"
serde_yaml = "0.9"
async-trait = "0.1"
indicatif = "0.17"
[dev-dependencies]
wiremock = "0.6"
tempfile = "3"
mockall = "0.13"