2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2016-09-13 03:28:12 +00:00
|
|
|
version = "2.12.1"
|
2015-02-25 13:37:25 +00:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2016-05-10 00:27:10 +00:00
|
|
|
exclude = ["examples/*", "clap-test/*", "tests/*", "benches/*", "*.png", "clap-perf/*", "*.dot"]
|
2015-03-01 00:56:43 +00:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
2016-08-27 15:08:51 +00:00
|
|
|
documentation = "https://docs.rs/clap/"
|
|
|
|
homepage = "https://docs.rs/crate/clap/"
|
2015-03-01 00:56:43 +00:00
|
|
|
readme = "README.md"
|
2015-05-17 22:26:03 +00:00
|
|
|
license = "MIT"
|
2015-03-04 13:32:55 +00:00
|
|
|
keywords = ["argument", "command", "arg", "parser", "parse"]
|
2016-08-27 15:08:51 +00:00
|
|
|
description = """
|
|
|
|
A simple to use, efficient, and full featured Command Line Argument Parser
|
|
|
|
"""
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
[dependencies]
|
2016-07-26 00:56:13 +00:00
|
|
|
bitflags = "~0.7"
|
2016-03-04 18:42:22 +00:00
|
|
|
vec_map = "~0.6"
|
2016-04-08 18:40:38 +00:00
|
|
|
libc = { version = "~0.2.9", optional = true }
|
2016-09-05 21:04:32 +00:00
|
|
|
ansi_term = { version = "~0.9.0", optional = true }
|
2016-08-24 03:19:26 +00:00
|
|
|
strsim = { version = "~0.5.1", optional = true }
|
2016-04-08 18:40:38 +00:00
|
|
|
yaml-rust = { version = "~0.3.2", optional = true }
|
2016-09-05 19:16:17 +00:00
|
|
|
clippy = { version = "~0.0.88", optional = true }
|
2016-08-25 02:04:19 +00:00
|
|
|
unicode-width = "~0.1.3"
|
|
|
|
unicode-segmentation = "~0.1.2"
|
2016-09-05 18:54:52 +00:00
|
|
|
term_size = { version = "~0.2.0", optional = true }
|
2015-08-25 21:28:38 +00:00
|
|
|
|
2016-05-09 01:33:56 +00:00
|
|
|
[dev-dependencies]
|
2016-05-10 02:46:09 +00:00
|
|
|
regex = "~0.1.69"
|
2016-05-09 01:33:56 +00:00
|
|
|
|
2015-08-25 21:28:38 +00:00
|
|
|
[features]
|
2016-03-12 20:47:57 +00:00
|
|
|
default = ["suggestions", "color", "wrap_help"]
|
2015-10-19 12:00:13 +00:00
|
|
|
suggestions = ["strsim"]
|
2016-05-30 08:07:44 +00:00
|
|
|
color = ["ansi_term", "libc"]
|
2015-10-29 05:36:12 +00:00
|
|
|
yaml = ["yaml-rust"]
|
2016-08-25 02:04:19 +00:00
|
|
|
wrap_help = ["libc", "term_size"]
|
2015-10-29 05:36:12 +00:00
|
|
|
lints = ["clippy", "nightly"]
|
|
|
|
nightly = [] # for building with nightly and unstable features
|
2016-01-30 02:28:12 +00:00
|
|
|
unstable = [] # for building with unstable features on stable Rust
|
2015-10-29 05:36:12 +00:00
|
|
|
debug = [] # for building with debug messages
|
2016-01-30 02:28:12 +00:00
|
|
|
travis = ["lints", "nightly"] # for building with travis-cargo
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
# codegen-units ignored with lto=true
|
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 0
|
|
|
|
debug = true
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
codegen-units = 4
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 1
|
|
|
|
debug = true
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
codegen-units = 2
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
|
|
|
|
|
|
|
[profile.doc]
|
|
|
|
opt-level = 0
|
|
|
|
debug = true
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
codegen-units = 4
|