mirror of
https://github.com/clap-rs/clap
synced 2024-12-16 07:42:32 +00:00
28 lines
No EOL
630 B
TOML
28 lines
No EOL
630 B
TOML
[package]
|
|
name = "clap_derive"
|
|
description = """
|
|
Custom derives for Clap.
|
|
"""
|
|
version = "0.0.5"
|
|
authors = ["hoverbear <andrew@hoverbear.org>"]
|
|
license = "MIT"
|
|
|
|
categories = ["development-tools::procedural-macro-helpers"]
|
|
keywords = ["macro", "clap", "command-line"]
|
|
readme = "README.md"
|
|
repository = "https://github.com/Hoverbear/clap-derives"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "https://github.com/Hoverbear/clap-derives" }
|
|
appveyor = { repository = "https://github.com/Hoverbear/clap-derives", service = "github" }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
quote = "*"
|
|
syn = "*"
|
|
error-chain = "*"
|
|
|
|
[dev-dependencies]
|
|
clap = "*" |