-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 895 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 895 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 = "git-supervisor"
version = "2.1.8"
edition = "2021"
authors = ["JF Ding <jfding@gmail.com>"]
description = "Central supervisor to control remote hosts and git repos for deployment"
readme = "README.md"
license = "MIT"
repository = "https://github.com/jfding/git-supervisor"
keywords = ["deployment", "git", "devops", "automation"]
categories = ["development-tools", "command-line-utilities"]
[dependencies]
anyhow = "1.0.102"
axum = "0.8.8"
chrono = "0.4.44"
clap = { version = "=4.5.60", features = ["derive", "env"] }
clap_lex = "=1.0.0"
dirs = "5"
hex = "0.4.3"
hmac = "0.12.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
serde_yaml = "0.9.34"
sha2 = "0.10.9"
thiserror = "2.0.18"
tokio = { version = "1.50.0", features = ["full"] }
[dev-dependencies]
http-body-util = "0.1"
tempfile = "3"
tower = { version = "0.5", features = ["util"] }