2022-12-30 14:07:39 -08:00
|
|
|
[package]
|
|
|
|
|
name = "cosmic-workspaces"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-11-16 13:36:38 -08:00
|
|
|
anyhow = "1.0.75"
|
2025-01-13 10:42:44 -08:00
|
|
|
calloop = { version = "0.14.2", features = ["executor"] }
|
2023-11-21 16:15:02 -05:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-04-30 12:49:08 -07:00
|
|
|
cosmic-bg-config = { git = "https://github.com/pop-os/cosmic-bg" }
|
2023-11-17 14:56:37 -08:00
|
|
|
cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp" }
|
2024-01-22 14:56:31 -08:00
|
|
|
env_logger = "0.11.0"
|
2022-12-30 14:07:39 -08:00
|
|
|
futures-channel = "0.3.25"
|
2025-01-13 10:42:44 -08:00
|
|
|
gbm = "0.18.0"
|
2024-10-18 13:13:53 -07:00
|
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = ["tokio", "wayland", "single-instance", "multi-window", "winit"] }
|
2023-12-13 12:41:06 -08:00
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
|
2025-01-13 10:42:44 -08:00
|
|
|
freedesktop-desktop-entry = "0.7.0"
|
2023-12-18 19:41:30 -08:00
|
|
|
freedesktop-icons = "0.2.4"
|
2023-12-11 14:06:41 -08:00
|
|
|
|
2023-11-08 15:51:12 -08:00
|
|
|
memmap2 = "0.9.0"
|
2022-12-30 14:07:39 -08:00
|
|
|
tokio = "1.23.0"
|
2024-06-12 09:17:06 -07:00
|
|
|
wayland-protocols = "0.32.1"
|
2024-03-05 12:29:33 -08:00
|
|
|
zbus = { version = "4.0.0", default-features = false, features = ["tokio"] }
|
2025-01-13 10:42:44 -08:00
|
|
|
delegate = "0.13.0"
|
|
|
|
|
itertools = "0.14.0"
|
2023-12-21 10:41:46 -08:00
|
|
|
log = "0.4.20"
|
2025-01-13 10:42:44 -08:00
|
|
|
i18n-embed-fl = "0.9.0"
|
2023-12-26 13:59:31 -08:00
|
|
|
rust-embed = "8.1.0"
|
2024-01-26 14:13:58 -08:00
|
|
|
rustix = { version = "0.38.30", features = ["fs"] }
|
2025-01-13 10:42:44 -08:00
|
|
|
calloop-wayland-source = "0.4.0"
|
2025-03-24 14:59:25 -07:00
|
|
|
aliasable = "0.1.3"
|
2025-04-15 12:34:37 -07:00
|
|
|
futures-executor = { version = "0.3.31", features = ["thread-pool"] }
|
2023-12-26 13:54:29 -08:00
|
|
|
|
|
|
|
|
[dependencies.i18n-embed]
|
2025-01-13 10:42:44 -08:00
|
|
|
version = "0.15.3"
|
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
|
2025-02-20 14:28:56 -08:00
|
|
|
|
|
|
|
|
[patch."https://github.com/pop-os/cosmic-protocols"]
|
|
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols//", branch = "main" }
|
|
|
|
|
cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols//", branch = "main" }
|