clap/Cargo.toml

33 lines
738 B
TOML
Raw Normal View History

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>"]
exclude = ["examples/*", "clap-tests/*"]
description = "A simple to use, efficient, and full featured Command Line Argument Parser"
repository = "https://github.com/kbknapp/clap-rs.git"
2015-05-01 17:13:41 +02:00
documentation = "http://kbknapp.github.io/clap-rs"
readme = "README.md"
2015-05-17 18:26:03 -04:00
license = "MIT"
keywords = ["argument", "command", "arg", "parser", "parse"]
2015-03-24 14:35:47 -04:00
[features]
default=["suggestions", "color"]
suggestions=["strsim"]
color = ["ansi_term"]
2015-04-28 23:49:59 -04:00
# for building with nightly and unstable features
unstable=[]
# for building with debug messages
debug=[]
[dependencies.strsim]
2015-07-07 20:20:45 -04:00
version = "0.4.0"
optional = true
[dependencies.ansi_term]
2015-07-07 20:20:45 -04:00
version = "0.6.3"
optional = true