2015-02-25 08:37:25 -05:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2015-07-16 01:46:24 -04:00
|
|
|
version = "1.1.0"
|
2015-02-25 08:37:25 -05:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2015-05-05 17:27:36 -04:00
|
|
|
exclude = ["examples/*", "clap-tests/*"]
|
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-03-24 14:35:47 -04:00
|
|
|
|
2015-04-28 23:03:55 -04:00
|
|
|
[features]
|
2015-05-05 17:27:36 -04:00
|
|
|
default=["suggestions", "color"]
|
2015-05-05 18:08:09 +02:00
|
|
|
suggestions=["strsim"]
|
2015-05-05 17:27:36 -04:00
|
|
|
color = ["ansi_term"]
|
2015-04-28 23:03:55 -04:00
|
|
|
|
2015-04-28 23:49:59 -04:00
|
|
|
# for building with nightly and unstable features
|
2015-04-28 23:03:55 -04:00
|
|
|
unstable=[]
|
2015-05-05 18:08:09 +02:00
|
|
|
|
2015-07-09 19:35:28 -04:00
|
|
|
# for building with debug messages
|
|
|
|
debug=[]
|
|
|
|
|
2015-05-05 18:08:09 +02:00
|
|
|
[dependencies.strsim]
|
2015-07-07 20:20:45 -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-07-07 20:20:45 -04:00
|
|
|
version = "0.6.3"
|
2015-05-05 17:27:36 -04:00
|
|
|
optional = true
|