-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
61 lines (49 loc) · 1.03 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
[package]
name = "cmder"
version = "0.6.1"
edition = "2021"
description="A simple, lightweight, command line argument parser for rust codebases"
repository="https://github.com/ndaba1/cmder.git"
documentation = "https://docs.rs/cmder/"
categories = ["command-line-interface"]
license="MIT"
keywords = [
"cli",
"argument-parser",
"cmder",
"command-line-parser",
"commander"
]
exclude = [
".github"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
termcolor = "1.1.2"
[dev-dependencies]
criterion = {version = "0.3.5", features = ["html_reports"]}
[[example]]
name = "echo"
[[example]]
name = "custom_theme"
[[example]]
name = "basic_usage"
[[example]]
name = "subcommands"
[[example]]
name = "listeners"
[[bench]]
name = "1_default"
harness = false
path = "benches/1_default.rs"
[[bench]]
name = "2_basic"
harness = false
path = "benches/2_basic.rs"
[[bench]]
name = "3_standard"
harness = false
path = "benches/3_standard.rs"
[[bench]]
name = "inception"
harness = false