clap/Cargo.toml
2015-05-10 14:58:22 -04:00

30 lines
686 B
TOML

[package]
name = "clap"
version = "0.8.3"
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"
documentation = "http://kbknapp.github.io/clap-rs"
readme = "README.md"
keywords = ["argument", "command", "arg", "parser", "parse"]
license = "MIT"
[features]
default=["suggestions", "color"]
suggestions=["strsim"]
color = ["ansi_term"]
# for building with nightly and unstable features
unstable=[]
[dependencies.strsim]
version = "*"
optional = true
[dependencies.ansi_term]
version = "*"
optional = true