[package]
name = "struct_as_array2"
version = "0.3.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/Affinator/struct_as_array.git"
keywords = ["derive", "struct", "array", "iterator"]
authors = ["Affinator <hendrik@decke.online>"]
description = "A Rust library that allows you to represent the structure as an array. Ported from https://github.com/Nikitamuraviev10/struct_as_array.git to proc_macro2, syn 2.0 and quote 1.0"
homepage = "https://github.com/Affinator/struct_as_array.git"
documentation = "https://docs.rs/struct_as_array2"
readme = "README.md"
include = [
"**/*.rs",
"Cargo.toml",
]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
syn = {version = "2.0", features = ["extra-traits"]}
quote = "1.0"