2022-12-23 15:14:15 -05:00
|
|
|
[workspace]
|
2024-03-14 18:47:41 +01:00
|
|
|
default-members = ["cosmic-applets", "cosmic-panel-button"]
|
2022-12-23 15:14:15 -05:00
|
|
|
members = [
|
|
|
|
|
"cosmic-app-list",
|
2024-07-17 14:06:08 -04:00
|
|
|
"cosmic-app-list/cosmic-app-list-config",
|
2024-03-14 18:47:41 +01:00
|
|
|
"cosmic-applets",
|
2022-12-23 15:14:15 -05:00
|
|
|
"cosmic-applet-audio",
|
|
|
|
|
"cosmic-applet-battery",
|
2023-02-08 18:38:09 -05:00
|
|
|
"cosmic-applet-bluetooth",
|
2024-03-04 13:08:52 -05:00
|
|
|
"cosmic-applet-minimize",
|
2022-12-23 15:14:15 -05:00
|
|
|
"cosmic-applet-network",
|
|
|
|
|
"cosmic-applet-notifications",
|
|
|
|
|
"cosmic-applet-power",
|
2023-01-03 14:36:56 -08:00
|
|
|
"cosmic-applet-status-area",
|
2023-09-17 02:30:40 -07:00
|
|
|
"cosmic-applet-tiling",
|
2022-12-23 15:14:15 -05:00
|
|
|
"cosmic-applet-time",
|
|
|
|
|
"cosmic-applet-workspaces",
|
2023-02-17 20:05:42 -08:00
|
|
|
"cosmic-panel-button",
|
2024-04-11 11:24:58 +02:00
|
|
|
"cosmic-applet-input-sources",
|
2024-11-01 08:34:29 -04:00
|
|
|
"cosmic-applet-a11y",
|
2025-05-09 13:27:22 -06:00
|
|
|
"cosmic-applets-config",
|
2022-12-23 15:14:15 -05:00
|
|
|
]
|
|
|
|
|
|
2025-08-12 23:09:49 +02:00
|
|
|
resolver = "3"
|
2023-06-07 13:43:49 -06:00
|
|
|
|
2023-07-20 14:57:51 -07:00
|
|
|
[workspace.dependencies]
|
2025-10-08 16:36:27 +02:00
|
|
|
anyhow = "1.0.100"
|
|
|
|
|
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "d0e95be" }
|
2025-05-09 19:17:28 -06:00
|
|
|
cosmic-applets-config = { path = "cosmic-applets-config" }
|
2023-09-17 02:30:40 -07:00
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = [
|
|
|
|
|
"client",
|
2025-10-08 16:36:27 +02:00
|
|
|
], rev = "d0e95be" }
|
2025-08-12 19:59:56 +02:00
|
|
|
cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features = false }
|
|
|
|
|
# cosmic-time = { path = "../cosmic-time", default-features = false ] }
|
2024-07-12 16:30:14 -04:00
|
|
|
|
2024-03-14 21:43:11 +01:00
|
|
|
futures = "0.3"
|
|
|
|
|
futures-util = "0.3"
|
2025-08-12 23:09:49 +02:00
|
|
|
i18n-embed = { version = "0.16.0", features = [
|
2024-04-15 18:37:00 -04:00
|
|
|
"fluent-system",
|
|
|
|
|
"desktop-requester",
|
|
|
|
|
] }
|
2025-08-12 23:09:49 +02:00
|
|
|
i18n-embed-fl = "0.10"
|
2024-07-17 08:54:34 -04:00
|
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
|
2023-09-17 02:30:40 -07:00
|
|
|
"applet",
|
2023-11-21 17:29:49 -05:00
|
|
|
"applet-token",
|
2025-06-27 12:42:18 -04:00
|
|
|
"dbus-config",
|
2024-10-30 22:51:08 -04:00
|
|
|
"multi-window",
|
2023-09-17 02:30:40 -07:00
|
|
|
"tokio",
|
|
|
|
|
"wayland",
|
2024-10-16 18:52:34 -04:00
|
|
|
"desktop-systemd-scope",
|
2024-10-30 22:51:08 -04:00
|
|
|
"winit",
|
2023-09-17 02:30:40 -07:00
|
|
|
] }
|
2025-12-19 12:08:59 +01:00
|
|
|
rust-embed = "8.9.0"
|
|
|
|
|
rust-embed-utils = "8.9.0"
|
2025-10-22 02:33:30 +00:00
|
|
|
rustc-hash = "2.1"
|
2025-10-08 16:36:27 +02:00
|
|
|
rustix = { version = "1.1", features = ["fs", "process"] }
|
2026-01-13 17:21:37 +01:00
|
|
|
zbus = { version = "5.13.1", default-features = false, features = ["tokio"] }
|
2023-11-21 17:29:49 -05:00
|
|
|
tracing = "0.1"
|
2025-12-19 12:08:59 +01:00
|
|
|
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
|
2024-01-18 18:16:37 -05:00
|
|
|
tracing-log = "0.2.0"
|
2026-01-13 17:21:37 +01:00
|
|
|
tokio = { version = "1.49.0", features = ["full"] }
|
2024-05-06 16:58:25 -05:00
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
|
2025-10-08 16:36:27 +02:00
|
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
2023-07-20 14:57:51 -07:00
|
|
|
|
2023-02-10 15:50:04 -05:00
|
|
|
[profile.release]
|
2025-10-04 05:05:37 +02:00
|
|
|
opt-level = 3
|
2025-04-02 17:26:07 +02:00
|
|
|
panic = "abort"
|
2025-06-11 17:16:11 +02:00
|
|
|
lto = "thin"
|
2023-07-20 17:55:43 -04:00
|
|
|
|
2024-03-15 15:10:02 +01:00
|
|
|
[workspace.metadata.cargo-machete]
|
|
|
|
|
ignored = ["libcosmic"]
|
2025-02-26 14:23:53 -05:00
|
|
|
|
2025-11-11 15:54:01 -05:00
|
|
|
# [patch."https://github.com/pop-os/libcosmic"]
|
|
|
|
|
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//", branch = "" }
|
|
|
|
|
# libcosmic = { git = "https://github.com/pop-os/libcosmic//", branch = "" }
|
|
|
|
|
# iced_futures = { git = "https://github.com/pop-os/libcosmic//", branch = "" }
|
2025-03-04 13:24:44 -05:00
|
|
|
# cosmic-config = { path = "../libcosmic/cosmic-config" }
|
|
|
|
|
# libcosmic = { path = "../libcosmic" }
|
|
|
|
|
# iced_futures = { path = "../libcosmic/iced/futures" }
|
2024-10-30 22:51:08 -04:00
|
|
|
|
|
|
|
|
# [patch."https://github.com/pop-os/winit.git"]
|
|
|
|
|
# winit = { git = "https://github.com/rust-windowing/winit.git", rev = "241b7a80bba96c91fa3901729cd5dec66abb9be4" }
|
|
|
|
|
# winit = { path = "../winit" }
|
2025-02-20 16:02:15 +01:00
|
|
|
|
2025-09-03 17:13:25 +02:00
|
|
|
[patch."https://github.com/smithay/client-toolkit.git"]
|
|
|
|
|
sctk = { package = "smithay-client-toolkit", version = "0.20.0" }
|
|
|
|
|
|
2025-02-20 16:02:15 +01:00
|
|
|
[patch."https://github.com/pop-os/cosmic-protocols"]
|
2025-03-06 14:13:01 -08:00
|
|
|
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" }
|
2025-12-19 12:02:48 -05:00
|
|
|
|
2026-01-05 22:43:43 -05:00
|
|
|
# [patch.'https://github.com/pop-os/dbus-settings-bindings']
|
2025-12-19 12:02:48 -05:00
|
|
|
# cosmic-dbus-networkmanager = { path = "../dbus-settings-bindings/networkmanager" }
|
|
|
|
|
# upower_dbus = { path = "../dbus-settings-bindings/upower" }
|
2026-01-05 22:43:43 -05:00
|
|
|
# nm-secret-agent-manager = { path = "../dbus-settings-bindings/nm-secret-agent-manager" }
|