Skip to content

Commit c2a192c

Browse files
committed
Rename crate to Mindy from mindustry-rs
1 parent 417cab5 commit c2a192c

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "mindustry-rs"
2+
name = "mindy"
33
version = "0.1.0"
44
edition = "2024"
55
rust-version = "1.88"

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# mindustry-rs
1+
# Mindy
22

3-
Rust tools for Mindustry.
3+
A Rust library for emulating Mlog (the logic system from [Mindustry](https://mindustrygame.github.io/)).
44

55
## mlogv32
66

@@ -18,3 +18,13 @@ samply record target/profiling/mlogv32.exe schematics/mlogv32.msch --bin path/to
1818
```sh
1919
cargo bench --features mlogv32 --bench coremark -- --nocapture
2020
```
21+
22+
## Why this name?
23+
24+
Just add Rust!
25+
26+
## Attribution
27+
28+
This crate reimplements code from [Mindustry](https://github.com/Anuken/Mindustry) and [Arc](https://github.com/Anuken/Arc) by [Anuken](https://github.com/Anuken). Mindustry is an excellent game, please go buy and play it :)
29+
30+
The data in `mindy::types::content` is generated from [mimex-data](https://github.com/cardillan/mimex-data) by [Cardillan](https://github.com/cardillan).

src/bin/mlog.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::{error::Error, time::Instant};
22

33
use clap::Parser;
44
use clap_stdin::FileOrStdin;
5-
use mindustry_rs::{
5+
use mindy::{
66
types::{Object, ProcessorConfig, ProcessorLinkConfig},
77
vm::{
88
Building, BuildingData, LogicVMBuilder,

src/bin/mlogv32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use cursive::{
2424
};
2525
use indicatif::ProgressIterator;
2626
use itertools::Itertools;
27-
use mindustry_rs::{
27+
use mindy::{
2828
types::{Object, PackedPoint2, ProcessorConfig, Schematic},
2929
vm::{
3030
Building, BuildingData, LObject, LValue, LVar, LogicVM, LogicVMBuilder,

0 commit comments

Comments
 (0)