aboutsummaryrefslogtreecommitdiff
path: root/azalea/build.rs
AgeCommit message (Collapse)Author
2026-01-30warn if pathfinder is running without optimizations, and other minor fixesmat
2025-05-30formatting: merge importsmat
2025-02-22update to rust edition 2024mat
2024-12-04Update Bevy and migrate to workspace dependencies and package attributes (#181)EightFactorial
* Use workspace `Cargo.toml` for dependencies and package atributes * Fix a couple clippy warnings * Update bevy, update build script, move deps to workspace, and fix clippy warnings * Remove carrots from crate versions The default behavior is the same * Remove unused dependencies Compiles and all tests pass, so it should be fine * Update codegen to use `std::sync::LazyLock` instead of `once_cell::sync::Lazy` * Update Bevy to `0.15.0-rc.3` Surprisingly little needed to be changed * Update to bevy 0.15.0 * Fix leftover merge issues * Clarify the reason the swarm can't connect * Fix duplicate lint, remove `log` dependency
2024-08-15fix ClientboundLevelParticlesPacket errors and pathfinder /particle errorsmat
2024-08-11fmtmat
2024-07-19Determine rust channel by parsing rustc output if env vars do not exist (#163)Patrick
* Determine rust channel by parsing rustc output The RUSTUP_TOOLCHAIN environment variable might not always be present. This is the case for e.g. NixOS where rust is routinely not installed via rustup, thus not setting this env var, causing build failures. Instead, build.rs will now run `rustc -V` and check if the output contains the word "nightly". * Check env vars first, fall back to rustc in $PATH * Try to check RUSTUP_TOOLCHAIN first
2023-11-18show error if user is on stable rustmat