mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -1,17 +1,20 @@ [package] -name = "plandustry" +name = "mindus" version = "1.0.1" edition = "2021" -description = "A command-line tool for working with Mindustry schematics" -authors = ["KosmosPrime <[email protected]>"] -repository = "https://github.com/KosmosPrime/plandustry.git" +description = "A library for working with mindustry data formats (eg schematics) (fork of plandustry)" +authors = [ + "KosmosPrime <[email protected]>", + "bend-n <[email protected]>", +] +repository = "https://github.com/bend-n/mindus.git" license = "GPL-3.0" [dependencies] flate2 = { version = "1.0", features = ["zlib"], default-features = false } base64 = "0.21.2" paste = "1.0.12" -strconv = { path = "strconv" } +strconv = "0.1" image = { version = "0.24.6", features = ["png"], default-features = false } const-str = "0.5.5" color-hex = "0.2.0" |