2015-02-25 13:37:25 +00:00
|
|
|
[package]
|
|
|
|
|
|
|
|
name = "clap"
|
2018-02-03 20:15:00 +00:00
|
|
|
version = "3.0.0-alpha1"
|
2015-02-25 13:37:25 +00:00
|
|
|
authors = ["Kevin K. <kbknapp@gmail.com>"]
|
2018-02-05 21:23:00 +00:00
|
|
|
exclude = [
|
|
|
|
".github/*",
|
2018-06-12 14:10:03 +00:00
|
|
|
"examples/*",
|
|
|
|
"tests/*",
|
|
|
|
"benches/*",
|
|
|
|
"clap-perf/*",
|
2018-02-05 21:23:00 +00:00
|
|
|
"etc/*",
|
2018-06-12 14:10:03 +00:00
|
|
|
"*.png",
|
2018-02-05 21:23:00 +00:00
|
|
|
"*.dot",
|
|
|
|
"*.yml",
|
|
|
|
"*.toml",
|
|
|
|
"*.md",
|
|
|
|
"clap-test.rs"
|
|
|
|
]
|
|
|
|
include = [
|
2018-06-12 14:10:03 +00:00
|
|
|
"src/**/*",
|
|
|
|
"Cargo.toml",
|
2018-02-05 21:23:00 +00:00
|
|
|
"README.md"
|
|
|
|
]
|
2017-11-13 21:03:25 +00:00
|
|
|
repository = "https://github.com/kbknapp/clap-rs"
|
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/"
|
2015-03-01 00:56:43 +00:00
|
|
|
readme = "README.md"
|
2015-05-17 22:26:03 +00:00
|
|
|
license = "MIT"
|
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"]
|
2016-08-27 15:08:51 +00:00
|
|
|
description = """
|
2018-02-05 21:23:00 +00:00
|
|
|
A simple to use, efficient, and full featured Command Line Argument Parser
|
2016-08-27 15:08:51 +00:00
|
|
|
"""
|
2015-03-01 00:56:43 +00:00
|
|
|
|
2017-07-21 13:55:27 +00:00
|
|
|
[badges]
|
|
|
|
travis-ci = { repository = "kbknapp/clap-rs" }
|
|
|
|
appveyor = { repository = "kbknapp/clap-rs" }
|
2018-02-05 21:23:00 +00:00
|
|
|
coveralls = { repostiory = "kbknapp/clap-rs", branch = "master" }
|
|
|
|
is-it-maintained-issue-resolution = { repository = "kbknapp/clap-rs" }
|
|
|
|
is-it-maintained-open-issues = { repository = "kbknapp/clap-rs" }
|
|
|
|
maintenance = {status = "actively-developed"}
|
2017-07-21 13:55:27 +00:00
|
|
|
|
2015-09-30 21:14:48 +00:00
|
|
|
[dependencies]
|
2017-10-10 19:01:42 +00:00
|
|
|
bitflags = "1.0"
|
2017-01-30 02:14:46 +00:00
|
|
|
unicode-width = "0.1.4"
|
2018-06-12 14:18:16 +00:00
|
|
|
textwrap = "0.10.0"
|
2018-06-12 14:22:18 +00:00
|
|
|
indexmap = "1.0.1"
|
2018-01-19 08:39:49 +00:00
|
|
|
strsim = { version = "0.7.0", optional = true }
|
2017-01-30 02:14:46 +00:00
|
|
|
yaml-rust = { version = "0.3.5", optional = true }
|
2017-10-24 03:03:40 +00:00
|
|
|
clippy = { version = "~0.0.166", optional = true }
|
2017-02-19 16:12:55 +00:00
|
|
|
atty = { version = "0.2.2", optional = true }
|
2017-09-19 11:28:58 +00:00
|
|
|
vec_map = { version = "0.8", optional = true }
|
2018-03-06 11:36:59 +00:00
|
|
|
term_size = { version = "1.0.0-beta1", optional = true }
|
2015-08-25 21:28:38 +00:00
|
|
|
|
2018-02-13 02:15:29 +00:00
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2018-06-12 14:18:16 +00:00
|
|
|
ansi_term = { version = "0.11.0", 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"
|
2017-11-19 18:25:01 +00:00
|
|
|
version-sync = "0.5"
|
2016-05-09 01:33:56 +00:00
|
|
|
|
2015-08-25 21:28:38 +00:00
|
|
|
[features]
|
2017-10-06 11:14:01 +00:00
|
|
|
default = ["suggestions", "color", "vec_map"]
|
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"]
|
2016-10-15 02:58:36 +00:00
|
|
|
yaml = ["yaml-rust"]
|
2016-10-15 21:37:59 +00:00
|
|
|
unstable = [] # for building with unstable clap features (doesn't require nightly Rust) (currently none)
|
2016-10-15 02:58:36 +00:00
|
|
|
nightly = [] # for building with unstable Rust features (currently none)
|
2016-10-15 17:08:51 +00:00
|
|
|
lints = ["clippy"] # Requires nightly Rust
|
2016-10-15 02:58:36 +00:00
|
|
|
debug = [] # Enables debug messages
|
2016-12-28 02:07:59 +00:00
|
|
|
no_cargo = [] # Enable if you're not using Cargo, disables Cargo-env-var-dependent macros
|
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.release]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
2018-02-24 19:05:42 +00:00
|
|
|
codegen-units = 1
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
opt-level = 0
|
|
|
|
debug = true
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
|
|
|
codegen-units = 4
|
|
|
|
|
|
|
|
[profile.test]
|
|
|
|
opt-level = 1
|
|
|
|
debug = true
|
|
|
|
rpath = false
|
|
|
|
lto = false
|
|
|
|
debug-assertions = true
|
2017-03-11 05:18:13 +00:00
|
|
|
codegen-units = 4
|
2016-01-26 04:09:34 +00:00
|
|
|
|
|
|
|
[profile.bench]
|
|
|
|
opt-level = 3
|
|
|
|
debug = false
|
|
|
|
rpath = false
|
|
|
|
lto = true
|
|
|
|
debug-assertions = false
|
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"]
|