2022-07-19 19:29:41 -04:00
|
|
|
[package]
|
|
|
|
name = "physis"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Joshua Goins <josh@redstrate.com>"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Interact with XIV game data."
|
|
|
|
license = "GPL-3.0"
|
|
|
|
homepage = "https://xiv.zone/physis"
|
|
|
|
repository = "https://git.sr.ht/~redstrate/physis"
|
|
|
|
keywords = ["ffxiv", "modding"]
|
|
|
|
categories = ["parsing"]
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "physis_benchmark"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# criterion is not updated to 0.4 yet, which removes an unmaintained package
|
|
|
|
criterion = { git = "https://github.com/bheisler/criterion.rs", branch="version-0.4", version="0.3.5" }
|
|
|
|
|
2022-07-27 20:58:12 -04:00
|
|
|
[features]
|
|
|
|
retail_game_testing = []
|
|
|
|
|
2022-07-19 19:29:41 -04:00
|
|
|
[dependencies]
|
2022-08-06 18:15:33 -04:00
|
|
|
# used for jamcrc implementation, should eventually move away from it
|
2022-07-19 19:29:41 -04:00
|
|
|
crc = "3.0.0"
|
2022-08-06 18:15:33 -04:00
|
|
|
|
|
|
|
# amazing binary parsing/writing library
|
2022-07-19 19:29:41 -04:00
|
|
|
binrw = "0.9.2"
|
2022-08-06 18:15:33 -04:00
|
|
|
|
|
|
|
# used for zlib compression in sqpack files
|
2022-07-19 19:29:41 -04:00
|
|
|
libz-sys = { version = "1.1.8", default-features = false }
|
2022-08-06 18:15:33 -04:00
|
|
|
|
|
|
|
# nice to have features rust is lacking at the moment
|
2022-07-19 19:29:41 -04:00
|
|
|
bitfield-struct = "0.1.7"
|
|
|
|
paste = "1.0.7"
|
2022-08-06 18:15:33 -04:00
|
|
|
|
|
|
|
# needed for half-float support which FFXIV uses in it's model data
|
2022-08-06 18:22:27 -04:00
|
|
|
half = "1.0"
|
2022-08-06 18:15:33 -04:00
|
|
|
|
|
|
|
# needed for havok xml parsing
|
|
|
|
hard-xml = "1.13.0"
|
|
|
|
|
|
|
|
# needed for textools skel parsing
|
|
|
|
serde_json = "1.0"
|
2022-08-06 21:16:09 -04:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
|
|
|
# needed for file info (fiin)
|
2022-08-10 14:52:11 -04:00
|
|
|
sha1_smol = "1.0.0"
|
|
|
|
|
|
|
|
# needed for deconstructing skeleton pose matrices
|
2022-08-11 09:23:15 -04:00
|
|
|
glam = "0.21.3"
|
|
|
|
|
|
|
|
# needed for c-style bitflags used in some formats (such as tex files)
|
2022-08-11 15:03:12 -04:00
|
|
|
bitflags = "1.3"
|
|
|
|
|
|
|
|
# needed for dxt/bc decompression
|
|
|
|
texpresso = "2.0.1"
|