clap/Cargo.toml

39 lines
1 KiB
TOML
Raw Normal View History

2017-02-03 00:03:51 +00:00
[package]
2018-07-02 15:54:44 +00:00
name = "clap_derive"
version = "0.3.0"
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>",
"Kevin K. <kbknapp@gmail.com>",
"hoverbear <andrew@hoverbear.org>"
]
2017-02-03 00:03:51 +00:00
description = "Parse command line argument by defining a struct, derive crate."
2018-07-02 15:54:44 +00:00
documentation = "https://docs.rs/clap_derive"
repository = "https://github.com/kbknapp/clap_derive"
keywords = ["clap", "cli", "derive", "proc_macro", "parse"]
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
2018-02-25 10:22:24 +00:00
license = "Apache-2.0/MIT"
2018-07-02 15:54:44 +00:00
readme = "README.md"
[lib]
proc-macro = true
2017-02-03 00:03:51 +00:00
2017-02-10 00:19:16 +00:00
[badges]
2018-07-02 15:54:44 +00:00
travis-ci = { repository = "kbknapp/clap_derive" }
appveyor = { repository = "https://github.com/kbknapp/clap_derive", service = "github" }
2017-02-10 00:19:16 +00:00
2017-02-03 00:03:51 +00:00
[dependencies]
2018-05-21 14:54:22 +00:00
syn = "0.14"
quote = "0.6"
proc-macro2 = "0.4"
2018-07-02 18:31:42 +00:00
clippy = {version = "0.0.174", optional = true }
2017-02-03 00:03:51 +00:00
[dev-dependencies]
clap = {path = "../clap-rs", features = ["derive"]} # ONLY FOR INITIAL DEVELOPMENT...change to real crates.io ver for rlease!
[features]
2018-07-02 15:54:44 +00:00
default = []
nightly = []
lints = ["clippy"]
debug = []
2018-07-02 18:31:42 +00:00
doc = []