-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
38 lines (34 loc) · 1.06 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
[package]
name = "gps"
version = "7.3.1"
edition = "2018"
license-file = "LICENSE"
description = "Official CLI & library for Git Patch Stack"
homepage = "https://git-ps.sh"
documentation = "https://book.git-ps.sh"
repository = "https://github.com/uptech/git-ps-rs"
readme = "README.md"
keywords = ["git", "development", "tools"]
categories = ["command-line-utilities", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
git2 = "0.19.0"
uuid = { version = "1.9.1", features = ["serde", "v4"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
regex = "1.10.5"
lazy_static = "1.5.0"
is_executable = "1.0.1"
homedir = "0.3.3"
toml = "0.8.14"
ansi_term = { version = "0.12.1", features = ["derive_serde_style"] }
ureq = "2.10.0"
version-compare = "0.2.0"
clap = { version = "4.5.8", features = ["derive"] }
tempfile = "3.10.1"
[build-dependencies]
clap = { version = "4.5.8", features = ["string"] }
clap_complete = "4.5.7"
clap_mangen = "0.2.22"
[features]
backup_cmd = []