clap/Cargo.toml

31 lines
686 B
TOML
Raw Normal View History

2015-02-25 13:37:25 +00:00
[package]
name = "clap"
2015-05-17 13:55:23 +00:00
version = "0.8.6"
2015-02-25 13:37:25 +00: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 15:13:41 +00:00
documentation = "http://kbknapp.github.io/clap-rs"
readme = "README.md"
keywords = ["argument", "command", "arg", "parser", "parse"]
license = "MIT"
2015-03-24 18:35:47 +00:00
[features]
default=["suggestions", "color"]
suggestions=["strsim"]
color = ["ansi_term"]
2015-04-29 03:49:59 +00:00
# for building with nightly and unstable features
unstable=[]
[dependencies.strsim]
version = "*"
optional = true
[dependencies.ansi_term]
version = "*"
optional = true