clap/clap_derive/Cargo.toml
Ed Page 844251c478 test: Easier to test with minimal features
PR #2979 reduced what dependencies we push on users and made us one step
closer to being able to test more with fewer features.  Looks like I
also need to update `clap_derive`.  I verified locally that #2976 fails
with this.

`clap_derive` still needs `env` because of examples / tests that use it.
I feel like moving `clap_derive`s tests out to `clap` would be the way
to fix this.
2021-11-02 16:40:31 -05:00

52 lines
1.1 KiB
TOML

[package]
name = "clap_derive"
version = "3.0.0-beta.5"
edition = "2018"
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>",
"Clap Maintainers"
]
include = [
"src/**/*",
"Cargo.toml",
"LICENSE-*",
"README.md"
]
description = "Parse command line argument by defining a struct, derive crate."
repository = "https://github.com/clap-rs/clap/tree/master/clap_derive"
documentation = "https://docs.rs/clap_derive"
homepage = "https://clap.rs/"
keywords = [
"clap",
"cli",
"parse",
"derive",
"proc_macro"
]
categories = ["command-line-interface", "development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
[lib]
proc-macro = true
bench = false
[dependencies]
syn = { version = "1.0.74", features = ["full"] }
quote = "1.0.9"
proc-macro2 = "1.0.28"
heck = "0.3.0"
proc-macro-error = "1"
[dev-dependencies]
clap = { path = "../", default-features = false, features = ["std", "derive", "env"] }
trybuild = "1.0"
rustversion = "1"
version-sync = "0.9"
[features]
default = []
debug = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]