51 lines
1.6 KiB
TOML
51 lines
1.6 KiB
TOML
[workspace]
|
|
|
|
members = [
|
|
"cosmic-app-list",
|
|
"cosmic-applet-audio",
|
|
"cosmic-applet-battery",
|
|
"cosmic-applet-bluetooth",
|
|
"cosmic-applet-graphics",
|
|
"cosmic-applet-network",
|
|
"cosmic-applet-notifications",
|
|
"cosmic-applet-power",
|
|
"cosmic-applet-status-area",
|
|
"cosmic-applet-tiling",
|
|
"cosmic-applet-time",
|
|
"cosmic-applet-workspaces",
|
|
"cosmic-panel-button",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
[workspace.dependencies]
|
|
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit", rev = "e65fa5e" }
|
|
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = [
|
|
"client",
|
|
], rev = "e65fa5e" }
|
|
cosmic-time = { git = "https://github.com/pop-os/cosmic-time", default-features = false, features = [
|
|
"libcosmic",
|
|
"once_cell",
|
|
] }
|
|
libcosmic = { git = "https://github.com/pop-os/libcosmic", default-features = false, features = [
|
|
"applet",
|
|
"applet-token",
|
|
"tokio",
|
|
"wayland",
|
|
"process",
|
|
"dbus-config"
|
|
] }
|
|
zbus = { version = "3.14", default-features = false, features = ["tokio"] }
|
|
tracing = "0.1"
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
# lto = "fat"
|
|
|
|
# [patch."https://github.com/pop-os/cosmic-time"]
|
|
# cosmic-time = { path = "../cosmic-time" }
|
|
# [patch."https://github.com/pop-os/libcosmic"]
|
|
# libcosmic = { path = "../libcosmic" }
|
|
# cosmic-config = { path = "../libcosmic/cosmic-config" }
|
|
[patch."https://github.com/Smithay/client-toolkit"]
|
|
sctk = { git = "https://github.com/smithay/client-toolkit//", package = "smithay-client-toolkit", rev = "e63ab5f" }
|