2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
name = "clap"
|
2018-10-21 01:55:03 +00:00
|
|
|
version = "3.0.0-beta.1"
|
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"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "02_simple"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "03_complex"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "04_new_help"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "05_ripgrep"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
harness = false
|
|
|
|
name = "06_rustup"
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2017-07-21 13:55:27 +00:00
|
|
|
[badges]
|
2020-02-02 19:11:41 +00:00
|
|
|
travis-ci = { repository = "clap-rs/clap", branch = "master" }
|
|
|
|
azure-devops = { project = "clap-rs/clap", pipeline = "clap-rs.clap" }
|
2018-08-02 03:06:12 +00:00
|
|
|
coveralls = { repository = "clap-rs/clap", branch = "master" }
|
|
|
|
is-it-maintained-issue-resolution = { repository = "clap-rs/clap" }
|
|
|
|
is-it-maintained-open-issues = { repository = "clap-rs/clap" }
|
2018-02-05 21:23:00 +00:00
|
|
|
maintenance = {status = "actively-developed"}
|
2017-07-21 13:55:27 +00:00
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
[dependencies]
|
2019-11-30 01:06:52 +00:00
|
|
|
bitflags = "1.2"
|
2017-01-30 02:14:46 +00:00
|
|
|
unicode-width = "0.1.4"
|
2019-03-30 03:41:47 +00:00
|
|
|
textwrap = "0.11"
|
2018-06-12 14:22:18 +00:00
|
|
|
indexmap = "1.0.1"
|
2019-12-29 15:53:12 +00:00
|
|
|
strsim = { version = "0.9.0", optional = true }
|
|
|
|
yaml-rust = { version = "0.4.1", optional = true }
|
|
|
|
atty = { version = "0.2.2", optional = true }
|
|
|
|
vec_map = { version = "0.8", optional = true }
|
|
|
|
term_size = { version = "1.0.0-beta1", optional = true }
|
|
|
|
lazy_static = { version = "1", optional = true }
|
2020-01-18 13:16:37 +00:00
|
|
|
clap_derive = { path = "./clap_derive", version = "3.0.0-beta.1", optional = true }
|
2015-08-25 21:28:38 +00:00
|
|
|
|
2018-02-13 02:15:29 +00:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2019-10-31 08:05:47 +00:00
|
|
|
ansi_term = { version = "0.12.1", optional = true }
|
2018-02-13 02:15:29 +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"
|
2019-04-05 19:49:32 +00:00
|
|
|
version-sync = "0.8"
|
2020-03-05 01:20:05 +00:00
|
|
|
criterion = { git = "git://github.com/pksunkara/criterion.rs", version = "0.3" }
|
2016-05-09 01:33:56 +00:00
|
|
|
|
2015-08-25 21:28:38 +00:00
|
|
|
[features]
|
2020-03-01 21:55:57 +00:00
|
|
|
default = ["suggestions", "color", "vec_map", "derive", "std", "cargo"]
|
2020-02-02 00:28:19 +00:00
|
|
|
std = [] # support for no_std in a backwards-compatible way
|
2015-10-19 12:00:13 +00:00
|
|
|
suggestions = ["strsim"]
|
2017-02-19 16:12:55 +00:00
|
|
|
color = ["ansi_term", "atty"]
|
2017-10-26 13:26:10 +00:00
|
|
|
wrap_help = ["term_size", "textwrap/term_size"]
|
2019-12-29 15:53:12 +00:00
|
|
|
derive = ["clap_derive", "lazy_static"]
|
2016-10-15 02:58:36 +00:00
|
|
|
yaml = ["yaml-rust"]
|
2020-03-01 21:55:57 +00:00
|
|
|
cargo = [] # Disable if you're not using Cargo, enables Cargo-env-var-dependent macros
|
2019-04-04 17:27:08 +00:00
|
|
|
unstable = [] # for building with unstable clap features (doesn't require nightly Rust) (currently none)
|
|
|
|
nightly = [] # for building with unstable Rust features (currently none)
|
2016-10-15 02:58:36 +00:00
|
|
|
debug = [] # Enables debug messages
|
2017-07-07 11:11:34 +00:00
|
|
|
doc = ["yaml"] # All the features which add to documentation
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
codegen-units = 4
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 1
|
|
|
|
debug = true
|
2017-03-11 05:18:13 +00:00
|
|
|
codegen-units = 4
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[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]
|
|
|
|
features = ["doc"]
|
2020-01-18 13:16:37 +00:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"clap_derive",
|
2020-02-05 10:04:59 +00:00
|
|
|
"clap_generate",
|
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
|
|
|
]
|