2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2015-10-06 15:16:23 +00:00
|
|
|
version = "1.4.4"
|
2015-02-25 13:37:25 +00:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-08-30 04:24:14 +00:00
|
|
|
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "clap.png"]
|
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]
|
|
|
|
bitflags = "0.3.2"
|
|
|
|
|
2015-05-05 16:08:09 +00:00
|
|
|
[dependencies.strsim]
|
2015-08-20 02:07:02 +00:00
|
|
|
version = "~0.4.0"
|
2015-05-05 16:08:09 +00:00
|
|
|
optional = true
|
|
|
|
|
2015-05-05 21:27:36 +00:00
|
|
|
[dependencies.ansi_term]
|
2015-08-20 02:07:02 +00:00
|
|
|
version = "~0.6.3"
|
2015-05-05 21:27:36 +00:00
|
|
|
optional = true
|
2015-08-14 04:04:02 +00:00
|
|
|
|
2015-08-30 21:10:26 +00:00
|
|
|
[dependencies.yaml-rust]
|
2015-10-01 16:40:39 +00:00
|
|
|
version = "~0.2.2"
|
2015-08-30 21:10:26 +00:00
|
|
|
optional = true
|
|
|
|
|
2015-08-26 21:32:25 +00:00
|
|
|
#[dependencies.clippy]
|
|
|
|
#version = "~0.0.12"
|
|
|
|
#optional = true
|
2015-08-25 21:28:38 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default=["suggestions", "color"]
|
|
|
|
suggestions=["strsim"]
|
|
|
|
color = ["ansi_term"]
|
2015-08-30 21:10:26 +00:00
|
|
|
yaml = ["yaml-rust"]
|
2015-08-26 21:32:25 +00:00
|
|
|
#lints = ["clippy", "nightly"]
|
2015-08-25 21:28:38 +00:00
|
|
|
|
|
|
|
# for building with nightly and unstable features
|
|
|
|
nightly = []
|
|
|
|
|
|
|
|
# for building with travis-cargo
|
2015-08-26 21:32:25 +00:00
|
|
|
#unstable = ["lints", "nightly"]
|
|
|
|
unstable = ["nightly"]
|
2015-08-25 21:28:38 +00:00
|
|
|
|
|
|
|
# for building with debug messages
|
|
|
|
debug = []
|
|
|
|
|