mirror of
https://github.com/clap-rs/clap
synced 2024-12-15 23:32:32 +00:00
32 lines
897 B
TOML
32 lines
897 B
TOML
[package]
|
|
name = "structopt"
|
|
version = "0.2.8"
|
|
authors = ["Guillaume Pinot <texitoi@texitoi.eu>", "others"]
|
|
description = "Parse command line argument by defining a struct."
|
|
documentation = "https://docs.rs/structopt"
|
|
repository = "https://github.com/TeXitoi/structopt"
|
|
keywords = ["clap", "cli", "derive", "docopt"]
|
|
categories = ["command-line-interface"]
|
|
license = "Apache-2.0/MIT"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["clap/default"]
|
|
nightly = ["structopt-derive/nightly"]
|
|
suggestions = ["clap/suggestions"]
|
|
color = ["clap/color"]
|
|
wrap_help = ["clap/wrap_help"]
|
|
yaml = ["clap/yaml"]
|
|
lints = ["clap/lints"]
|
|
debug = ["clap/debug"]
|
|
no_cargo = ["clap/no_cargo"]
|
|
doc = ["clap/doc"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "TeXitoi/structopt" }
|
|
|
|
[dependencies]
|
|
clap = { version = "2.20", default-features = false }
|
|
structopt-derive = { path = "structopt-derive", version = "0.2.8" }
|
|
|
|
[workspace]
|