| 1 | [package] |
| 2 | name = "darling_core" |
| 3 | version = "0.20.11" |
| 4 | authors = ["Ted Driggs <ted.driggs@outlook.com>" ] |
| 5 | repository = "https://github.com/TedDriggs/darling" |
| 6 | description = "" " |
| 7 | Helper crate for proc-macro library for reading attributes into structs when |
| 8 | implementing custom derives. Use https://crates.io/crates/darling in your code. |
| 9 | " "" |
| 10 | license = "MIT" |
| 11 | edition = "2021" |
| 12 | rust-version = "1.56" |
| 13 | |
| 14 | [features] |
| 15 | diagnostics = [] |
| 16 | suggestions = ["strsim" ] |
| 17 | |
| 18 | [dependencies] |
| 19 | ident_case = "1.0.1" |
| 20 | proc-macro2 = "1.0.86" |
| 21 | quote = "1.0.18" |
| 22 | syn = { version = "2.0.15" , features = ["full" , "extra-traits" ] } |
| 23 | fnv = "1.0.7" |
| 24 | strsim = { version = "0.11.1" , optional = true } |
| 25 | |