forked from sigoden/argc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (44 loc) · 1.04 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
[package]
name = "argc"
version = "1.7.0"
edition = "2021"
authors = ["sigoden <[email protected]>"]
description = "An elegant command-line options, arguments and sub-commands parser for bash."
license = "MIT OR Apache-2.0"
homepage = "https://github.com/sigoden/argc"
repository = "https://github.com/sigoden/argc"
autotests = false
categories = ["command-line-utilities"]
keywords = ["command-line", "shell-script", "argument-parser"]
[dependencies]
anyhow = "1"
convert_case = "0.6"
indexmap = "2"
nom = "7.1"
either = "1.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
which = "4.2"
ctrlc = "3.4"
shell-words = "1.1"
textwrap = "0.16"
dirs = "5.0"
num_cpus = "1.16.0"
threadpool = "1.8.1"
base64 = "0.21.2"
natord = "1.0"
[dev-dependencies]
insta = "1.30"
assert_cmd = "2"
assert_fs = "1"
rstest = "0.17"
predicates = "3"
[target.'cfg(unix)'.dev-dependencies]
libc = "0.2"
[profile.release]
lto = true
strip = true
opt-level = "z"
[[test]]
name = "integration"
path = "tests/tests.rs"