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