-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (40 loc) · 958 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
40
41
42
43
44
45
46
47
[package]
name = "gen-completions"
version = "0.6.0"
description = "Generate Bash/Zsh completions from manpages or JSON/KDL files"
keywords = ["shell"]
categories = ["command-line-utilities"]
repository = "https://github.com/ysthakur/gen-completions"
homepage = "https://github.com/ysthakur/gen-completions"
license = "MIT"
edition = "2021"
[profile.release]
codegen-units = 1
lto = "thin"
strip = "debuginfo"
[dependencies]
clap = { version = "4.3", features = ["derive", "env"] }
env_logger = "0.10"
indoc = "2"
log = "0.4"
miette = { version = "5.10", features = ["fancy"] }
regex = "1.9"
thiserror = "1.0"
# For parsing manpages
bzip2 = "0.4"
flate2 = "1.0"
# For deserializing from a file
serde = "1.0"
kdl = "4.6"
serde_kdl = "0.1"
serde_json = "1.0"
serde_yaml = "0.9"
[dev-dependencies]
assert_cmd = "2.0"
insta = "1"
pretty_assertions = "1"
tempfile = "3"
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3