1 | [package] |
2 | name = "darling_macro" |
3 | version = "0.20.11" |
4 | authors = ["Ted Driggs <ted.driggs@outlook.com>" ] |
5 | repository = "https://github.com/TedDriggs/darling" |
6 | description = "" " |
7 | Internal support for a 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 | [dependencies] |
15 | quote = "1.0.18" |
16 | syn = "2.0.15" |
17 | darling_core = { version = "=0.20.11" , path = "../core" } |
18 | |
19 | [lib] |
20 | proc-macro = true |
21 | |