-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 1.05 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
[package]
name = "hoi4_province_editor"
version = "0.3.4"
authors = ["ScottyThePilot <scotty.codes@gmail.com>"]
edition = "2021"
description = "Map editor application for Hearts of Iron IV"
readme = "README.md"
repository = "https://github.com/ScottyThePilot/hoi4_province_editor"
license = "MIT"
[dependencies]
ccl-fxhash = "3.0"
chrono = "0.4"
color-backtrace = "0.5"
dunce = "1.0"
geo = "0.20"
glutin = "0.26"
image = { version = "~0.24.9", features = ["bmp", "png", "rayon"], default-features = false }
itertools = "0.10"
lazy_static = "1.4"
native-dialog = "0.6"
once_cell = "1.8"
piston = "0.53"
piston2d-graphics = { version = "0.42", features = ["glyph_cache_rusttype"] }
piston2d-opengl_graphics = "0.81"
pistoncore-glutin_window = "0.70"
rand = { version = "0.8", features = ["small_rng"] }
rayon = "1.10"
rusttype = "0.9"
serde = { version = "1.0", features = ["derive"] }
termcolor = "1.1"
thiserror = "1.0"
toml = "0.5"
vecmath = "1.0"
zip = "0.6"
[profile.dev]
opt-level = 1
debug = 2
[profile.release]
opt-level = 3
debug = 1
[features]
debug-mode = []