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