| 1 | [package] |
| 2 | name = "clap_derive" |
| 3 | version = "4.5.32" |
| 4 | description = "Parse command line argument by defining a struct, derive crate." |
| 5 | categories = ["command-line-interface" , "development-tools::procedural-macro-helpers" ] |
| 6 | keywords = [ |
| 7 | "clap" , |
| 8 | "cli" , |
| 9 | "parse" , |
| 10 | "derive" , |
| 11 | "proc_macro" |
| 12 | ] |
| 13 | repository.workspace = true |
| 14 | license.workspace = true |
| 15 | edition.workspace = true |
| 16 | rust-version.workspace = true |
| 17 | include.workspace = true |
| 18 | |
| 19 | [package.metadata.docs.rs] |
| 20 | targets = ["x86_64-unknown-linux-gnu" ] |
| 21 | |
| 22 | [package.metadata.release] |
| 23 | shared-version = true |
| 24 | dependent-version = "upgrade" |
| 25 | tag-name = "v{{version}}" |
| 26 | |
| 27 | [lib] |
| 28 | proc-macro = true |
| 29 | bench = false |
| 30 | |
| 31 | [dependencies] |
| 32 | syn = { version = "2.0.8" , features = ["full" ] } |
| 33 | quote = "1.0.9" |
| 34 | proc-macro2 = "1.0.69" |
| 35 | heck = "0.5.0" |
| 36 | pulldown-cmark = { version = "0.13.0" , default-features = false, optional = true} |
| 37 | anstyle = {version ="1.0.10" , optional = true} |
| 38 | |
| 39 | [features] |
| 40 | default = [] |
| 41 | debug = [] |
| 42 | unstable-v5 = ["deprecated" ] |
| 43 | deprecated = [] |
| 44 | raw-deprecated = ["deprecated" ] |
| 45 | unstable-markdown = ["dep:pulldown-cmark" , "dep:anstyle" ] |
| 46 | |
| 47 | [lints] |
| 48 | workspace = true |
| 49 | |