-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (25 loc) · 910 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
[package]
name = "nw-tex"
description = "A tool to extract and rebuild Paper Mario: Sticker Star's localized texture archives"
authors = ["Darxoon"]
repository = "https://github.com/Darxoon/nw-tex"
homepage = "https://darxoon.neocities.org/p/nw-tex"
license = "Unlicense"
readme = "readme.md"
version = "1.2.0"
edition = "2021"
categories = ["command-line-utilities", "parsing", "data-structures", "game-development"]
keywords = ["paper mario", "reverse engineering"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = { version = "1.0.72", features = ["backtrace"] }
binrw = "0.14.1"
byteorder = "1.4.3"
clap = { version = "4.3.15", features = ["derive"] }
md5 = { version = "0.7.0" }
na = "0.32.2"
png = "0.17.13"
rayon = "1.8.0"
serde = { version = "1.0.193", features = ["serde_derive"] }
serde-binary = "0.5.0"
serde_yaml = "0.9.27"