Skip to content

Commit 02c01e5

Browse files
authored
fix(repo): enable wayland-data-control feature for arboard (#33675)
## Current Behavior The arboard crate is used without the `wayland-data-control` feature, which means clipboard operations may not work properly on Wayland-based Linux systems. ## Expected Behavior With the `wayland-data-control` feature enabled, arboard can interact with the clipboard on Wayland systems using the wlr-data-control protocol. ## Related Issue(s) N/A - Enhancement for better Wayland support
1 parent a5015d3 commit 02c01e5

2 files changed

Lines changed: 149 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 148 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/nx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ mio = "1.0"
7676
nix = { version = "0.30.0", features = ["process", "signal"] }
7777

7878
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
79-
arboard = "3.4.1"
79+
arboard = { version = "3.4.1", features = ["wayland-data-control"] }
8080
crossterm = { version = "0.29.0", features = ["event-stream", "use-dev-tty"] }
8181
portable-pty = { git = "https://github.com/cammisuli/wezterm", rev = "b538ee29e1e89eeb4832fb35ae095564dce34c29" }
8282
ignore-files = "2.1.0"

0 commit comments

Comments
 (0)