2015-02-25 08:37:25 -05:00
|
|
|
[package]
|
|
|
|
name = "clap"
|
2018-10-20 21:55:03 -04:00
|
|
|
version = "3.0.0-beta.1"
|
2020-02-03 11:22:49 +01:00
|
|
|
edition = "2018"
|
2020-02-10 19:26:10 +01:00
|
|
|
authors = [
|
|
|
|
"Kevin K. <kbknapp@gmail.com>",
|
|
|
|
"Clap Maintainers"
|
|
|
|
]
|
2018-02-05 16:23:00 -05:00
|
|
|
include = [
|
2018-06-12 10:10:03 -04:00
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
2018-02-05 16:23:00 -05:00
|
|
|
"README.md"
|
|
|
|
]
|
2020-02-03 11:22:49 +01:00
|
|
|
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
|
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/"
|
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"
|
|
|
|
]
|
2017-02-16 09:44:44 -05:00
|
|
|
categories = ["command-line-interface"]
|
2020-02-03 11:22:49 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
readme = "README.md"
|
2015-02-28 19:56:43 -05:00
|
|
|
|
2017-07-21 09:55:27 -04:00
|
|
|
[badges]
|
2020-02-02 20:11:41 +01:00
|
|
|
travis-ci = { repository = "clap-rs/clap", branch = "master" }
|
|
|
|
azure-devops = { project = "clap-rs/clap", pipeline = "clap-rs.clap" }
|
2018-08-01 23:06:12 -04: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 16:23:00 -05:00
|
|
|
maintenance = {status = "actively-developed"}
|
2017-07-21 09:55:27 -04:00
|
|
|
|
2015-09-30 17:14:48 -04:00
|
|
|
[dependencies]
|
2019-11-30 02:06:52 +01:00
|
|
|
bitflags = "1.2"
|
2017-01-29 18:14:46 -08:00
|
|
|
unicode-width = "0.1.4"
|
2019-03-30 09:11:47 +05:30
|
|
|
textwrap = "0.11"
|
2018-06-12 10:22:18 -04:00
|
|
|
indexmap = "1.0.1"
|
2019-12-29 18:53:12 +03: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 18:46:37 +05:30
|
|
|
clap_derive = { path = "./clap_derive", version = "3.0.0-beta.1", optional = true }
|
2015-08-25 17:28:38 -04:00
|
|
|
|
2018-02-12 21:15:29 -05:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2019-10-31 09:05:47 +01:00
|
|
|
ansi_term = { version = "0.12.1", optional = true }
|
2018-02-12 21:15:29 -05: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"
|
2019-04-05 15:49:32 -04:00
|
|
|
version-sync = "0.8"
|
2016-05-08 21:33:56 -04:00
|
|
|
|
2015-08-25 17:28:38 -04:00
|
|
|
[features]
|
2020-02-02 01:28:19 +01:00
|
|
|
default = ["suggestions", "color", "vec_map", "derive", "std"]
|
|
|
|
std = [] # support for no_std in a backwards-compatible way
|
2015-10-19 15:00:13 +03:00
|
|
|
suggestions = ["strsim"]
|
2017-02-19 11:12:55 -05:00
|
|
|
color = ["ansi_term", "atty"]
|
2017-10-26 09:26:10 -04:00
|
|
|
wrap_help = ["term_size", "textwrap/term_size"]
|
2019-12-29 18:53:12 +03:00
|
|
|
derive = ["clap_derive", "lazy_static"]
|
2016-10-15 04:58:36 +02:00
|
|
|
yaml = ["yaml-rust"]
|
2020-02-03 11:22:49 +01:00
|
|
|
no_cargo = [] # Enable if you're not using Cargo, disables Cargo-env-var-dependent macros
|
2019-04-04 13:27:08 -04: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 04:58:36 +02:00
|
|
|
debug = [] # Enables debug messages
|
2017-07-07 13:11:34 +02:00
|
|
|
doc = ["yaml"] # All the features which add to documentation
|
2016-01-25 23:09:34 -05:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
codegen-units = 4
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 1
|
|
|
|
debug = true
|
2017-03-11 00:18:13 -05:00
|
|
|
codegen-units = 4
|
2016-01-25 23:09:34 -05:00
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
lto = true
|
2018-02-24 20:05:42 +01:00
|
|
|
codegen-units = 1
|
2016-01-25 23:09:34 -05:00
|
|
|
|
2017-07-07 13:11:34 +02:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
features = ["doc"]
|
2020-01-18 18:46:37 +05:30
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"clap_derive",
|
2020-02-05 11:04:59 +01:00
|
|
|
"clap_generate",
|
2020-01-18 18:46:37 +05:30
|
|
|
]
|
2020-02-03 11:29:57 +01:00
|
|
|
default-members = [
|
2020-02-05 11:04:59 +01:00
|
|
|
".",
|
|
|
|
"clap_derive",
|
|
|
|
"clap_generate",
|
2020-02-03 11:29:57 +01:00
|
|
|
]
|