-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (23 loc) · 874 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "nuccbin"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# used for reading and writing binary files
binrw = "0.10.0"
# used for downcasting trait objects to their concrete types for serialization
downcast-rs = "1.2.0"
# used for serializing and deserializing nuccChunkBinary structs
serde = { version = "1.0.106", features = ["derive"] }
# used for writing those nuccChunkBinary structs to json
serde_json = "1.0.106"
# used converting enums to strings
strum = "0.21.0"
strum_macros = "0.21.0"
# used for searching for filepath matches in the .xfbin header
regex = "1.4.3"
# used for serde support for hex strings
hex = { version = "0.4", features = ["std", "serde"] }
# used for reading and writing xfbin files
xfbin = { path = "../xfbin-dev" }