Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ keyring = { version = "3.6.3", default-features = false, features = ["sync-secre
# connection is dropped, which the plugin does immediately. Default features
# keep the pure-Rust zbus backend, matching the plugin (no libdbus needed).
notify-rust = "4"
# Wayland clipboard support. Without this feature arboard has only the X11
# backend, so on a Wayland session it writes through XWayland — where the
# selection is owned by a client the compositor never surfaces to Wayland
# clients. `set_text` returns Ok against a clipboard nothing can read (and
# clears the real one), which surfaces as a copy button that reports success
# and leaves the clipboard empty. Feature-unifies with the [dependencies]
# entry; other platforms are unaffected.
arboard = { version = "3", features = ["wayland-data-control"] }

[target.'cfg(target_os = "macos")'.dependencies]
objc2-app-kit = { version = "0.3.2", default-features = false, features = ["NSHapticFeedback"] }
Expand Down
Loading