-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
35 lines (31 loc) · 906 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
35
[package]
name = "stove"
authors = ["spuds"]
repository = "https://github.com/bananaturtlesandwich/stove"
description = "an editor for cooked unreal engine 4 map files"
readme = "README.md"
version = "0.9.1"
edition = "2021"
[dependencies]
unreal_asset = { git = "https://github.com/astrotechies/unrealmodding", package = "unreal_asset", rev = "b1d5553" }
unpak = { version = "1.0", features = ["asset-paths"] }
glam = { version = "0.23", features = ["fast-math"] }
miniquad = "0.3"
egui = "0.22"
egui-miniquad = { git = "https://github.com/not-fl3/egui-miniquad", rev = "22a34d9"}
egui-notify = "0.7"
egui_file = "0.10"
byteorder = "1.4"
hashbrown = "0.13"
dirs = "5.0"
hex = "0.4"
[build-dependencies]
winres = "0.1"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
discord-rich-presence = "0.2"
autoupdater = "0.3"
[profile.release]
strip = true
lto = true
codegen-units = 1
panic = "abort"