clap/Cargo.toml

38 lines
1 KiB
TOML
Raw Normal View History

2015-02-25 13:37:25 +00:00
[package]
name = "clap"
2015-10-06 19:28:55 +00:00
version = "1.4.5"
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-10-19 11:46:24 +00:00
ansi_term = { version = "~0.6.3", 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 }
2015-10-19 12:00:13 +00:00
#clippy = { version = "~0.0.12", optional = true }
[features]
2015-10-19 12:00:13 +00:00
default = ["suggestions", "color"]
suggestions = ["strsim"]
color = ["ansi_term"]
yaml = ["yaml-rust"]
#lints = ["clippy", "nightly"]
# for building with nightly and unstable features
nightly = []
# for building with travis-cargo
#unstable = ["lints", "nightly"]
unstable = ["nightly"]
# for building with debug messages
debug = []