-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 776 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 776 Bytes
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 = "linuxlauncher"
version = "0.1.0"
edition = "2021"
#rust-version = "1.76"
publish = false
authors = ["Confused Engineer"]
build = "src/build.rs"
[build-dependencies]
winres = "0.1"
static_vcruntime = "2.0"
[[bin]]
name = "LinuxLauncher"
path = "src/main.rs"
[dependencies]
eframe = { version = "0.31.0" , features = ["default"]}
env_logger = { version = "0.11.6", default-features = false, features = [
"auto-color",
"humantime",
] }
egui_extras = { version = "0.31.0", features = ["all_loaders"] }
image = { version = "0.25.5", features = ["jpeg", "png"] }
rust-ini = "0.21.0"
davids-standard-library = {git = "https://github.com/Confused-Engineer/davids-standard-library.git"}
[profile.release]
lto = "fat"
strip = "symbols"
codegen-units = 1