mindustry logic execution, map- and schematic- parsing and rendering
fix
| -rw-r--r-- | mindus/Cargo.toml | 2 | ||||
| -rw-r--r-- | mindus/src/data/renderer.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mindus/Cargo.toml b/mindus/Cargo.toml index 502eda4..67c80d0 100644 --- a/mindus/Cargo.toml +++ b/mindus/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mindus" -version = "5.0.37" +version = "5.0.38" edition = "2024" description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)" authors = [ diff --git a/mindus/src/data/renderer.rs b/mindus/src/data/renderer.rs index 23a7e96..281264a 100644 --- a/mindus/src/data/renderer.rs +++ b/mindus/src/data/renderer.rs @@ -13,7 +13,7 @@ use crate::{ block::Rotation, data::map::{ThinBloc, ThinMapData}, }; -use atools::ArrayTools; +use atools::prelude::*; use either::Either; use fimg::{BlendingOverlay, BlendingOverlayAt, uninit}; use std::hint::unlikely; |