clap/Cargo.toml
Guillaume Pinot 7975343a03 Support 1-uple enum variant as subcommand
This is a breaking change as it modifies the StructOpt trait.

fix #38
2018-02-03 15:32:55 +01:00

25 lines
655 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 }
[dev-dependencies]
structopt-derive = { path = "structopt-derive", version = "0.2.0" }
[workspace]