mindustry logic execution, map- and schematic- parsing and rendering
go back to normal nightly
bendn 2023-08-23
parent 48c498b · commit 740bd08
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
-rw-r--r--rust-toolchain.toml2
-rw-r--r--src/lib.rs3
4 files changed, 5 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e012f52..17506eb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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 = [
diff --git a/README.md b/README.md
index ee2f330..28e1a26 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# mindus
-![ESRV](https://img.shields.io/badge/esrv-nightly_2023_08_03-blue?style=for-the-badge&logo=rust)
+![MSRV](https://img.shields.io/badge/msrv-nightly-blue?style=for-the-badge&logo=rust)
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"
diff --git a/src/lib.rs b/src/lib.rs
index c68b69a..e13c4b0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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;