cosmic-workspaces/Cargo.toml

63 lines
1.9 KiB
TOML
Raw Normal View History

2022-12-30 14:07:39 -08:00
[package]
name = "cosmic-workspaces"
version = "0.1.0"
edition = "2024"
2022-12-30 14:07:39 -08:00
[dependencies]
anyhow = "1.0.99"
calloop = { version = "0.14.3", features = ["executor"] }
2023-11-21 16:15:02 -05:00
clap = { version = "4", features = ["derive"] }
cosmic-bg-config = { git = "https://github.com/pop-os/cosmic-bg" }
cosmic-comp-config = { git = "https://github.com/pop-os/cosmic-comp" }
env_logger = "0.11.8"
futures-channel = "0.3.31"
2025-01-13 10:42:44 -08:00
gbm = "0.18.0"
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
"tokio",
"wayland",
"single-instance",
"desktop",
"multi-window",
"winit",
] }
2023-12-13 12:41:06 -08:00
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
freedesktop-icons = { package = "cosmic-freedesktop-icons", git = "https://github.com/pop-os/freedesktop-icons" }
memmap2 = "0.9.8"
tokio = "1.47.1"
wayland-protocols = "0.32.9"
delegate = "0.13.4"
2025-01-13 10:42:44 -08:00
itertools = "0.14.0"
log = "0.4.28"
i18n-embed-fl = "0.10"
rust-embed = "8.7.2"
rustix = { version = "1.1.2", features = ["fs", "shm"] }
calloop-wayland-source = "0.4.1"
aliasable = "0.1.3"
futures-executor = { version = "0.3.31", features = ["thread-pool"] }
zbus = "5.9.0"
2025-09-22 11:49:06 -07:00
tokio-stream = { version = "0.1.17", features = ["sync"] }
ash = { version = "0.38.0", features = ["loaded"] }
bytemuck = "1.23.2"
cosmic-panel-config = { git = "https://github.com/pop-os/cosmic-panel" }
2023-12-26 13:54:29 -08:00
[dependencies.i18n-embed]
version = "0.16"
2023-12-26 13:54:29 -08:00
features = ["fluent-system", "desktop-requester"]
[features]
default = ["wgpu"]
wgpu = ["libcosmic/wgpu"]
# Debugging features
force-shm-screencopy = []
no-subsurfaces = ["force-shm-screencopy"]
mock-backend = []
[profile.dev]
# Not usable at opt-level 0, at least with software renderer
opt-level = 1
[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" }