27 lines
671 B
TOML
27 lines
671 B
TOML
[package]
|
|
name = "file-srv-gui-v3"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
eframe = "0.33.3"
|
|
futures-util = "0.3.32"
|
|
human_bytes = "0.4.3"
|
|
image = { version = "0.25.10", features = ["png", "jpeg"] }
|
|
reqwest = { version = "0.13.2", features = ["stream", "json"] }
|
|
rfd = "0.17.2"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
tokio = { version = "1.50.0", features = ["rt-multi-thread", "macros"] }
|
|
egui_extras = { version = "0.33.3", features = ["all_loaders", "gif", "http"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
panic = 'abort'
|
|
opt-level = 3
|
|
overflow-checks = false
|
|
debug-assertions = false
|
|
incremental = false
|
|
rpath = false
|
|
codegen-units = 1
|
|
strip = true
|