[package]
edition = "2024"
name = "cuisiner_derive"
version = "0.0.6"
authors = ["Tom Anderson <tom@ando.sh>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Derive macros to support cuisiner"
readme = "README.md"
keywords = [
"binary-encoding",
"binary-format",
"c",
"convert",
"serialization",
]
categories = [
"encoding",
"parsing",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/andogq/cuisiner"
resolver = "2"
[lib]
name = "cuisiner_derive"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "simple"
path = "tests/simple.rs"
[dependencies.proc-macro2]
version = "1.0.94"
[dependencies.quote]
version = "1.0.40"
[dependencies.strum]
version = "0.27.1"
features = ["derive"]
[dependencies.syn]
version = "2.0.100"
features = ["full"]
[dev-dependencies.syn]
version = "2.0.100"
features = [
"full",
"extra-traits",
]