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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
name = "clap"
version = "2.31.2"
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser\n"
homepage = "https://clap.rs/"
documentation = "https://docs.rs/clap/"
readme = "README.md"
keywords = ["argument", "cli", "arg", "parser", "parse"]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/kbknapp/clap-rs"
[package.metadata.docs.rs]
features = ["doc"]
[profile.test]
opt-level = 1
lto = false
codegen-units = 4
debug = true
debug-assertions = true
rpath = false
[profile.doc]
opt-level = 0
lto = false
codegen-units = 4
debug = true
debug-assertions = true
rpath = false
[profile.bench]
opt-level = 3
lto = true
codegen-units = 1
debug = false
debug-assertions = false
rpath = false
[profile.dev]
opt-level = 0
lto = false
codegen-units = 4
debug = true
debug-assertions = true
rpath = false
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = false
debug-assertions = false
rpath = false
[dependencies.atty]
version = "0.2.2"
optional = true
[dependencies.bitflags]
version = "1.0"
[dependencies.clippy]
version = "~0.0.166"
optional = true
[dependencies.strsim]
version = "0.7.0"
optional = true
[dependencies.term_size]
version = "0.3.0"
optional = true
[dependencies.textwrap]
version = "0.9.0"
[dependencies.unicode-width]
version = "0.1.4"
[dependencies.vec_map]
version = "0.8"
optional = true
[dependencies.yaml-rust]
version = "0.3.5"
optional = true
[dev-dependencies.lazy_static]
version = "1"
[dev-dependencies.regex]
version = "0.2"
[dev-dependencies.version-sync]
version = "0.5"
[features]
color = ["ansi_term", "atty"]
debug = []
default = ["suggestions", "color", "vec_map"]
doc = ["yaml"]
lints = ["clippy"]
nightly = []
no_cargo = []
suggestions = ["strsim"]
unstable = []
wrap_help = ["term_size", "textwrap/term_size"]
yaml = ["yaml-rust"]
[target."cfg(not(windows))".dependencies.ansi_term]
version = "0.11"
optional = true
[badges.appveyor]
repository = "kbknapp/clap-rs"
[badges.coveralls]
branch = "master"
repostiory = "kbknapp/clap-rs"
[badges.is-it-maintained-issue-resolution]
repository = "kbknapp/clap-rs"
[badges.is-it-maintained-open-issues]
repository = "kbknapp/clap-rs"
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
repository = "kbknapp/clap-rs"
|