mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -1,6 +1,6 @@ [package] name = "mindus" -version = "1.4.8" +version = "1.4.9" edition = "2021" description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)" authors = [ @@ -16,8 +16,7 @@ flate2 = { version = "1.0", features = ["zlib"], default-features = false } base64 = "0.21" paste = "1.0" strconv = "0.1" -# png feature not needed; only for binary. todo seperate bin -image = { version = "0.24", features = ["png"], default-features = false } +image = { version = "0.24", features = [], default-features = false } color-hex = "0.2" thiserror = "1.0" bobbin-bits = "0.1" @@ -27,14 +26,17 @@ phf = { version = "0.11", features = ["macros"] } [features] schem_shadow = ["dep:blurslice"] map_shadow = ["dep:blurslice"] -default = ["schem_shadow", "map_shadow"] +bin = ["image/png"] +default = ["schem_shadow", "bin"] [build-dependencies] image = { version = "0.24", features = ["png"], default-features = false } walkdir = "2" [[bin]] -name = "plandustry" +name = "mindus" +doc = false +required-features = ["bin"] path = "src/exe/mod.rs" [profile.release] |