clap/Cargo.toml

25 lines
733 B
TOML
Raw Normal View History

2017-02-03 00:03:51 +00:00
[package]
name = "structopt"
2018-03-07 22:50:49 +00:00
version = "0.2.5"
2017-02-03 00:03:51 +00:00
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"]
2018-02-25 10:22:24 +00:00
license = "Apache-2.0/MIT"
2017-02-03 00:03:51 +00:00
readme = "README.md"
[features]
default = ["clap/default"]
testing_only_proc_macro2_nightly = ["structopt-derive/testing_only_proc_macro2_nightly"]
2017-02-10 00:19:16 +00:00
[badges]
travis-ci = { repository = "TeXitoi/structopt" }
2017-02-03 00:03:51 +00:00
[dependencies]
clap = { version = "2.20", default-features = false }
2018-03-07 22:50:49 +00:00
structopt-derive = { path = "structopt-derive", version = "0.2.5" }
2017-02-03 00:03:51 +00:00
[workspace]