2023-08-02 11:54:07 +02:00
|
|
|
[package]
|
|
|
|
|
name = "application"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
2025-03-14 11:56:21 -04:00
|
|
|
[features]
|
|
|
|
|
default = ["wayland"]
|
|
|
|
|
wayland = ["libcosmic/wayland"]
|
|
|
|
|
|
2023-08-02 11:54:07 +02:00
|
|
|
[dependencies]
|
2026-02-19 18:15:22 -05:00
|
|
|
env_logger = "0.11"
|
2023-08-02 11:54:07 +02:00
|
|
|
|
|
|
|
|
[dependencies.libcosmic]
|
2026-03-31 15:09:07 -04:00
|
|
|
path = "../../"
|
2024-10-16 20:36:46 -04:00
|
|
|
features = [
|
|
|
|
|
"debug",
|
|
|
|
|
"winit",
|
|
|
|
|
"tokio",
|
|
|
|
|
"xdg-portal",
|
|
|
|
|
"a11y",
|
|
|
|
|
"single-instance",
|
2025-06-10 12:22:07 -04:00
|
|
|
"surface-message",
|
2026-02-10 15:37:41 -05:00
|
|
|
"multi-window",
|
2024-10-16 20:36:46 -04:00
|
|
|
]
|