cosmic-applets/Cargo.toml

96 lines
3.3 KiB
TOML
Raw Normal View History

[workspace]
default-members = ["cosmic-applets", "cosmic-panel-button"]
members = [
"cosmic-app-list",
"cosmic-app-list/cosmic-app-list-config",
"cosmic-applets",
"cosmic-applet-audio",
"cosmic-applet-battery",
2023-02-08 18:38:09 -05:00
"cosmic-applet-bluetooth",
"cosmic-applet-minimize",
"cosmic-applet-network",
"cosmic-applet-notifications",
"cosmic-applet-power",
"cosmic-applet-status-area",
"cosmic-applet-tiling",
"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",
"cosmic-applets-config",
]
resolver = "3"
[workspace.dependencies]
anyhow = "1.0.102"
2025-10-08 16:36:27 +02:00
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "d0e95be" }
cosmic-applets-config = { path = "cosmic-applets-config" }
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" }
2024-07-12 16:30:14 -04:00
futures = "0.3"
futures-util = "0.3"
i18n-embed = { version = "0.16.0", features = [
2024-04-15 18:37:00 -04:00
"fluent-system",
"desktop-requester",
] }
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 = [
"applet",
"applet-token",
2025-06-27 12:42:18 -04:00
"dbus-config",
2024-10-30 22:51:08 -04:00
"multi-window",
"tokio",
"wayland",
"desktop-systemd-scope",
2024-10-30 22:51:08 -04:00
"winit",
] }
rust-embed = "8.11.0"
rust-embed-utils = "8.11.0"
rustc-hash = "2.1"
2025-10-08 16:36:27 +02:00
rustix = { version = "1.1", features = ["fs", "process"] }
zbus = { version = "5.14.0", default-features = false, features = ["tokio"] }
tracing = "0.1"
2025-12-19 12:08:59 +01:00
tracing-subscriber = { version = "0.3.22", features = ["env-filter"] }
tracing-log = "0.2.0"
tokio = { version = "1.49.0", features = ["full"] }
2026-03-31 16:34:59 -04:00
# cosmic-config = { path = "../libcosmic/cosmic-config" }
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-02-10 15:50:04 -05:00
[profile.release]
2026-03-31 16:34:59 -04:00
# opt-level = 3
# panic = "abort"
# lto = "thin"
opt-level = 1
[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"]
2025-03-04 13:24:44 -05:00
# cosmic-config = { path = "../libcosmic/cosmic-config" }
# libcosmic = { path = "../libcosmic" }
# iced_futures = { path = "../libcosmic/iced/futures" }
2026-03-31 16:34:59 -04:00
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//" }
# libcosmic = { git = "https://github.com/pop-os/libcosmic//" }
# iced_futures = { git = "https://github.com/pop-os/libcosmic//" }
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"]
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" }
2026-01-05 22:43:43 -05:00
# [patch.'https://github.com/pop-os/dbus-settings-bindings']
# 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" }