mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 14:54:15 +00:00
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
|
|
name = "clap"
|
|
version = "1.5.2"
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
|
exclude = ["examples/*", "clap-tests/*", "tests/*", "benches/*", "*.png", "clap-perf/*"]
|
|
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"
|
|
vec_map = "0.4"
|
|
ansi_term = { version = "~0.7", optional = true }
|
|
strsim = { version = "~0.4.0", optional = true }
|
|
yaml-rust = { version = "~0.2.2", optional = true }
|
|
clippy = { version = "~0.0.22", optional = true }
|
|
|
|
[features]
|
|
default = ["suggestions", "color"]
|
|
suggestions = ["strsim"]
|
|
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
|
|
|