clap/Cargo.toml

87 lines
2.4 KiB
TOML
Raw Normal View History

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"
2015-02-25 13:37:25 +00:00
authors = ["Kevin K. <kbknapp@gmail.com>"]
include = [
2018-06-12 14:10:03 +00:00
"src/**/*",
"Cargo.toml",
"README.md"
]
2020-02-03 10:22:49 +00:00
description = "A simple to use, efficient, and full-featured Command Line Argument Parser"
repository = "https://github.com/clap-rs/clap"
documentation = "https://docs.rs/clap/"
2016-09-18 19:52:50 +00:00
homepage = "https://clap.rs/"
keywords = [
2018-06-12 14:10:03 +00:00
"argument",
"cli",
"arg",
"parser",
"parse"
]
categories = ["command-line-interface"]
2020-02-03 10:22:49 +00:00
license = "MIT OR Apache-2.0"
readme = "README.md"
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" }
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.2"
unicode-width = "0.1.4"
textwrap = "0.11"
2018-06-12 14:22:18 +00:00
indexmap = "1.0.1"
2019-08-25 11:02:47 +00:00
strsim = { version = "0.9.0", optional = true }
2019-09-03 10:15:19 +00:00
yaml-rust = { version = "0.4.1", 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 }
2020-01-18 13:16:37 +00:00
clap_derive = { path = "./clap_derive", version = "3.0.0-beta.1", optional = true }
[target.'cfg(not(windows))'.dependencies]
2019-10-31 08:05:47 +00:00
ansi_term = { version = "0.12.1", 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"
version-sync = "0.8"
[features]
2020-02-02 00:28:19 +00:00
default = ["suggestions", "color", "vec_map", "derive", "std"]
std = [] # support for no_std in a backwards-compatible way
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"]
2020-02-03 10:22:49 +00:00
no_cargo = [] # Enable if you're not using Cargo, disables Cargo-env-var-dependent macros
unstable = [] # for building with unstable clap features (doesn't require nightly Rust) (currently none)
nightly = [] # for building with unstable Rust features (currently none)
debug = [] # Enables debug messages
doc = ["yaml"] # All the features which add to documentation
[profile.dev]
codegen-units = 4
[profile.test]
opt-level = 1
debug = true
codegen-units = 4
[profile.bench]
lto = true
codegen-units = 1
[package.metadata.docs.rs]
features = ["doc"]
2020-01-18 13:16:37 +00:00
[workspace]
members = [
"clap_derive",
]