-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 1.07 KB
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
[package]
name = "wavebreaker_installer"
version = "2.0.0"
description = "Installer for Wavebreaker, now with 100% less web views"
edition = "2024"
repository = "https://github.com/AudiosurfResearch/Wavebreaker-Installer"
[dependencies]
eframe = { version = "0.33.3", features = ["default"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
steamlocate = "2.0.1"
reqwest = "0.11.20"
zip-extract = "0.1.2"
tracing = { version = "0.1.44", features = ["max_level_debug", "release_max_level_info"] }
tracing-subscriber = "0.3.22"
catppuccin-egui = { version = "5.7.0", default-features = false, features = ["egui33"] }
egui_extras = { version = "0.33.3", features = ["svg"] }
anyhow = "1.0.100"
lazy_async_promise = "0.6.0"
tokio = { version = "1.48.0", features = ["full"] }
open = "5.3.3"
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true # Remove debug symbols