-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
22 lines (19 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "binary_type_cast"
version = "0.2.0"
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"]}