2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2016-01-11 08:59:56 +00:00
|
|
|
version = "2.0.0"
|
2015-02-25 13:37:25 +00:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-11-12 15:16:22 +00:00
|
|
|
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"]
|
2015-04-29 03:03:55 +00:00
|
|
|
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
2015-03-01 00:56:43 +00:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
2015-05-01 15:13:41 +00:00
|
|
|
documentation = "http://kbknapp.github.io/clap-rs"
|
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"]
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
[dependencies]
|
2016-01-28 13:50:27 +00:00
|
|
|
bitflags = "0.4.0"
|
2015-11-13 14:37:24 +00:00
|
|
|
vec_map = "0.4"
|
2015-11-04 08:00:53 +00:00
|
|
|
ansi_term = { version = "~0.7", optional = true }
|
2015-10-19 12:00:13 +00:00
|
|
|
strsim = { version = "~0.4.0", optional = true }
|
2016-01-28 13:50:27 +00:00
|
|
|
yaml-rust = { version = "~0.3.0", optional = true }
|
2016-01-04 02:54:56 +00:00
|
|
|
clippy = { version = "~0.0.35", optional = true }
|
2015-08-25 21:28:38 +00:00
|
|
|
|
|
|
|
[features]
|
2015-10-29 05:36:12 +00:00
|
|
|
default = ["suggestions", "color"]
|
2015-10-19 12:00:13 +00:00
|
|
|
suggestions = ["strsim"]
|
2015-10-29 05:36:12 +00:00
|
|
|
color = ["ansi_term"]
|
|
|
|
yaml = ["yaml-rust"]
|
|
|
|
lints = ["clippy", "nightly"]
|
|
|
|
nightly = [] # for building with nightly and unstable features
|
|
|
|
unstable = ["lints", "nightly"] # for building with travis-cargo
|
|
|
|
debug = [] # for building with debug messages
|
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
|