-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
27 lines (21 loc) · 850 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
[package]
name = "minedlauncher-bootstrap"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "bootstrap"
path = "src/bootstrapper-rs/main.rs"
[dependencies]
windows = { version = "0.42", features = [ "Win32_UI_Shell", "Win32_Foundation", "Win32_UI_WindowsAndMessaging" ] }
[build-dependencies]
winresource = "0.1.17"
[package.metadata.winres]
ProductName = "MinEdLauncher.Bootstrap"
FileDescription = "Launches MinEdLauncher. Used in conjunction with the Epic platform."
[profile.release]
opt-level = 'z' # Optimize for size.
lto = true # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary