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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "mindus"
version = "1.4.0"
edition = "2021"
description = "A library for working with mindustry data formats (eg schematics and maps) (fork of plandustry)"
authors = [
  "KosmosPrime <[email protected]>",
  "bend-n <[email protected]>",
]
repository = "https://github.com/bend-n/mindus.git"
license = "GPL-3.0"
exclude = [".github/", "items.py"]


[dependencies]
flate2 = { version = "1.0", features = ["zlib"], default-features = false }
base64 = "0.21.2"
paste = "1.0.12"
strconv = "0.1"
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"
tinyrand-std = "0.5.0"
dashmap = "5.4.0"
fast_image_resize = "2.7.3"
thiserror = "1.0.41"
bobbin-bits = "0.1.1"
blurslice = "0.1.0"

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

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

[profile.release]
debug = 2
opt-level = 3
lto = true
incremental = true

[dev-dependencies]
diff = "0.1"