example = []
[[bench]]
harness = false
name = "01_default"
path = "benches/01_default.rs"
[[bench]]
harness = false
name = "02_simple"
path = "benches/02_simple.rs"
[[bench]]
harness = false
name = "03_complex"
path = "benches/03_complex.rs"
[[bench]]
harness = false
name = "04_new_help"
path = "benches/04_new_help.rs"
[[bench]]
harness = false
name = "05_ripgrep"
path = "benches/05_ripgrep.rs"
[[bench]]
harness = false
name = "06_rustup"
path = "benches/06_rustup.rs"
[dependencies.atty]
optional = true
version = "0.2"
[dependencies.backtrace]
optional = true
version = "0.3"
[dependencies.bitflags]
version = "1.2"
[dependencies.clap_derive]
optional = true
version = "=3.0.0-beta.5"
[dependencies.indexmap]
version = "1.0"
[dependencies.lazy_static]
optional = true
version = "1"
[dependencies.os_str_bytes]
version = "4.1"
[dependencies.regex]
optional = true
version = "1.0"
[dependencies.strsim]
optional = true
version = "0.10"
[dependencies.termcolor]
optional = true
version = "1.1"
[dependencies.terminal_size]
optional = true
version = "0.1.12"
[dependencies.textwrap]
default-features = false
features = []
version = "0.14.0"
[dependencies.unicase]
optional = true
version = "2.6"
[dependencies.yaml-rust]
optional = true
version = "0.4.1"
[dev-dependencies.criterion]
version = "0.3.2"
[dev-dependencies.lazy_static]
version = "1"
[dev-dependencies.regex]
version = "1.0"
[dev-dependencies.version-sync]
version = "0.9"
[features]
cargo = ["lazy_static"]
color = ["atty", "termcolor"]
debug = ["clap_derive/debug", "backtrace"]
default = ["std", "derive", "cargo", "color", "env", "suggestions", "unicode"]
derive = ["clap_derive", "lazy_static"]
env = []
std = ["indexmap/std"]
suggestions = ["strsim"]
unicode = ["textwrap/unicode-width", "unicase"]
unstable-multicall = []
unstable-replace = []
wrap_help = ["terminal_size", "textwrap/terminal_size"]
yaml = ["yaml-rust"]
[lib]
bench = false
[package]
authors = ["Kevin K. <kbknapp@gmail.com>", "Clap Maintainers"]
categories = ["command-line-interface"]
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
documentation = "https://docs.rs/clap/"
edition = "2018"
homepage = "https://clap.rs/"
include = ["src/**/*", "Cargo.toml", "README.md"]
keywords = ["argument", "cli", "arg", "parser", "parse"]
license = "MIT OR Apache-2.0"
name = "clap"
readme = "README.md"
repository = "https://github.com/clap-rs/clap"
version = "3.0.0-beta.5"
[package.metadata.docs.rs]
features = ["yaml", "regex", "unstable-replace", "unstable-multicall"]
targets = ["x86_64-unknown-linux-gnu"]
[profile.bench]
codegen-units = 1
lto = true
[profile.test]
opt-level = 1