1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-22 04:37:46 +00:00

Update half crate

This commit is contained in:
Joshua Goins 2022-09-15 16:34:58 -04:00
parent 49bd5987d0
commit 21b467d5e9
2 changed files with 18 additions and 3 deletions

19
Cargo.lock generated
View file

@ -118,7 +118,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213030a2b5a4e0c0892b6652260cf6ccac84827b83a85a534e178e3906c4cf1b"
dependencies = [
"ciborium-io",
"half",
"half 1.8.2",
]
[[package]]
@ -238,6 +238,12 @@ dependencies = [
"once_cell",
]
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
[[package]]
name = "either"
version = "1.8.0"
@ -256,6 +262,15 @@ version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
[[package]]
name = "half"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad6a9459c9c30b177b925162351f97e7d967c7ea8bab3b8352805327daf45554"
dependencies = [
"crunchy",
]
[[package]]
name = "hard-xml"
version = "1.13.0"
@ -447,7 +462,7 @@ dependencies = [
"crc",
"criterion",
"glam",
"half",
"half 2.1.0",
"hard-xml",
"libz-sys",
"paste",

View file

@ -36,7 +36,7 @@ bitfield-struct = "0.1.7"
paste = "1.0.7"
# needed for half-float support which FFXIV uses in it's model data
half = "1.0"
half = "2.1.0"
# needed for havok xml parsing
hard-xml = "1.13.0"