forked from max_ag/wayland_panel
23 lines
555 B
TOML
23 lines
555 B
TOML
[package]
|
|
name = "wayland_panel"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
chrono = "0.4.44"
|
|
iced = { version = "0.14.0", default-features = false, features = ["wgpu", "wayland", "tokio"] }
|
|
iced_layershell = { version = "0.15.0", default-features = false }
|
|
tokio = { version = "1.50.0", features = ["time"] }
|
|
winit = { version = "0.30.12", default-features = false, features = ["wayland"] }
|
|
zbus = "5.14.0"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
panic = "abort"
|
|
debug = false
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|