2022-12-30 14:07:39 -08:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-workspaces"
|
2026-04-29 17:48:12 +02:00
|
|
|
version = "1.0.12"
|
2025-09-10 14:18:51 +02:00
|
|
|
edition = "2024"
|
2026-04-29 17:48:12 +02:00
|
|
|
rust-version = "1.93"
|
2022-12-30 14:07:39 -08:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-12-09 19:50:02 +01:00
|
|
|
anyhow = "1.0.102"
|
|
|
|
|
calloop = { version = "0.14.4", features = ["executor"] }
|
2023-11-21 16:15:02 -05:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2026-03-13 16:35:54 -04:00
|
|
|
cosmic-bg-config = { git = "https://github.com/pop-os/cosmic-bg" }
|
|
|
|
|
cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp" }
|
2025-12-09 19:50:02 +01:00
|
|
|
env_logger = "0.11.9"
|
2025-01-13 10:42:44 -08:00
|
|
|
gbm = "0.18.0"
|
2025-04-09 13:40:08 +02:00
|
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
|
|
|
|
|
"tokio",
|
|
|
|
|
"wayland",
|
|
|
|
|
"single-instance",
|
|
|
|
|
"desktop",
|
|
|
|
|
"multi-window",
|
|
|
|
|
"winit",
|
2026-03-10 19:40:25 -04:00
|
|
|
] }
|
|
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
|
2025-05-15 10:05:57 -07:00
|
|
|
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
|
2023-12-11 14:06:41 -08:00
|
|
|
|
2025-12-09 19:50:02 +01:00
|
|
|
memmap2 = "0.9.10"
|
|
|
|
|
tokio = "1.49.0"
|
|
|
|
|
wayland-protocols = "0.32.10"
|
|
|
|
|
delegate = "0.13.5"
|
2025-01-13 10:42:44 -08:00
|
|
|
itertools = "0.14.0"
|
2025-12-09 19:50:02 +01:00
|
|
|
log = "0.4.29"
|
2025-09-10 14:18:51 +02:00
|
|
|
i18n-embed-fl = "0.10"
|
2025-12-09 19:50:02 +01:00
|
|
|
rust-embed = "8.11.0"
|
|
|
|
|
rustix = { version = "1.1.3", features = ["fs", "shm"] }
|
2025-09-10 14:18:51 +02:00
|
|
|
calloop-wayland-source = "0.4.1"
|
2025-03-24 14:59:25 -07:00
|
|
|
aliasable = "0.1.3"
|
2025-12-09 19:50:02 +01:00
|
|
|
zbus = "5.13.2"
|
|
|
|
|
tokio-stream = { version = "0.1.18", features = ["sync"] }
|
2025-09-19 13:39:47 -07:00
|
|
|
ash = { version = "0.38.0", features = ["loaded"] }
|
2025-12-09 19:50:02 +01:00
|
|
|
bytemuck = "1.25.0"
|
2026-03-13 16:35:54 -04:00
|
|
|
cosmic-panel-config = { git = "https://github.com/pop-os/cosmic-panel" }
|
2023-12-26 13:54:29 -08:00
|
|
|
|
|
|
|
|
[dependencies.i18n-embed]
|
2025-09-10 14:18:51 +02:00
|
|
|
version = "0.16"
|
2023-12-26 13:54:29 -08:00
|
|
|
features = ["fluent-system", "desktop-requester"]
|
2023-02-14 13:46:20 -08:00
|
|
|
|
2024-03-01 14:42:53 -08:00
|
|
|
[features]
|
|
|
|
|
default = ["wgpu"]
|
|
|
|
|
wgpu = ["libcosmic/wgpu"]
|
2024-04-01 14:34:22 -07:00
|
|
|
# Debugging features
|
|
|
|
|
force-shm-screencopy = []
|
2024-04-01 15:13:51 -07:00
|
|
|
no-subsurfaces = ["force-shm-screencopy"]
|
2024-04-23 13:44:59 -07:00
|
|
|
mock-backend = []
|
2024-03-01 14:42:53 -08:00
|
|
|
|
2023-02-14 13:46:20 -08:00
|
|
|
[profile.dev]
|
|
|
|
|
# Not usable at opt-level 0, at least with software renderer
|
|
|
|
|
opt-level = 1
|