diff --git a/Cargo.lock b/Cargo.lock index 8bba524..5e73ae1 100755 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/Cargo.toml b/Cargo.toml index 99648dc..28aa7e6 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"