Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lemu/Cargo.toml')
| -rw-r--r-- | lemu/Cargo.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lemu/Cargo.toml b/lemu/Cargo.toml new file mode 100644 index 0000000..551d41f --- /dev/null +++ b/lemu/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "lemu" +version = "0.2.22" +edition = "2024" +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.52", default-features = false } +logos = "0.14.0" +rust-fuzzy-search = { version = "0.1.1", optional = true } +beef = "0.5" +lerr = { version = "0.1.5", optional = true } +comat = { version = "0.1.2", optional = true } +vecto = "0.1.1" +phf = { version = "0.12.1", features = ["macros"] } +atools = "0.1.7" +car = "0.1.2" + +[features] +debug = ["comat"] +bin = ["fimg/save", "diagnose"] +diagnose = ["rust-fuzzy-search", "lerr", "comat"] +default = ["bin"] + +[[bin]] +name = "lemu" +doc = false +required-features = ["bin"] +path = "src/main.rs" |