mindustry logic execution, map- and schematic- parsing and rendering
go back to normal nightly
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | rust-toolchain.toml | 2 | ||||
| -rw-r--r-- | src/lib.rs | 3 |
4 files changed, 5 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "mindus" -version = "4.0.6" +version = "4.0.7" edition = "2021" description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)" authors = [ @@ -1,6 +1,6 @@ # mindus - + Mindus is a library for working with [Mindustry](https://github.com/Anuken/Mindustry) formats. diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 0bd7bc6..5d56faf 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2023-08-03" +channel = "nightly" @@ -5,7 +5,8 @@ unchecked_math, slice_as_chunks, slice_swap_unchecked, - let_chains + let_chains, + effects )] #![allow(clippy::missing_safety_doc, clippy::missing_const_for_fn, clippy::perf)] pub mod block; |