| 1 | [package] |
|---|---|
| 2 | name = "smart-default" |
| 3 | description = "Rust custom-derive macro for Default with more control on the fields" |
| 4 | version = "0.7.1" |
| 5 | edition = "2021" |
| 6 | authors = ["IdanArye <idanarye@gmail.com>"] |
| 7 | license = "MIT" |
| 8 | repository = "https://github.com/idanarye/rust-smart-default" |
| 9 | documentation = "https://idanarye.github.io/rust-smart-default/" |
| 10 | readme = "README.md" |
| 11 | keywords = ["default"] |
| 12 | |
| 13 | [lib] |
| 14 | proc-macro = true |
| 15 | |
| 16 | [dependencies] |
| 17 | syn = "2" |
| 18 | quote = "1" |
| 19 | proc-macro2 = "1" |
| 20 |
