yoda: use local COSMIC stack
This commit is contained in:
parent
1047333fbb
commit
52ead3dcfa
2 changed files with 146 additions and 304 deletions
64
Cargo.toml
64
Cargo.toml
|
|
@ -19,7 +19,8 @@ cosmic-config = { workspace = true, features = ["calloop", "macro"] }
|
|||
cosmic-greeter-config.workspace = true
|
||||
cosmic-greeter-daemon = { path = "daemon" }
|
||||
dirs = "6"
|
||||
libcosmic = { workspace = true, features = [
|
||||
cosmic = { package = "libcosmic-yoda", path = "../libcosmic", default-features = false, features = [
|
||||
"advanced-shaping",
|
||||
"autosize",
|
||||
"winit",
|
||||
"multi-window",
|
||||
|
|
@ -45,14 +46,14 @@ wayland-client = "0.31.14"
|
|||
# "cosmic_a11y_manager",
|
||||
# ] }
|
||||
|
||||
cosmic-settings-accessibility-subscription = { git = "https://github.com/pop-os/cosmic-settings", default-features = false }
|
||||
cosmic-settings-a11y-manager-subscription = { git = "https://github.com/pop-os/cosmic-settings", default-features = false }
|
||||
cosmic-settings-daemon-config = { git = "https://github.com/pop-os/cosmic-settings-daemon", default-features = false, features = [
|
||||
cosmic-settings-accessibility-subscription = { path = "../cosmic-settings/subscriptions/accessibility", default-features = false }
|
||||
cosmic-settings-a11y-manager-subscription = { path = "../cosmic-settings/subscriptions/a11y-manager", default-features = false }
|
||||
cosmic-settings-daemon-config = { path = "../cosmic-settings-daemon/cosmic-settings-daemon-config", default-features = false, features = [
|
||||
"greeter",
|
||||
] }
|
||||
|
||||
cctk = { git = "https://github.com/pop-os/cosmic-protocols", package = "cosmic-client-toolkit" }
|
||||
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols", default-features = false, features = [
|
||||
cctk = { path = "../cosmic-protocols/client-toolkit", package = "cosmic-client-toolkit" }
|
||||
cosmic-protocols = { path = "../cosmic-protocols", default-features = false, features = [
|
||||
"client",
|
||||
] }
|
||||
|
||||
|
|
@ -124,18 +125,18 @@ serde = "1"
|
|||
tokio = "1.52.1"
|
||||
zbus = "5"
|
||||
kdl = "6"
|
||||
cosmic-randr-shell = { git = "https://github.com/pop-os/cosmic-randr", default-features = false }
|
||||
cosmic-randr-shell = { path = "../cosmic-randr/shell", default-features = false }
|
||||
|
||||
[workspace.dependencies.cosmic-applets-config]
|
||||
git = "https://github.com/pop-os/cosmic-applets"
|
||||
path = "../cosmic-applets/cosmic-applets-config"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.cosmic-bg-config]
|
||||
git = "https://github.com/pop-os/cosmic-bg"
|
||||
path = "../cosmic-bg/config"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.cosmic-comp-config]
|
||||
git = "https://github.com/pop-os/cosmic-comp"
|
||||
path = "../cosmic-comp/cosmic-comp-config"
|
||||
default-features = false
|
||||
features = ["output", "randr"]
|
||||
|
||||
|
|
@ -143,25 +144,40 @@ features = ["output", "randr"]
|
|||
path = "cosmic-greeter-config"
|
||||
|
||||
[workspace.dependencies.cosmic-config]
|
||||
git = "https://github.com/pop-os/libcosmic"
|
||||
path = "../libcosmic/cosmic-config"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.cosmic-theme]
|
||||
git = "https://github.com/pop-os/libcosmic"
|
||||
path = "../libcosmic/cosmic-theme"
|
||||
default-features = false
|
||||
|
||||
[workspace.dependencies.libcosmic]
|
||||
git = "https://github.com/pop-os/libcosmic"
|
||||
default-features = false
|
||||
features = ["advanced-shaping"]
|
||||
[patch."https://github.com/pop-os/libcosmic"]
|
||||
cosmic-config = { path = "../libcosmic/cosmic-config" }
|
||||
cosmic-config-derive = { path = "../libcosmic/cosmic-config-derive" }
|
||||
cosmic-theme = { path = "../libcosmic/cosmic-theme" }
|
||||
iced = { path = "../libcosmic/iced" }
|
||||
iced_accessibility = { path = "../libcosmic/iced/accessibility" }
|
||||
iced_core = { path = "../libcosmic/iced/core" }
|
||||
iced_futures = { path = "../libcosmic/iced/futures" }
|
||||
iced_graphics = { path = "../libcosmic/iced/graphics" }
|
||||
iced_renderer = { path = "../libcosmic/iced/renderer" }
|
||||
iced_runtime = { path = "../libcosmic/iced/runtime" }
|
||||
iced_tiny_skia = { path = "../libcosmic/iced/tiny_skia" }
|
||||
iced_wgpu = { path = "../libcosmic/iced/wgpu" }
|
||||
iced_widget = { path = "../libcosmic/iced/widget" }
|
||||
iced_winit = { path = "../libcosmic/iced/winit" }
|
||||
|
||||
[patch."https://github.com/pop-os/cosmic-protocols"]
|
||||
cosmic-protocols = { git = "https://github.com/pop-os/cosmic-protocols//" }
|
||||
cctk = { git = "https://github.com/pop-os/cosmic-protocols//", package = "cosmic-client-toolkit" }
|
||||
cosmic-protocols = { path = "../cosmic-protocols" }
|
||||
cosmic-client-toolkit = { path = "../cosmic-protocols/client-toolkit" }
|
||||
|
||||
# [patch."https://github.com/pop-os/libcosmic"]
|
||||
# iced_core = { git = "https://github.com/pop-os/libcosmic//" }
|
||||
# iced_futures = { git = "https://github.com/pop-os/libcosmic//" }
|
||||
# libcosmic = { git = "https://github.com/pop-os/libcosmic//" }
|
||||
# cosmic-config = { git = "https://github.com/pop-os/libcosmic//" }
|
||||
# cosmic-theme = { git = "https://github.com/pop-os/libcosmic//" }
|
||||
[patch."https://github.com/pop-os/cosmic-settings-daemon"]
|
||||
cosmic-settings-config = { path = "../cosmic-settings-daemon/config" }
|
||||
cosmic-settings-daemon-config = { path = "../cosmic-settings-daemon/cosmic-settings-daemon-config" }
|
||||
|
||||
[patch."https://forge.aditua.com/leyoda/window_clipboard.git"]
|
||||
window_clipboard = { path = "../window_clipboard" }
|
||||
dnd = { path = "../window_clipboard/dnd" }
|
||||
mime = { path = "../window_clipboard/mime" }
|
||||
clipboard_wayland = { path = "../window_clipboard/wayland" }
|
||||
clipboard_macos = { path = "../window_clipboard/macos" }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue