clap/Cargo.toml
2015-10-06 11:16:23 -04:00

49 lines
1.1 KiB
TOML

[package]
name = "clap"
version = "1.4.4"
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"
documentation = "http://kbknapp.github.io/clap-rs"
readme = "README.md"
license = "MIT"
keywords = ["argument", "command", "arg", "parser", "parse"]
[dependencies]
bitflags = "0.3.2"
[dependencies.strsim]
version = "~0.4.0"
optional = true
[dependencies.ansi_term]
version = "~0.6.3"
optional = true
[dependencies.yaml-rust]
version = "~0.2.2"
optional = true
#[dependencies.clippy]
#version = "~0.0.12"
#optional = true
[features]
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 = []