2021-12-15 17:25:15 +01:00
|
|
|
[package]
|
2024-02-07 12:33:32 +01:00
|
|
|
authors = ["Victoria Brekenfeld"]
|
2025-07-21 14:56:53 +02:00
|
|
|
edition = "2024"
|
2021-12-15 17:25:15 +01:00
|
|
|
license = "GPL-3.0-only"
|
2024-02-07 12:33:32 +01:00
|
|
|
name = "cosmic-comp"
|
|
|
|
|
version = "0.1.0"
|
2025-05-15 09:43:32 -07:00
|
|
|
rust-version = "1.85"
|
2021-12-15 17:25:15 +01:00
|
|
|
|
2023-08-29 13:49:41 -07:00
|
|
|
[workspace]
|
2025-07-21 14:54:21 +02:00
|
|
|
members = ["cosmic-comp-config"]
|
2023-08-29 13:49:41 -07:00
|
|
|
|
2021-12-15 17:25:15 +01:00
|
|
|
[dependencies]
|
2025-07-21 14:54:21 +02:00
|
|
|
anyhow = { version = "1.0.98", features = ["backtrace"] }
|
|
|
|
|
bitflags = "2.9.1"
|
|
|
|
|
bytemuck = "1.23"
|
|
|
|
|
calloop = { version = "0.14.2", features = ["executor"] }
|
|
|
|
|
cosmic-comp-config = { path = "cosmic-comp-config", features = [
|
|
|
|
|
"libdisplay-info",
|
2025-08-20 17:59:06 -04:00
|
|
|
"output",
|
2025-07-21 14:54:21 +02:00
|
|
|
] }
|
|
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic/", features = [
|
|
|
|
|
"calloop",
|
|
|
|
|
"macro",
|
|
|
|
|
] }
|
|
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", rev = "e706814", default-features = false, features = [
|
|
|
|
|
"server",
|
|
|
|
|
] }
|
2024-04-03 16:02:27 +02:00
|
|
|
cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon" }
|
2025-07-21 14:56:53 +02:00
|
|
|
cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", features = [
|
2025-07-21 14:54:21 +02:00
|
|
|
"greeter",
|
|
|
|
|
] }
|
|
|
|
|
cosmic-text = { git = "https://github.com/pop-os/cosmic-text.git", features = [
|
|
|
|
|
"shape-run-cache",
|
|
|
|
|
] }
|
|
|
|
|
libdisplay-info = "0.2.2"
|
|
|
|
|
egui = { version = "0.31.0", optional = true }
|
|
|
|
|
egui_plot = { version = "0.31.0", optional = true }
|
|
|
|
|
i18n-embed = { version = "0.16", features = [
|
|
|
|
|
"fluent-system",
|
|
|
|
|
"desktop-requester",
|
|
|
|
|
] }
|
|
|
|
|
i18n-embed-fl = "0.10"
|
|
|
|
|
iced_tiny_skia = { git = "https://github.com/pop-os/libcosmic/" }
|
|
|
|
|
indexmap = "2.10"
|
2024-02-07 12:33:32 +01:00
|
|
|
keyframe = "1.1.1"
|
2025-07-21 14:54:21 +02:00
|
|
|
libc = "0.2.174"
|
|
|
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic/", default-features = false }
|
|
|
|
|
libsystemd = { version = "0.7", optional = true }
|
|
|
|
|
log-panics = { version = "2", features = ["with-backtrace"] }
|
2025-05-15 12:05:04 -07:00
|
|
|
ordered-float = "5.0"
|
2025-07-21 14:54:21 +02:00
|
|
|
png = "0.17.16"
|
2022-07-06 23:36:25 +02:00
|
|
|
regex = "1"
|
2025-07-21 14:54:21 +02:00
|
|
|
ron = "0.10.1"
|
|
|
|
|
rust-embed = { version = "8.7", features = ["debug-embed"] }
|
2025-05-15 12:05:04 -07:00
|
|
|
sanitize-filename = "0.6.0"
|
2025-07-21 14:54:21 +02:00
|
|
|
sendfd = "0.4.4"
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
2024-02-07 12:33:32 +01:00
|
|
|
serde_json = "1"
|
2025-05-15 12:05:04 -07:00
|
|
|
thiserror = "2.0.12"
|
2025-07-21 14:54:21 +02:00
|
|
|
time = { version = "0.3.41", features = [
|
|
|
|
|
"macros",
|
|
|
|
|
"formatting",
|
|
|
|
|
"local-offset",
|
|
|
|
|
] }
|
2023-12-14 15:02:45 -08:00
|
|
|
tiny-skia = "0.11"
|
2025-07-21 14:54:21 +02:00
|
|
|
tracing = { version = "0.1.41", features = [
|
|
|
|
|
"max_level_debug",
|
|
|
|
|
"release_max_level_info",
|
|
|
|
|
] }
|
|
|
|
|
tracing-journald = "0.3.1"
|
|
|
|
|
tracing-subscriber = { version = "0.3.19", features = [
|
|
|
|
|
"env-filter",
|
|
|
|
|
"tracing-log",
|
|
|
|
|
] }
|
|
|
|
|
tracy-client = { version = "0.18.2", default-features = false }
|
|
|
|
|
wayland-backend = "0.3.10"
|
|
|
|
|
wayland-scanner = "0.31.6"
|
|
|
|
|
xcursor = "0.3.10"
|
|
|
|
|
xdg = "^3.0"
|
2023-12-07 19:53:41 +00:00
|
|
|
xdg-user = "0.2.1"
|
2024-08-21 20:20:27 -07:00
|
|
|
xkbcommon = "0.8"
|
2025-07-21 14:54:21 +02:00
|
|
|
zbus = "5.9.0"
|
2023-10-07 19:15:44 -07:00
|
|
|
profiling = { version = "1.0" }
|
2025-07-21 14:54:21 +02:00
|
|
|
rustix = { version = "1.0.8", features = ["process"] }
|
|
|
|
|
smallvec = "1.15.1"
|
|
|
|
|
rand = "0.9.2"
|
2025-05-15 12:05:04 -07:00
|
|
|
reis = { version = "0.5", features = ["calloop"] }
|
2025-03-25 16:44:55 -04:00
|
|
|
# CLI arguments
|
|
|
|
|
clap_lex = "0.7"
|
2025-07-21 14:54:21 +02:00
|
|
|
parking_lot = "0.12.4"
|
2025-07-29 15:57:38 +02:00
|
|
|
logind-zbus = { version = "5.3.2", optional = true }
|
2023-05-12 20:01:37 +02:00
|
|
|
|
|
|
|
|
[dependencies.id_tree]
|
|
|
|
|
branch = "feature/copy_clone"
|
2024-02-07 12:33:32 +01:00
|
|
|
git = "https://github.com/Drakulix/id-tree.git"
|
2021-12-15 17:25:15 +01:00
|
|
|
|
|
|
|
|
[dependencies.smithay]
|
2025-06-24 20:09:20 -07:00
|
|
|
version = "0.7.0"
|
2024-02-07 12:33:32 +01:00
|
|
|
default-features = false
|
|
|
|
|
features = [
|
2025-07-21 14:54:21 +02:00
|
|
|
"backend_drm",
|
|
|
|
|
"backend_gbm",
|
|
|
|
|
"backend_egl",
|
|
|
|
|
"backend_libinput",
|
|
|
|
|
"backend_session_libseat",
|
|
|
|
|
"backend_udev",
|
|
|
|
|
"backend_winit",
|
|
|
|
|
"backend_vulkan",
|
|
|
|
|
"backend_x11",
|
|
|
|
|
"desktop",
|
|
|
|
|
"renderer_glow",
|
|
|
|
|
"renderer_multi",
|
|
|
|
|
"renderer_pixman",
|
|
|
|
|
"wayland_frontend",
|
|
|
|
|
"xwayland",
|
2024-02-07 12:33:32 +01:00
|
|
|
]
|
2022-01-11 17:22:23 +01:00
|
|
|
|
|
|
|
|
[dependencies.smithay-egui]
|
2025-06-24 20:09:20 -07:00
|
|
|
version = "0.2.0"
|
2022-11-21 10:10:50 +01:00
|
|
|
features = ["svg"]
|
2022-01-11 17:22:23 +01:00
|
|
|
optional = true
|
|
|
|
|
|
|
|
|
|
[features]
|
2024-06-07 18:58:33 +02:00
|
|
|
debug = ["egui", "egui_plot", "smithay-egui", "anyhow/backtrace"]
|
2023-02-27 16:24:01 -08:00
|
|
|
default = ["systemd"]
|
2025-07-29 15:57:38 +02:00
|
|
|
systemd = ["libsystemd", "logind-zbus"]
|
2025-04-24 18:50:16 +02:00
|
|
|
profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client/default"]
|
2022-03-22 12:31:19 +01:00
|
|
|
|
2024-03-22 09:50:30 -07:00
|
|
|
[profile.dev.package.tiny-skia]
|
|
|
|
|
opt-level = 2
|
|
|
|
|
|
|
|
|
|
[profile.dev.package.rustybuzz]
|
|
|
|
|
opt-level = 2
|
|
|
|
|
|
|
|
|
|
[profile.dev.package.ttf-parser]
|
|
|
|
|
opt-level = 2
|
|
|
|
|
|
2022-03-22 12:31:19 +01:00
|
|
|
[profile.fastdebug]
|
|
|
|
|
debug = true
|
2024-02-07 12:33:32 +01:00
|
|
|
inherits = "release"
|
2022-03-22 12:31:19 +01:00
|
|
|
|
|
|
|
|
[profile.release]
|
2022-08-11 17:13:56 +02:00
|
|
|
lto = "fat"
|
|
|
|
|
|
2025-02-17 20:30:26 +01:00
|
|
|
[patch."https://github.com/pop-os/cosmic-protocols"]
|
2025-09-24 15:11:16 -04:00
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os//cosmic-protocols", branch = "corner-radius" }
|
|
|
|
|
cosmic-client-toolkit = { git = "https://github.com/pop-os//cosmic-protocols", branch = "corner-radius" }
|
2025-03-13 13:28:23 -07:00
|
|
|
|
2025-05-21 22:04:02 +02:00
|
|
|
[patch.crates-io]
|
2025-09-09 14:19:52 +02:00
|
|
|
smithay = { git = "https://github.com/smithay/smithay.git", rev = "eb45814" }
|