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-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",
|
2022-12-23 15:14:15 -05:00
|
|
|
]
|
|
|
|
|
|
2023-09-17 02:30:40 -07:00
|
|
|
resolver = "2"
|
2023-06-07 13:43:49 -06:00
|
|
|
|
2023-07-20 14:57:51 -07:00
|
|
|
[workspace.dependencies]
|
2024-03-14 21:43:11 +01:00
|
|
|
anyhow = "1.0.81"
|
2024-04-15 18:37:00 -04:00
|
|
|
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "e4e6f8c" }
|
2023-09-17 02:30:40 -07:00
|
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = [
|
|
|
|
|
"client",
|
2024-04-15 18:37:00 -04:00
|
|
|
], rev = "e4e6f8c" }
|
2023-09-18 08:31:27 -07:00
|
|
|
cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features = false, features = [
|
2023-09-17 02:30:40 -07:00
|
|
|
"libcosmic",
|
|
|
|
|
"once_cell",
|
|
|
|
|
] }
|
2024-03-14 21:43:11 +01:00
|
|
|
futures = "0.3"
|
|
|
|
|
futures-util = "0.3"
|
2024-04-15 18:37:00 -04:00
|
|
|
i18n-embed = { version = "0.14.1", features = [
|
|
|
|
|
"fluent-system",
|
|
|
|
|
"desktop-requester",
|
|
|
|
|
] }
|
2024-03-14 21:43:11 +01:00
|
|
|
i18n-embed-fl = "0.8"
|
2023-09-18 08:31:27 -07: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",
|
2023-09-17 02:30:40 -07:00
|
|
|
"tokio",
|
|
|
|
|
"wayland",
|
2024-01-30 18:23:57 +00:00
|
|
|
"desktop",
|
2024-02-12 10:10:56 -05:00
|
|
|
"dbus-config",
|
2023-09-17 02:30:40 -07:00
|
|
|
] }
|
2024-03-14 21:43:11 +01:00
|
|
|
rust-embed = "8.3"
|
|
|
|
|
rust-embed-utils = "8.3.0"
|
2024-03-15 14:54:38 +01:00
|
|
|
rustix = { version = "0.38", features = ["fs", "process"] }
|
2024-05-16 21:29:28 -04:00
|
|
|
zbus = { version = "4.2.1", default-features = false, features = ["tokio"] }
|
2023-11-21 17:29:49 -05:00
|
|
|
tracing = "0.1"
|
2024-02-20 12:58:58 -05:00
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
2024-01-18 18:16:37 -05:00
|
|
|
tracing-log = "0.2.0"
|
2024-05-06 16:58:25 -05:00
|
|
|
cosmic-config = { git = "https://github.com/pop-os/libcosmic" }
|
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
2024-06-09 09:49:03 +02:00
|
|
|
freedesktop-desktop-entry = "0.6.1"
|
2023-07-20 14:57:51 -07:00
|
|
|
|
2023-02-10 15:50:04 -05:00
|
|
|
[profile.release]
|
2024-06-07 00:26:10 +02:00
|
|
|
lto = "fat"
|
2023-07-20 17:55:43 -04:00
|
|
|
|
2024-03-15 15:10:02 +01:00
|
|
|
[workspace.metadata.cargo-machete]
|
|
|
|
|
ignored = ["libcosmic"]
|
2024-05-16 21:29:28 -04:00
|
|
|
# [patch."https://github.com/pop-os/libcosmic"]
|
|
|
|
|
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//" }
|
|
|
|
|
# libcosmic = { git = "https://github.com/pop-os/libcosmic//" }
|
2024-03-15 15:10:02 +01:00
|
|
|
|
2023-12-11 14:45:36 -05:00
|
|
|
[patch."https://github.com/Smithay/client-toolkit"]
|
2024-06-07 00:26:10 +02:00
|
|
|
sctk = { git = "https://github.com/smithay/client-toolkit//", package = "smithay-client-toolkit", rev = "3bed072" }
|
2024-06-09 09:49:03 +02:00
|
|
|
|
|
|
|
|
[patch."crates-io"]
|