clap/Cargo.toml

119 lines
2.8 KiB
TOML
Raw Normal View History

2015-02-25 13:37:25 +00:00
[package]
name = "clap"
version = "3.0.0-alpha.1"
2015-02-25 13:37:25 +00:00
authors = ["Kevin K. <kbknapp@gmail.com>"]
exclude = [
".github/*",
2018-06-12 14:10:03 +00:00
"examples/*",
"tests/*",
"benches/*",
"clap-perf/*",
"etc/*",
2018-06-12 14:10:03 +00:00
"*.png",
"*.dot",
"*.yml",
"*.toml",
"*.md",
"clap-test.rs"
]
include = [
2018-06-12 14:10:03 +00:00
"src/**/*",
"Cargo.toml",
"README.md"
]
repository = "https://github.com/clap-rs/clap"
documentation = "https://docs.rs/clap/"
2016-09-18 19:52:50 +00:00
homepage = "https://clap.rs/"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = [
2018-06-12 14:10:03 +00:00
"argument",
"cli",
"arg",
"parser",
"parse"
]
categories = ["command-line-interface"]
description = """
A simple to use, efficient, and full featured Command Line Argument Parser
"""
2017-07-21 13:55:27 +00:00
[badges]
travis-ci = { repository = "clap-rs/clap" }
appveyor = { repository = "clap-rs/clap" }
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" }
maintenance = {status = "actively-developed"}
2017-07-21 13:55:27 +00:00
[dependencies]
bitflags = "1.0"
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"
strsim = { version = "0.7.0", optional = true }
yaml-rust = { version = "0.4", optional = true }
2017-10-24 03:03:40 +00:00
clippy = { version = "~0.0.166", optional = true }
atty = { version = "0.2.2", optional = true }
2017-09-19 11:28:58 +00:00
vec_map = { version = "0.8", optional = true }
term_size = { version = "1.0.0-beta1", optional = true }
clap_derive = { git = "https://github.com/clap-rs/clap_derive", optional = true }
[target.'cfg(not(windows))'.dependencies]
2018-06-12 14:18:16 +00:00
ansi_term = { version = "0.11.0", optional = true }
[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"
[features]
default = ["suggestions", "color", "vec_map", "derive"]
2015-10-19 12:00:13 +00:00
suggestions = ["strsim"]
color = ["ansi_term", "atty"]
wrap_help = ["term_size", "textwrap/term_size"]
derive = ["clap_derive"]
yaml = ["yaml-rust"]
unstable = [] # for building with unstable clap features (doesn't require nightly Rust) (currently none)
nightly = [] # for building with unstable Rust features (currently none)
lints = ["clippy"] # Requires nightly Rust
debug = [] # Enables debug messages
no_cargo = [] # Enable if you're not using Cargo, disables Cargo-env-var-dependent macros
doc = ["yaml"] # All the features which add to documentation
# [profile.release]
# opt-level = 3
# debug = false
# rpath = false
# lto = true
# debug-assertions = false
# codegen-units = 1
[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
codegen-units = 4
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
[package.metadata.docs.rs]
features = ["doc"]