mindustry logic execution, map- and schematic- parsing and rendering
-rw-r--r--lemu/Cargo.toml3
-rw-r--r--lemu/src/executor/mod.rs4
2 files changed, 1 insertions, 6 deletions
diff --git a/lemu/Cargo.toml b/lemu/Cargo.toml
index 3452163..f1ddd9e 100644
--- a/lemu/Cargo.toml
+++ b/lemu/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "lemu"
-version = "0.2.1"
+version = "0.2.2"
edition = "2021"
description = "M-LOG runner"
authors = ["bend-n <[email protected]>"]
@@ -21,7 +21,6 @@ lerr = { version = "0.1.1", optional = true }
[features]
bin = ["fimg/save", "diagnose"]
diagnose = ["rust-fuzzy-search", "lerr"]
-__send__ = []
default = ["bin"]
[[bin]]
diff --git a/lemu/src/executor/mod.rs b/lemu/src/executor/mod.rs
index d8fd6e4..a3cce26 100644
--- a/lemu/src/executor/mod.rs
+++ b/lemu/src/executor/mod.rs
@@ -96,10 +96,6 @@ pub struct Drawing<'v> {
pub buffer: VecDeque<*const DrawInstr<'v>>,
}
-// SAFETY: false
-#[cfg(feature = "__send__")]
-unsafe impl Send for Drawing<'_> {}
-
impl<'v> Drawing<'v> {
fn buffer(&mut self, i: &DrawInstr<'v>) {
self.buffer.push_back(i);