This adds a macro that helps deserialize structs when their properties & types are known ahead of time. It's sole job is gluing different binrw macros together so I don't have to. The nice thing about this is that you have more direct access to the underlying data.
9 lines
265 B
TOML
9 lines
265 B
TOML
[package]
|
|
name = "ireko"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
flate2 = { version = "1.0", features = ["zlib-ng"], default-features = false }
|
|
binrw = { version = "0.14", features = ["std"], default-features = false }
|
|
paramacro = { path = "paramacro" }
|