-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (28 loc) · 868 Bytes
/
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
[package]
name = "wt_ext_gui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev]
opt-level = 2
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 16
[dependencies]
wt_blk = { git = "https://github.com/Warthunder-Open-Source-Foundation/wt_blk" }
#wt_blk = {path = "../wt_blk"}
thiserror = "^1.0"
rayon = "^1.7.0"
open = "5.0.0"
native-dialog = "0.6.4"
color-eyre = { version = "^0.6", default-features = false }
tracing = "^0.1.37"
tracing-subscriber = { version = "^0.3.16", features = ["tracing-log", "env-filter", "fmt", "std"] }
serde_json = "^1.0"
serde = { version = "^1.0", features = ["serde_derive"] }
eframe = "0.22.0"
toml = "0.7.6"
dirs = "5.0.1"
egui_extras = "0.22.0"
image = { version = "^0.24", default-features = false, features = ["png"] }