wip: hook up panel messages

This commit is contained in:
Ashley Wulber 2023-05-23 15:02:41 -04:00 committed by Michael Aaron Murphy
parent ce15eebdb8
commit e7996f69dd
No known key found for this signature in database
GPG key ID: B2732D4240C9212C
6 changed files with 189 additions and 9 deletions

76
Cargo.lock generated
View file

@ -758,7 +758,19 @@ dependencies = [
"cosmic-config-derive",
"dirs 5.0.1",
"iced_futures",
"notify",
"notify 6.0.0",
"ron",
"serde",
]
[[package]]
name = "cosmic-config"
version = "0.1.0"
source = "git+https://github.com/pop-os/libcosmic#98ec1bbd487cf5412c0e94ef9ae7694c9b72edbd"
dependencies = [
"atomicwrites",
"dirs 4.0.0",
"notify 5.2.0",
"ron",
"serde",
]
@ -772,6 +784,20 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "cosmic-panel-config"
version = "0.1.0"
source = "git+https://github.com/pop-os/cosmic-panel#f342e53f95aee2a26c8cc6578cfe5c39a1ed99b5"
dependencies = [
"anyhow",
"cosmic-config 0.1.0 (git+https://github.com/pop-os/libcosmic)",
"ron",
"serde",
"tracing",
"wayland-protocols-wlr",
"xdg-shell-wrapper-config",
]
[[package]]
name = "cosmic-settings"
version = "0.1.0"
@ -780,6 +806,7 @@ dependencies = [
"async-channel",
"bytecheck",
"color-eyre",
"cosmic-panel-config",
"cosmic-settings-page",
"cosmic-settings-system",
"cosmic-settings-time",
@ -860,7 +887,7 @@ version = "0.1.0"
source = "git+https://github.com/pop-os/libcosmic?branch=cosmic-advanced-text#bf1c474d0846e31c647444ff7bd5ecb7f361efcd"
dependencies = [
"anyhow",
"cosmic-config",
"cosmic-config 0.1.0 (git+https://github.com/pop-os/libcosmic?branch=cosmic-advanced-text)",
"csscolorparser",
"directories",
"lazy_static",
@ -2540,7 +2567,7 @@ version = "0.1.0"
source = "git+https://github.com/pop-os/libcosmic?branch=cosmic-advanced-text#bf1c474d0846e31c647444ff7bd5ecb7f361efcd"
dependencies = [
"apply",
"cosmic-config",
"cosmic-config 0.1.0 (git+https://github.com/pop-os/libcosmic?branch=cosmic-advanced-text)",
"cosmic-theme",
"derive_setters",
"fraction",
@ -2893,6 +2920,24 @@ dependencies = [
"minimal-lexical",
]
[[package]]
name = "notify"
version = "5.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "729f63e1ca555a43fe3efa4f3efdf4801c479da85b432242a7b726f353c88486"
dependencies = [
"bitflags 1.3.2",
"crossbeam-channel",
"filetime",
"fsevent-sys",
"inotify",
"kqueue",
"libc",
"mio",
"walkdir",
"windows-sys 0.45.0",
]
[[package]]
name = "notify"
version = "6.0.0"
@ -4956,6 +5001,7 @@ dependencies = [
"wayland-backend",
"wayland-client 0.30.1",
"wayland-scanner 0.30.0",
"wayland-server",
]
[[package]]
@ -4969,6 +5015,7 @@ dependencies = [
"wayland-client 0.30.1",
"wayland-protocols 0.30.0",
"wayland-scanner 0.30.0",
"wayland-server",
]
[[package]]
@ -4993,6 +5040,20 @@ dependencies = [
"quote",
]
[[package]]
name = "wayland-server"
version = "0.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9062def387c1b1d80e366d8243c2b3bd6d9e4f343032a3e5da8d4aa03866cf89"
dependencies = [
"bitflags 1.3.2",
"downcast-rs",
"io-lifetimes",
"nix 0.26.2",
"wayland-backend",
"wayland-scanner 0.30.0",
]
[[package]]
name = "wayland-sys"
version = "0.29.5"
@ -5541,6 +5602,15 @@ dependencies = [
"winapi",
]
[[package]]
name = "xdg-shell-wrapper-config"
version = "0.1.0"
source = "git+https://github.com/pop-os/xdg-shell-wrapper?rev=a5bf783#a5bf7832fc091a0fcb685cd297bfa3cddcd72974"
dependencies = [
"serde",
"wayland-protocols-wlr",
]
[[package]]
name = "xkbcommon"
version = "0.5.0"