clap/Cargo.toml

31 lines
1 KiB
TOML
Raw Normal View History

2015-02-25 13:37:25 +00:00
[package]
name = "clap"
2015-11-03 04:23:27 +00:00
version = "1.4.7"
2015-02-25 13:37:25 +00:00
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "clap.png"]
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"
2015-05-17 22:26:03 +00:00
license = "MIT"
keywords = ["argument", "command", "arg", "parser", "parse"]
[dependencies]
bitflags = "0.3.2"
2015-11-04 08:00:53 +00:00
ansi_term = { version = "~0.7", optional = true }
2015-10-19 12:00:13 +00:00
strsim = { version = "~0.4.0", optional = true }
2015-10-19 11:46:24 +00:00
yaml-rust = { version = "~0.2.2", optional = true }
clippy = { version = "~0.0.22", optional = true }
[features]
2015-10-29 05:36:12 +00:00
default = ["suggestions", "color"]
2015-10-19 12:00:13 +00:00
suggestions = ["strsim"]
2015-10-29 05:36:12 +00:00
color = ["ansi_term"]
yaml = ["yaml-rust"]
lints = ["clippy", "nightly"]
nightly = [] # for building with nightly and unstable features
unstable = ["lints", "nightly"] # for building with travis-cargo
debug = [] # for building with debug messages