[package]
edition = "2024"
name = "structible"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A macro for defining virtual structs backed by maps"
readme = "README.md"
keywords = [
"proc-macro",
"struct",
"map",
"hashmap",
"derive",
]
categories = [
"rust-patterns",
"data-structures",
]
license = "MIT"
repository = "https://github.com/eikopf/structible"
resolver = "2"
[lib]
name = "structible"
path = "src/lib.rs"
[[test]]
name = "complex_generics"
path = "tests/complex_generics.rs"
[[test]]
name = "custom_backing"
path = "tests/custom_backing.rs"
[[test]]
name = "debug_output"
path = "tests/debug_output.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "ownership_extraction"
path = "tests/ownership_extraction.rs"
[[test]]
name = "rfc8984-location"
path = "tests/rfc8984-location.rs"
[[test]]
name = "unknown_fields"
path = "tests/unknown_fields.rs"
[dependencies.structible-macros]
version = "0.3.0"