| 1 | [package] |
| 2 | name = "bytemuck_derive" |
| 3 | description = "derive proc-macros for `bytemuck`" |
| 4 | version = "1.8.1" |
| 5 | authors = ["Lokathor <zefria@gmail.com>" ] |
| 6 | repository = "https://github.com/Lokathor/bytemuck" |
| 7 | readme = "README.md" |
| 8 | keywords = ["transmute" , "bytes" , "casting" ] |
| 9 | categories = ["encoding" , "no-std" ] |
| 10 | edition = "2018" |
| 11 | license = "Zlib OR Apache-2.0 OR MIT" |
| 12 | |
| 13 | [lib] |
| 14 | name = "bytemuck_derive" |
| 15 | proc-macro = true |
| 16 | |
| 17 | [dependencies] |
| 18 | # syn seems to have broken backwards compatibility in this version https://github.com/dtolnay/syn/issues/1194 |
| 19 | syn = "2.0.1" |
| 20 | quote = "1" |
| 21 | proc-macro2 = "1.0.60" |
| 22 | |
| 23 | [dev-dependencies] |
| 24 | bytemuck = { path = "../" , features = ["derive" ] } |
| 25 | |