2023-04-25 00:30:50 +02:00
|
|
|
[workspace]
|
2025-11-25 21:46:17 +01:00
|
|
|
members = ["cosmic-settings", "crates/*", "page", "pages/*", "subscriptions/*"]
|
2024-03-22 15:44:04 +01:00
|
|
|
default-members = ["cosmic-settings"]
|
2025-09-12 14:59:30 +02:00
|
|
|
resolver = "3"
|
2024-06-06 16:57:08 +02:00
|
|
|
|
|
|
|
|
[workspace.package]
|
2026-02-19 18:25:19 +01:00
|
|
|
rust-version = "1.90"
|
2024-03-27 17:39:26 -04:00
|
|
|
|
2024-05-08 12:59:35 +02:00
|
|
|
[workspace.dependencies]
|
2024-05-08 17:06:00 +02:00
|
|
|
cosmic-randr = { git = "https://github.com/pop-os/cosmic-randr" }
|
2026-01-10 03:47:06 +01:00
|
|
|
tokio = { version = "1.49.0", features = ["macros"] }
|
2026-04-23 17:33:22 +02:00
|
|
|
# Yoda fork: direct path dep on iced_winit in libcosmic-yoda's submodule.
|
2026-05-16 18:08:59 +02:00
|
|
|
iced_winit = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/winit", default-features = false }
|
2023-01-25 04:14:49 +01:00
|
|
|
|
2026-04-23 17:33:22 +02:00
|
|
|
# Yoda fork — libcosmic-yoda by path, replaces upstream git dep.
|
|
|
|
|
[workspace.dependencies.libcosmic-yoda]
|
2026-03-17 16:56:55 -04:00
|
|
|
features = [
|
|
|
|
|
"dbus-config",
|
|
|
|
|
"desktop",
|
|
|
|
|
"multi-window",
|
2026-04-23 17:33:22 +02:00
|
|
|
"wayland",
|
2026-03-17 16:56:55 -04:00
|
|
|
"tokio",
|
|
|
|
|
"qr_code",
|
|
|
|
|
]
|
2026-05-16 18:08:59 +02:00
|
|
|
path = "/home/lionel/Projets/COSMIC/libcosmic"
|
2023-05-30 21:49:15 +02:00
|
|
|
|
|
|
|
|
[workspace.dependencies.cosmic-config]
|
2026-05-16 18:08:59 +02:00
|
|
|
path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-config"
|
2023-05-22 17:26:14 +02:00
|
|
|
|
|
|
|
|
[workspace.dependencies.cosmic-bg-config]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-bg"
|
|
|
|
|
|
2023-08-29 14:28:05 -07:00
|
|
|
[workspace.dependencies.cosmic-comp-config]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-comp"
|
2025-08-26 19:37:51 -04:00
|
|
|
features = ["output"]
|
2023-08-29 14:28:05 -07:00
|
|
|
|
2024-10-17 19:09:58 -07:00
|
|
|
[workspace.dependencies.cosmic-idle-config]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-idle"
|
|
|
|
|
|
2023-05-22 17:26:14 +02:00
|
|
|
[workspace.dependencies.cosmic-panel-config]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-panel"
|
2023-06-24 00:01:48 +02:00
|
|
|
|
2024-01-30 00:58:53 +01:00
|
|
|
[workspace.dependencies.cosmic-randr-shell]
|
|
|
|
|
git = "https://github.com/pop-os/cosmic-randr"
|
|
|
|
|
|
2023-12-22 16:42:56 +01:00
|
|
|
[workspace.dependencies.sctk]
|
2026-01-10 03:47:06 +01:00
|
|
|
version = "0.20"
|
2023-12-22 16:42:56 +01:00
|
|
|
package = "smithay-client-toolkit"
|
2023-09-20 11:54:36 -04:00
|
|
|
|
2025-07-22 03:02:50 +02:00
|
|
|
[profile.dev]
|
2025-10-04 04:26:47 +02:00
|
|
|
opt-level = 3
|
2025-07-22 03:02:50 +02:00
|
|
|
lto = "off"
|
2024-11-14 11:20:56 -05:00
|
|
|
|
2023-06-26 23:55:17 +02:00
|
|
|
[profile.release]
|
2025-10-04 04:26:47 +02:00
|
|
|
opt-level = 3
|
2025-07-22 03:02:50 +02:00
|
|
|
lto = "thin"
|
2025-10-04 04:26:47 +02:00
|
|
|
panic = "abort"
|
2025-07-22 03:02:50 +02:00
|
|
|
|
|
|
|
|
[profile.release-with-debug]
|
|
|
|
|
inherits = "release"
|
2025-05-01 13:38:08 +02:00
|
|
|
lto = "off"
|
2025-07-22 03:02:50 +02:00
|
|
|
debug = true
|
2024-02-21 16:18:57 +01:00
|
|
|
|
2025-08-12 18:12:08 +02:00
|
|
|
# [patch.'https://github.com/pop-os/cosmic-text']
|
|
|
|
|
# cosmic-text = { git = "https://github.com/pop-os/cosmic-text//", rev = "b017d7c" }
|
2025-06-11 12:02:16 +02:00
|
|
|
|
2026-03-17 16:56:55 -04:00
|
|
|
[patch.'https://github.com/pop-os/cosmic-protocols']
|
|
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols//", rev = "d0e95be" }
|
|
|
|
|
cosmic-client-toolkit = { git = "https://github.com/pop-os/cosmic-protocols//", rev = "d0e95be" }
|
2024-05-08 17:37:22 +02:00
|
|
|
|
2025-02-26 14:51:30 +01:00
|
|
|
# [patch.'https://github.com/pop-os/cosmic-settings-daemon']
|
|
|
|
|
# cosmic-settings-config = { git = "https://github.com/pop-os/cosmic-settings-daemon//", branch = "input_nobuild" }
|
|
|
|
|
|
2026-04-23 17:33:22 +02:00
|
|
|
# Yoda fork: redirect every transitive dep that asks for pop-os/libcosmic
|
|
|
|
|
# (cosmic-bg-config, cosmic-comp-config, cosmic-idle-config, cosmic-panel-config,
|
|
|
|
|
# cosmic-settings-config, cosmic-settings-daemon-config) to our local paths so
|
|
|
|
|
# the whole graph resolves against a single cosmic-config / cosmic-theme / iced_*.
|
|
|
|
|
[patch.'https://github.com/pop-os/libcosmic']
|
2026-05-16 18:08:59 +02:00
|
|
|
cosmic-config = { path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-config" }
|
|
|
|
|
cosmic-theme = { path = "/home/lionel/Projets/COSMIC/libcosmic/cosmic-theme" }
|
|
|
|
|
iced_futures = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/futures" }
|
|
|
|
|
iced_winit = { path = "/home/lionel/Projets/COSMIC/libcosmic/iced/winit" }
|
2024-09-13 21:45:49 +02:00
|
|
|
|
2026-05-25 11:34:55 +02:00
|
|
|
[patch.'https://github.com/pop-os/cosmic-text.git']
|
|
|
|
|
cosmic-text = { path = "../cosmic-text" }
|
|
|
|
|
|
2026-05-23 20:49:24 +02:00
|
|
|
# Yoda wayland cut v5: redirect window_clipboard to the local fork
|
|
|
|
|
# (x11 gated behind opt-in feature).
|
|
|
|
|
[patch.'https://forge.aditua.com/leyoda/window_clipboard.git']
|
2026-05-16 18:08:59 +02:00
|
|
|
window_clipboard = { path = "/home/lionel/Projets/COSMIC/window_clipboard" }
|
|
|
|
|
dnd = { path = "/home/lionel/Projets/COSMIC/window_clipboard/dnd" }
|
|
|
|
|
mime = { path = "/home/lionel/Projets/COSMIC/window_clipboard/mime" }
|
2026-04-24 07:09:49 +02:00
|
|
|
|
2026-03-17 16:56:55 -04:00
|
|
|
[patch.crates-io]
|
|
|
|
|
atspi = { git = "https://github.com/wash2/atspi" }
|
|
|
|
|
atspi-common = { git = "https://github.com/wash2/atspi" }
|