1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-05-10 04:17:46 +00:00
physis/Cargo.toml
Joshua Goins e751ffa765 Update dependencies, remove bitrotten code, update docs
I updated our dependencies like binrw to 0.15, which is pretty nice as
that means we no longer depend on Syn 1.x. I also finally upgraded to
bitflags 2.x, which doesn't really mean anything except we're on
better supported version.

Additionally, I removed some bitrotten code that no longer compiles.
This was mostly benchmark stuff, but since I don't actively keep track
of that I felt it was better to remove it. I can always add it back once
I'm ready to tackle that again.
2025-05-09 15:16:23 -04:00

34 lines
1 KiB
TOML
Executable file

[package]
name = "physis"
version = "0.4.0"
authors = ["Joshua Goins <josh@redstrate.com>"]
edition = "2024"
description = "Library for reading and writing FFXIV data."
license = "GPL-3.0"
repository = "https://github.com/redstrate/Physis"
keywords = ["ffxiv", "modding"]
documentation = "https://docs.xiv.zone/docs/physis/"
readme = "README.md"
[[test]]
name = "retail_test"
required-features = ["retail_testing"]
[features]
default = []
# testing only features
retail_testing = []
[dependencies]
# amazing binary parsing/writing library
binrw = { version = "0.15", features = ["std"], default-features = false }
# used for zlib compression in sqpack files
libz-rs-sys = { version = "0.5", features = ["std", "rust-allocator"], default-features = false }
# needed for half-float support which FFXIV uses in its model data
half = { version = "2.6", features = ["std"], default-features = false }
# needed for c-style bitflags used in some formats (such as tex files)
bitflags = { version = "2.9", default-features = false }