-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
64 lines (55 loc) · 1.28 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "halp"
version = "0.2.0" # bumped by release.sh
description = "A CLI tool to get help with CLI tools 🐙"
authors = ["Orhun Parmaksız <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/orhun/halp"
repository = "https://github.com/orhun/halp"
categories = ["command-line-utilities"]
keywords = ["cli", "help"]
default-run = "halp"
edition = "2021"
rust-version = "1.74.1"
[[bin]]
name = "halp-completions"
path = "src/bin/completions.rs"
[[bin]]
name = "halp-mangen"
path = "src/bin/mangen.rs"
[[bin]]
name = "halp-test"
path = "src/bin/test.rs"
[dependencies]
clap = { version = "4.5.23", features = ["derive", "env", "wrap_help"] }
clap_complete = "4.5.40"
clap_mangen = "0.2.24"
colored = "2.2.0"
console = "0.15.10"
dialoguer = { version = "0.11.0", default-features = false }
dirs = "5.0.1"
process_control = "5.0.0"
serde = { version = "1.0.216", features = ["derive"] }
thiserror = "2.0.9"
toml = "0.8.19"
ureq = "2.12.1"
[dev-dependencies]
pretty_assertions = "1.4.1"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
strip = true
[profile.bench]
opt-level = 3
debug = false