-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (53 loc) · 1.51 KB
/
Cargo.toml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "vox-uristi"
version = "0.15.1"
edition = "2021"
[features]
default = ["gui", "self-update"]
gui = ["eframe", "opener", "rfd"]
dev = ["protobuf-json-mapping"]
self-update = ["reqwest"]
[dependencies]
anyhow = "1.0.93"
bitflags = "2.6.0"
clap = { version = "4.5.20", features = ["derive"] }
derive_more = "0.99.18"
dfhack-remote = "0.9.0"
dot_vox = { git = "https://github.com/dust-engine/dot_vox.git", branch = "master" } # unreleased ability to write materials
easy-ext = "1.0.2"
eframe = { version = "0.27.1", features = ["persistence"], optional = true }
glob-match = "0.2.1"
include_dir = { version = "0.7.4", features = ["glob"] }
indicatif = "0.17.8"
itertools = "0.12.1"
lazy_static = "1.5.0"
num-integer = "0.1.46"
num_enum = "0.7.3"
opener = { version = "0.7.2", features = ["reveal"], optional = true }
palette = "0.7.6"
protobuf = { version = "=3.4.0" }
protobuf-json-mapping = { version = "=3.4.0", optional = true }
rand = "0.8.5"
reqwest = { version = "0.12.9", features = [
"blocking",
"json",
], optional = true }
rfd = { version = "0.14.1", optional = true }
rgb = "0.8.50"
semver = "1.0.23"
serde = { version = "1.0.214", features = ["derive"] }
serde_yaml = "0.9.34"
strum = { version = "0.26.3", features = ["derive"] }
tracing-subscriber = "0.3.18"
[build-dependencies]
image = "0.25.5"
[target.'cfg(windows)'.build-dependencies]
winres = "0.1"
[package.metadata.winres]
ProductName = "Vox Uristi"
[profile.release]
#debug = true
strip = true
lto = true
opt-level = "z"
codegen-units = 1