26 lines
778 B
TOML
26 lines
778 B
TOML
#![feature(let_chains)]
|
|
[package]
|
|
name = "reversed-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"], 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.15", features = [
|
|
# "blocking",
|
|
"gzip",
|
|
"json"] }
|
|
|
|
[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.
|