clap/Cargo.toml

151 lines
3.4 KiB
TOML
Raw Normal View History

2021-11-17 21:12:40 +00:00
[workspace]
members = [
"clap_derive",
"clap_generate",
"clap_generate_fig",
]
2015-02-25 13:37:25 +00:00
[package]
name = "clap"
2021-10-17 16:00:58 +00:00
version = "3.0.0-beta.5"
2021-11-17 21:12:40 +00:00
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
2020-02-10 18:26:10 +00:00
authors = [
"Kevin K. <kbknapp@gmail.com>",
"Clap Maintainers"
]
repository = "https://github.com/clap-rs/clap"
documentation = "https://docs.rs/clap/"
2016-09-18 19:52:50 +00:00
homepage = "https://clap.rs/"
2021-11-17 21:12:40 +00:00
categories = ["command-line-interface"]
keywords = [
2018-06-12 14:10:03 +00:00
"argument",
"cli",
"arg",
"parser",
"parse"
]
2021-11-17 21:12:40 +00:00
edition = "2018"
2020-02-03 10:22:49 +00:00
license = "MIT OR Apache-2.0"
readme = "README.md"
2021-11-17 21:12:40 +00:00
include = [
"build.rs",
"src/**/*",
"Cargo.toml",
"LICENSE*",
"README.md",
"benches/**/*",
"examples/**/*"
]
[package.metadata.docs.rs]
2021-10-23 15:46:26 +00:00
features = ["doc"]
2021-11-17 21:12:40 +00:00
[features]
default = [
"std",
"color",
"suggestions",
]
debug = ["clap_derive/debug", "backtrace"] # Enables debug messages
doc = ["derive", "cargo", "wrap_help", "yaml", "env", "unicode", "regex", "unstable-replace", "unstable-multicall", "unstable-grouped"] # for docs.rs
2021-11-17 21:12:40 +00:00
# Used in default
std = ["indexmap/std"] # support for no_std in a backwards-compatible way
color = ["atty", "termcolor"]
suggestions = ["strsim"]
# Optional
derive = ["clap_derive", "lazy_static"]
cargo = ["lazy_static"] # Disable if you're not using Cargo, enables Cargo-env-var-dependent macros
2021-11-17 21:12:40 +00:00
wrap_help = ["terminal_size", "textwrap/terminal_size"]
yaml = ["yaml-rust"]
env = [] # Use environment variables during arg parsing
unicode = ["textwrap/unicode-width", "unicase"] # Support for unicode characters in arguments and help messages
2021-11-17 21:12:40 +00:00
# In-work features
unstable-replace = []
unstable-multicall = []
unstable-grouped = []
2020-02-17 18:14:19 +00:00
2020-03-04 18:31:18 +00:00
[lib]
bench = false
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "01_default"
path = "benches/01_default.rs"
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "02_simple"
path = "benches/02_simple.rs"
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "03_complex"
path = "benches/03_complex.rs"
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "04_new_help"
path = "benches/04_new_help.rs"
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "05_ripgrep"
path = "benches/05_ripgrep.rs"
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "06_rustup"
path = "benches/06_rustup.rs"
[dependencies]
2021-10-17 16:00:58 +00:00
clap_derive = { path = "./clap_derive", version = "=3.0.0-beta.5", optional = true }
2020-11-06 18:02:43 +00:00
bitflags = "1.2"
2021-06-17 17:58:27 +00:00
textwrap = { version = "0.14.0", default-features = false, features = [] }
unicase = { version = "2.6", optional = true }
2020-11-06 18:02:43 +00:00
indexmap = "1.0"
os_str_bytes = "5.0"
2020-11-06 18:02:43 +00:00
strsim = { version = "0.10", optional = true }
yaml-rust = { version = "0.4.1", optional = true }
atty = { version = "0.2", optional = true }
termcolor = { version = "1.1", optional = true }
terminal_size = { version = "0.1.12", optional = true }
lazy_static = { version = "1", optional = true }
regex = { version = "1.0", optional = true }
backtrace = { version = "0.3", optional = true }
[dev-dependencies]
2018-06-12 14:18:16 +00:00
regex = "1.0"
2017-11-30 16:41:34 +00:00
lazy_static = "1"
2020-04-26 16:53:50 +00:00
criterion = "0.3.2"
# Cutting out `filesystem` feature
trycmd = { version = "0.8.0", default-features = false, features = ["color-auto", "diff", "examples"] }
[[example]]
name = "busybox"
path = "examples/24a_multicall_busybox.rs"
required-features = ["unstable-multicall"]
[[example]]
name = "hostname"
path = "examples/24b_multicall_hostname.rs"
required-features = ["unstable-multicall"]
[[example]]
name = "09_cargo_metadata"
required-features = ["cargo"]
2021-11-30 03:05:42 +00:00
[[example]]
name = "demo"
required-features = ["derive"]
[profile.test]
opt-level = 1
[profile.bench]
lto = true
codegen-units = 1