mindustry logic execution, map- and schematic- parsing and rendering
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "plandustry"
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"
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" }
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 }

[build-dependencies]
zip = { version = "0.6.6", features = ["zstd"], default-features = false }
walkdir = "2"


[[bin]]
name = "plandustry"
path = "src/exe/mod.rs"