clap/Cargo.toml

116 lines
2.7 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"
2020-02-10 18:26:10 +00:00
authors = [
"Kevin K. <kbknapp@gmail.com>",
"Clap Maintainers"
]
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"
2020-02-17 18:14:19 +00:00
2020-03-04 18:31:18 +00:00
[lib]
bench = false
2020-02-17 18:14:19 +00:00
[[bench]]
harness = false
name = "01_default"
[[bench]]
harness = false
name = "02_simple"
[[bench]]
harness = false
name = "03_complex"
[[bench]]
harness = false
name = "04_new_help"
[[bench]]
harness = false
name = "05_ripgrep"
[[bench]]
harness = false
name = "06_rustup"
2017-07-21 13:55:27 +00:00
[badges]
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"
2020-04-20 11:05:44 +00:00
unicode-width = "0.1"
textwrap = "0.11"
2020-04-20 11:05:44 +00:00
indexmap = "1.0"
os_str_bytes = "2.1"
vec_map = "0.8"
2020-04-20 11:05:44 +00:00
strsim = { version = "0.10", optional = true }
yaml-rust = { version = "0.4.1", optional = true }
atty = { version = "0.2", optional = true }
2020-04-12 01:39:13 +00:00
termcolor = { version = "1.1", optional = true }
term_size = { version = "1.0.0-beta1", optional = true }
lazy_static = { version = "1", optional = true }
2020-01-18 13:16:37 +00:00
clap_derive = { path = "./clap_derive", version = "3.0.0-beta.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"
2020-04-25 19:21:54 +00:00
criterion = { git = "git://github.com/bheisler/criterion.rs", version = "0.3" }
[features]
default = ["suggestions", "color", "derive", "std", "cargo"]
2020-02-02 00:28:19 +00:00
std = [] # support for no_std in a backwards-compatible way
2015-10-19 12:00:13 +00:00
suggestions = ["strsim"]
2020-04-12 01:39:13 +00:00
color = ["atty", "termcolor"]
wrap_help = ["term_size", "textwrap/term_size"]
derive = ["clap_derive", "lazy_static"]
yaml = ["yaml-rust"]
2020-03-01 21:55:57 +00:00
cargo = [] # Disable if you're not using Cargo, enables Cargo-env-var-dependent macros
2020-04-09 16:54:43 +00:00
unstable = ["clap_derive/unstable"] # for building with unstable clap features (doesn't require nightly Rust) (currently none)
debug = ["clap_derive/debug"] # Enables debug messages
doc = ["yaml"] # All the features which add to documentation
[profile.test]
opt-level = 1
[profile.bench]
lto = true
codegen-units = 1
[package.metadata.docs.rs]
features = ["doc"]
2020-03-19 23:55:13 +00:00
targets = ["x86_64-unknown-linux-gnu"]
2020-01-18 13:16:37 +00:00
[workspace]
members = [
"clap_derive",
2020-02-05 10:04:59 +00:00
"clap_generate",
2020-01-18 13:16:37 +00:00
]
2020-02-03 10:29:57 +00:00
default-members = [
2020-02-05 10:04:59 +00:00
".",
"clap_derive",
"clap_generate",
2020-02-03 10:29:57 +00:00
]