binary_type_cast 0.1.2

A Rust crate for simplifying the process of parsing binary file data into various Rust data types using the TypeCast macro.
Documentation
[package]
name = "binary_type_cast"
version = "0.1.2"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["cast", "type", "binary", "endian", "bytes"]
categories = ["parsing","data-structures","encoding"]
description = "A Rust crate for simplifying the process of parsing binary file data into various Rust data types using the TypeCast macro."
repository = "https://github.com/RodogInfinite/binary_type_cast"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
proc-macro = true

[dependencies]
nom = "7.1.1"
serde = {version = "1.0.147", features = ["derive"]}
serde-xml-rs = "0.6.0"
proc-macro2 = "1.0.47"
quote = "1.0.26"
syn = {version = "1.0.102", features = ["extra-traits","derive"]}