mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,6 +1,6 @@ [package] name = "mindus" -version = "1.0.8" +version = "1.1.0" edition = "2021" description = "A library for working with mindustry data formats (eg schematics) (fork of plandustry)" authors = [ @@ -21,6 +21,12 @@ image = { version = "0.24.6", features = ["png"], default-features = false } const-str = "0.5.5" color-hex = "0.2.0" zip = { version = "0.6.6", features = ["zstd"], default-features = false } +tinyrand = "0.5.0" +seq-macro = "0.3.4" +tinyrand-std = "0.5.0" +dashmap = "5.4.0" +fast_image_resize = "2.7.3" +thiserror = "1.0.41" [build-dependencies] zip = { version = "0.6.6", features = ["zstd"], default-features = false } @@ -34,3 +40,4 @@ path = "src/exe/mod.rs" debug = 2 opt-level = 3 lto = true +incremental = true |