tenseleyflow/hyprkvm / 0dd9281

Browse files

deps: add clipboard dependencies

- wl-clipboard-rs for Wayland clipboard access
- hex for content hash encoding
- base64 for clipboard data transfer
Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
0dd9281660e079c3acbbe59de3fbf0bcf202eaf3
Parents
013ce24
Tree
47dcff6

1 changed file

StatusFile+-
M hyprkvm-daemon/Cargo.toml 5 0
hyprkvm-daemon/Cargo.tomlmodified
@@ -56,3 +56,8 @@ rustix = { workspace = true }
5656
 
5757
 # Input device handling (evdev)
5858
 evdev = "0.12"
59
+
60
+# Clipboard
61
+wl-clipboard-rs = { workspace = true }
62
+hex = { workspace = true }
63
+base64 = { workspace = true }