mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 15:52:44 +00:00
be60de036b
As using structopt without structopt_derive is quite meaningless, reexport structopt_derive, symplifying the usage. Inspired by the failure crate. fix #45
23 lines
635 B
TOML
23 lines
635 B
TOML
[package]
|
|
name = "structopt"
|
|
version = "0.2.0"
|
|
authors = ["Guillaume Pinot <texitoi@texitoi.eu>"]
|
|
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 = "WTFPL"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = ["clap/default"]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "TeXitoi/structopt" }
|
|
|
|
[dependencies]
|
|
clap = { version = "2.20", default-features = false }
|
|
structopt-derive = { path = "structopt-derive", version = "0.2.0" }
|
|
|
|
[workspace]
|