rooms-launcher/Cargo.toml
Yuhki 0ae31d8627 Update dependencies and refactor code for improved functionality and performance
- Added new dependencies including `aes`, `bzip2`, `zip`, and others in `Cargo.lock`.
- Updated existing dependencies to their latest versions.
- Refactored image handling in `video.rs` for better readability and performance.
- Enhanced game installation logic in `installer.rs` to support new game types.
- Introduced settings management in the application state.
- Improved error handling and logging throughout the codebase.
- Cleaned up unused code and optimized existing functions for better efficiency.
2025-07-09 10:27:17 +02:00

27 lines
792 B
TOML

#![feature(let_chains)]
[package]
name = "rooms-launcher"
version = "0.5.0"
edition = "2024"
[dependencies]
directories = "6.0.0"
iced = { git = "https://github.com/RabbyDevs/iced.git", features = ["tokio", "wgpu", "image", "crisp"], default-features = false }
image = "0.25.6"
serde = { version = "1.0.219", features = ["serde_derive"] }
serde_json = "1.0.140"
iced_video_player = {path = "./iced_video_player"}
url = "2.5.4"
strum = "0.27.1"
strum_macros = "0.27.1"
reqwest = { version = "0.12.22", features = [
# "blocking",
"gzip",
"json"] }
zip = "4.2.0"
[profile.release]
strip = true # Automatically strip symbols from the binary.
lto = true # Link-time optimization.
opt-level = 3 # Optimize for speed.
codegen-units = 1 # Maximum size reduction optimizations.