[package]
edition = "2024"
name = "struct-record"
version = "0.1.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Macro utility for defining structs with fields that exhaustively match enum variants, like a 'Record'"
readme = "README.md"
license = "MIT OR Apache-2.0"
[lib]
name = "struct_record"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.cargo-expand]
version = "1.0.121"
[dependencies.convert_case]
version = "0.11.0"
[dependencies.paste]
version = "1.0.15"
[dependencies.proc-macro2]
version = "1.0.106"
[dependencies.quote]
version = "1.0.44"
[dependencies.syn]
version = "2.0.117"