2015-02-25 08:37:25 -05:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2015-09-30 14:42:41 -04:00
|
|
|
version = "1.4.3"
|
2015-02-25 08:37:25 -05:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-08-30 00:24:14 -04:00
|
|
|
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "clap.png"]
|
2015-04-28 23:03:55 -04:00
|
|
|
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
|
2015-02-28 19:56:43 -05:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs.git"
|
2015-05-01 17:13:41 +02:00
|
|
|
documentation = "http://kbknapp.github.io/clap-rs"
|
2015-02-28 19:56:43 -05:00
|
|
|
readme = "README.md"
|
2015-05-17 18:26:03 -04:00
|
|
|
license = "MIT"
|
2015-03-04 08:32:55 -05:00
|
|
|
keywords = ["argument", "command", "arg", "parser", "parse"]
|
2015-02-28 19:56:43 -05:00
|
|
|
|
2015-09-30 17:14:48 -04:00
|
|
|
[dependencies]
|
|
|
|
bitflags = "0.3.2"
|
|
|
|
|
2015-05-05 18:08:09 +02:00
|
|
|
[dependencies.strsim]
|
2015-08-19 22:07:02 -04:00
|
|
|
version = "~0.4.0"
|
2015-05-05 18:08:09 +02:00
|
|
|
optional = true
|
|
|
|
|
2015-05-05 17:27:36 -04:00
|
|
|
[dependencies.ansi_term]
|
2015-08-19 22:07:02 -04:00
|
|
|
version = "~0.6.3"
|
2015-05-05 17:27:36 -04:00
|
|
|
optional = true
|
2015-08-14 00:04:02 -04:00
|
|
|
|
2015-08-30 17:10:26 -04:00
|
|
|
[dependencies.yaml-rust]
|
|
|
|
version = "~0.2.1"
|
|
|
|
optional = true
|
|
|
|
|
2015-08-26 17:32:25 -04:00
|
|
|
#[dependencies.clippy]
|
|
|
|
#version = "~0.0.12"
|
|
|
|
#optional = true
|
2015-08-25 17:28:38 -04:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default=["suggestions", "color"]
|
|
|
|
suggestions=["strsim"]
|
|
|
|
color = ["ansi_term"]
|
2015-08-30 17:10:26 -04:00
|
|
|
yaml = ["yaml-rust"]
|
2015-08-26 17:32:25 -04:00
|
|
|
#lints = ["clippy", "nightly"]
|
2015-08-25 17:28:38 -04:00
|
|
|
|
|
|
|
# for building with nightly and unstable features
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
# for building with travis-cargo
|
2015-08-26 17:32:25 -04:00
|
|
|
#unstable = ["lints", "nightly"]
|
|
|
|
unstable = ["nightly"]
|
2015-08-25 17:28:38 -04:00
|
|
|
|
|
|
|
# for building with debug messages
|
|
|
|
debug = []
|
|
|
|
|