clap/Cargo.toml
Guillaume P 560df68ed2 v0.2.7
2018-04-12 11:41:05 +02:00

24 lines
683 B
TOML

[package]
name = "structopt"
version = "0.2.7"
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 = "Apache-2.0/MIT"
readme = "README.md"
[features]
default = ["clap/default"]
nightly = ["structopt-derive/nightly"]
[badges]
travis-ci = { repository = "TeXitoi/structopt" }
[dependencies]
clap = { version = "2.20", default-features = false }
structopt-derive = { path = "structopt-derive", version = "0.2.7" }
[workspace]