| 1 | [package] |
| 2 | name = "darling" |
| 3 | version = "0.20.11" |
| 4 | authors = ["Ted Driggs <ted.driggs@outlook.com>" ] |
| 5 | repository = "https://github.com/TedDriggs/darling" |
| 6 | documentation = "https://docs.rs/darling/0.20.11" |
| 7 | description = "" " |
| 8 | A proc-macro library for reading attributes into structs when |
| 9 | implementing custom derives. |
| 10 | " "" |
| 11 | license = "MIT" |
| 12 | readme = "README.md" |
| 13 | edition = "2021" |
| 14 | rust-version = "1.56" |
| 15 | exclude = ["/.travis.yml" , "/publish.sh" , "/.github/**" ] |
| 16 | |
| 17 | [badges] |
| 18 | maintenance = { status = "actively-developed" } |
| 19 | |
| 20 | [dependencies] |
| 21 | darling_core = { version = "=0.20.11" , path = "core" } |
| 22 | darling_macro = { version = "=0.20.11" , path = "macro" } |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | proc-macro2 = "1.0.86" |
| 26 | quote = "1.0.18" |
| 27 | syn = "2.0.15" |
| 28 | |
| 29 | [target.'cfg(compiletests)'.dev-dependencies] |
| 30 | rustversion = "1.0.9" |
| 31 | trybuild = "1.0.89" |
| 32 | |
| 33 | [features] |
| 34 | default = ["suggestions" ] |
| 35 | diagnostics = ["darling_core/diagnostics" ] |
| 36 | suggestions = ["darling_core/suggestions" ] |
| 37 | |
| 38 | [workspace] |
| 39 | members = ["macro" , "core" ] |
| 40 | |
| 41 | [lints.rust] |
| 42 | unexpected_cfgs = { level = "warn" , check-cfg = ['cfg(compiletests)' ] } |
| 43 | |