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