32 lines
763 B
TOML
32 lines
763 B
TOML
|
[package]
|
||
|
name = "luncher"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
egui = { version = "0.30.0", features = ["deadlock_detection", "persistence"] }
|
||
|
eframe = { version = "0.30.0", features = ["persistence"] }
|
||
|
ehttp = { version = "0.5.0", features = ["streaming"] }
|
||
|
|
||
|
egui_extras = { version = "0.30.0", features = ["image"] }
|
||
|
egui-phosphor = { version = "0.8.0", features = ["fill"] }
|
||
|
egui_flex = "0.2.0"
|
||
|
|
||
|
dark-light = "2.0.0"
|
||
|
rfd = "0.15.2"
|
||
|
|
||
|
toml = "0.8.12"
|
||
|
serde = "1.0.201"
|
||
|
serde_derive = "1.0.201"
|
||
|
serde_json = "1.0.135"
|
||
|
|
||
|
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
||
|
|
||
|
directories = "6.0.0"
|
||
|
|
||
|
blake3 = "1.5.5"
|
||
|
|
||
|
image = { version = "0.25.5", features = ["png"] }
|
||
|
|
||
|
[profile.release]
|
||
|
strip="symbols"
|