From d70b5590374404bf4b859755a9c423d09d8f6489 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 14 Jul 2025 20:47:46 -0400 Subject: [PATCH] Fix Recast build --- Cargo.lock | 6 +++--- Cargo.toml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19fec6c..2096055 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1583,9 +1583,9 @@ dependencies = [ [[package]] name = "crc32fast" -version = "1.4.2" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" dependencies = [ "cfg-if", ] @@ -3627,7 +3627,7 @@ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" [[package]] name = "recastnavigation-sys" version = "1.0.3" -source = "git+https://github.com/redstrate/recastnavigation-rs-sys#e24975b0bfac9014b2c33bdeb011f3c7107286fc" +source = "git+https://github.com/redstrate/recastnavigation-rs-sys#8f35a7b5869ff737e9d84419ad9edf78f663f49f" dependencies = [ "bindgen 0.72.0", "cc", diff --git a/Cargo.toml b/Cargo.toml index 79223dd..988692f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -101,9 +101,6 @@ bevy = { version = "0.16", features = ["std", "bevy_gizmos", "x11"], default-features = false, optional = true } -# for navimesh generation -recastnavigation-sys = { git = "https://github.com/redstrate/recastnavigation-rs-sys", features = ["recast", "detour"] } - [target.'cfg(not(target_family = "wasm"))'.dependencies] # Used for the web servers axum = { version = "0.8", features = ["json", "tokio", "http1", "form", "query", "multipart"], default-features = false } @@ -141,3 +138,6 @@ tower-http = { version = "0.6", features = ["fs", "cors"] } # For obtaining SHA1 hashes of game components sha1_smol = { version = "1.0" } + +# for navimesh generation +recastnavigation-sys = { git = "https://github.com/redstrate/recastnavigation-rs-sys", features = ["recast", "detour"] }