mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,6 +1,6 @@ [package] name = "mindus" -version = "1.5.2" +version = "2.0.0" edition = "2021" description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)" authors = [ @@ -20,14 +20,12 @@ image = { version = "0.24", features = [], default-features = false } color-hex = "0.2" thiserror = "1.0" bobbin-bits = "0.1" -blurslice = { version = "0.1", optional = true } +blurslice = { version = "0.1" } phf = { version = "0.11", features = ["macros"] } [features] -schem_shadow = ["dep:blurslice"] -map_shadow = ["dep:blurslice"] bin = ["image/png"] -default = ["schem_shadow", "bin"] +default = ["bin"] [build-dependencies] image = { version = "0.24", features = ["png"], default-features = false } |