clap/clap_derive/Cargo.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2020-01-18 12:10:07 +00:00
[package]
name = "clap_derive"
2020-01-18 13:16:37 +00:00
version = "3.0.0-beta.1"
2020-01-18 12:10:07 +00:00
edition = "2018"
authors = [
2020-02-03 10:22:49 +00:00
"Guillaume Pinot <texitoi@texitoi.eu>",
2020-02-10 18:26:10 +00:00
"Clap Maintainers"
2020-02-03 10:22:49 +00:00
]
include = [
"src/**/*",
"Cargo.toml",
"README.md"
2020-01-18 12:10:07 +00:00
]
description = "Parse command line argument by defining a struct, derive crate."
2020-02-03 10:22:49 +00:00
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
2020-01-18 12:10:07 +00:00
documentation = "https://docs.rs/clap_derive"
2020-02-03 10:22:49 +00:00
homepage = "https://clap.rs/"
keywords = [
"clap",
"cli",
"derive",
"proc_macro",
"parse"
]
2020-01-18 12:10:07 +00:00
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
2020-02-03 10:22:49 +00:00
license = "MIT OR Apache-2.0"
2020-01-18 12:10:07 +00:00
readme = "README.md"
2020-02-03 10:22:49 +00:00
[badges]
is-it-maintained-issue-resolution = { repository = "clap-rs/clap" }
is-it-maintained-open-issues = { repository = "clap-rs/clap" }
maintenance = {status = "actively-developed"}
2020-01-18 12:10:07 +00:00
[lib]
proc-macro = true
[dependencies]
syn = { version = "1", features = ["full"] }
quote = "1"
proc-macro2 = "1"
heck = "0.3.0"
proc-macro-error = "0.4.3"
[dev-dependencies]
2020-01-18 13:16:37 +00:00
clap = { path = "../", version = "3.0.0-beta.1" }
2020-02-10 18:26:10 +00:00
trybuild = "1.0"
2020-01-31 07:58:00 +00:00
rustversion = "1"
2020-02-05 10:04:59 +00:00
version-sync = "0.8"
2020-01-18 12:10:07 +00:00
[features]
default = []
2020-02-03 10:22:49 +00:00
unstable = []
2020-01-18 12:10:07 +00:00
nightly = []
debug = []
doc = []
2020-02-03 10:22:49 +00:00
[package.metadata.docs.rs]
features = ["doc"]