2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
name = "clap"
|
2021-08-14 22:40:49 +00:00
|
|
|
version = "3.0.0-beta.4"
|
2020-02-03 10:22:49 +00:00
|
|
|
edition = "2018"
|
2020-02-10 18:26:10 +00:00
|
|
|
authors = [
|
|
|
|
"Kevin K. <kbknapp@gmail.com>",
|
|
|
|
"Clap Maintainers"
|
|
|
|
]
|
2018-02-05 21:23:00 +00:00
|
|
|
include = [
|
2018-06-12 14:10:03 +00:00
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
2018-02-05 21:23:00 +00:00
|
|
|
"README.md"
|
|
|
|
]
|
2020-02-03 10:22:49 +00:00
|
|
|
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
|
2018-08-02 03:06:12 +00:00
|
|
|
repository = "https://github.com/clap-rs/clap"
|
2016-08-27 15:08:51 +00:00
|
|
|
documentation = "https://docs.rs/clap/"
|
2016-09-18 19:52:50 +00:00
|
|
|
homepage = "https://clap.rs/"
|
2018-02-05 21:23:00 +00:00
|
|
|
keywords = [
|
2018-06-12 14:10:03 +00:00
|
|
|
"argument",
|
|
|
|
"cli",
|
|
|
|
"arg",
|
|
|
|
"parser",
|
2018-02-05 21:23:00 +00:00
|
|
|
"parse"
|
|
|
|
]
|
2017-02-16 14:44:44 +00:00
|
|
|
categories = ["command-line-interface"]
|
2020-02-03 10:22:49 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
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"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/01_default.rs"
|
2020-02-17 18:14:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "02_simple"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/02_simple.rs"
|
2020-02-17 18:14:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "03_complex"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/03_complex.rs"
|
2020-02-17 18:14:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "04_new_help"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/04_new_help.rs"
|
2020-02-17 18:14:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "05_ripgrep"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/05_ripgrep.rs"
|
2020-02-17 18:14:19 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "06_rustup"
|
2020-05-03 09:48:01 +00:00
|
|
|
path = "benches/06_rustup.rs"
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
[dependencies]
|
2021-08-17 08:43:37 +00:00
|
|
|
clap_derive = { path = "./clap_derive", version = "=3.0.0-beta.4", 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 = [] }
|
2020-11-06 18:02:43 +00:00
|
|
|
indexmap = "1.0"
|
2021-08-29 14:00:30 +00:00
|
|
|
os_str_bytes = "4.1"
|
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 }
|
2020-07-01 07:46:10 +00:00
|
|
|
terminal_size = { version = "0.1.12", optional = true }
|
2019-12-29 15:53:12 +00:00
|
|
|
lazy_static = { version = "1", optional = true }
|
2020-08-14 20:55:29 +00:00
|
|
|
regex = { version = "1.0", optional = true }
|
2015-08-25 21:28:38 +00:00
|
|
|
|
2016-05-09 01:33:56 +00:00
|
|
|
[dev-dependencies]
|
2018-06-12 14:18:16 +00:00
|
|
|
regex = "1.0"
|
2017-11-30 16:41:34 +00:00
|
|
|
lazy_static = "1"
|
2021-02-14 09:50:21 +00:00
|
|
|
version-sync = "0.9"
|
2020-04-26 16:53:50 +00:00
|
|
|
criterion = "0.3.2"
|
2016-05-09 01:33:56 +00:00
|
|
|
|
2015-08-25 21:28:38 +00:00
|
|
|
[features]
|
2021-08-14 00:04:49 +00:00
|
|
|
default = [
|
|
|
|
"std",
|
|
|
|
"derive",
|
|
|
|
"cargo",
|
|
|
|
"color",
|
|
|
|
"env",
|
|
|
|
"suggestions",
|
|
|
|
"unicode_help",
|
|
|
|
]
|
|
|
|
debug = ["clap_derive/debug"] # 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
|
2015-10-19 12:00:13 +00:00
|
|
|
suggestions = ["strsim"]
|
2021-08-14 00:04:49 +00:00
|
|
|
unicode_help = ["textwrap/unicode-width"] # Enable if any unicode in help message
|
|
|
|
|
|
|
|
# Optional
|
|
|
|
wrap_help = ["terminal_size", "textwrap/terminal_size"]
|
|
|
|
yaml = ["yaml-rust"]
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
lto = true
|
2018-02-24 19:05:42 +00:00
|
|
|
codegen-units = 1
|
2016-01-26 04:09:34 +00:00
|
|
|
|
2017-07-07 11:11:34 +00:00
|
|
|
[package.metadata.docs.rs]
|
2021-07-30 09:24:07 +00:00
|
|
|
features = ["yaml", "regex"]
|
2020-03-19 23:55:13 +00:00
|
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
2020-01-18 13:16:37 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"clap_derive",
|
2020-02-05 10:04:59 +00:00
|
|
|
"clap_generate",
|
2020-08-27 20:16:25 +00:00
|
|
|
"clap_up",
|
2020-01-18 13:16:37 +00:00
|
|
|
]
|
2020-02-03 10:29:57 +00:00
|
|
|
default-members = [
|
2020-02-05 10:04:59 +00:00
|
|
|
".",
|
|
|
|
"clap_derive",
|
|
|
|
"clap_generate",
|
2020-02-03 10:29:57 +00:00
|
|
|
]
|