mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'lemu/Cargo.toml')
| -rw-r--r-- | lemu/Cargo.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lemu/Cargo.toml b/lemu/Cargo.toml new file mode 100644 index 0000000..09a1c48 --- /dev/null +++ b/lemu/Cargo.toml @@ -0,0 +1,29 @@ +[package] +name = "lemu" +version = "0.1.0" +edition = "2021" +description = "M-LOG runner" +authors = ["bend-n <[email protected]>"] +repository = "https://github.com/bend-n/mindus.git" +license = "MIT" +readme = "README.md" +keywords = ["mindustry", "logic", "emulator", "executor"] + +[dependencies] +thiserror = "1.0" +enum_dispatch = "0.3" +fimg = { version = "0.4", default-features = false } +logos = "0.13.0" +yumy = { version = "0.2.1", optional = true } +rust-fuzzy-search = { version = "0.1.1", optional = true } + +[features] +bin = ["fimg/save", "diagnose"] +diagnose = ["rust-fuzzy-search", "yumy"] +default = ["bin"] + +[[bin]] +name = "lemu" +doc = false +required-features = ["bin"] +path = "src/main.rs" |