2020-08-21 01:04:36 +00:00
|
|
|
[package]
|
|
|
|
name = "bytemuck_derive"
|
2020-08-21 01:05:59 +00:00
|
|
|
description = "derive proc-macros for `bytemuck`"
|
2023-09-05 21:15:09 +00:00
|
|
|
version = "1.5.0"
|
2020-08-21 01:04:36 +00:00
|
|
|
authors = ["Lokathor <zefria@gmail.com>"]
|
|
|
|
repository = "https://github.com/Lokathor/bytemuck"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["transmute", "bytes", "casting"]
|
|
|
|
categories = ["encoding", "no-std"]
|
|
|
|
edition = "2018"
|
|
|
|
license = "Zlib OR Apache-2.0 OR MIT"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "bytemuck_derive"
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2023-01-29 23:41:40 +00:00
|
|
|
# syn seems to have broken backwards compatibility in this version https://github.com/dtolnay/syn/issues/1194
|
2023-03-21 19:52:18 +00:00
|
|
|
syn = "2.0.1"
|
2020-08-28 03:27:48 +00:00
|
|
|
quote = "1"
|
2023-07-25 22:15:01 +00:00
|
|
|
proc-macro2 = "1.0.60"
|
2020-08-21 01:04:36 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-03-29 23:01:02 +00:00
|
|
|
bytemuck = { path = "../", features = ["derive"] }
|