-
Notifications
You must be signed in to change notification settings - Fork 19
/
Cargo.toml
39 lines (35 loc) · 1014 Bytes
/
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
[package]
name = "gfold"
version = "4.6.0"
authors = ["Nick Gerace <[email protected]>"]
categories = ["command-line-utilities", "command-line-interface"]
description = "CLI tool to help keep track of your Git repositories."
edition = "2021"
homepage = "https://github.com/nickgerace/gfold"
keywords = ["git", "cli"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/nickgerace/gfold"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true
[dependencies]
anyhow = { version = "1.0", features = ["backtrace"] }
clap = { version = "4.5", features = ["derive"] }
env_logger = { version = "0.11", features = [ "humantime" ], default-features = false }
git2 = { version = "0.20", default-features = false }
log = "0.4"
rayon = "1.10"
remain = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
termcolor = "1.4"
thiserror = "2.0"
toml = "0.8"
user_dirs = "0.2"
[dev-dependencies]
pretty_assertions = "1.4"
tempfile = "3.15"