ZIm/crates/gpui/src/platform/linux/wayland.rs
apricotbucket28 f6fa6600bc
wayland: Refactor clipboard implementation (#12405)
Fixes https://github.com/zed-industries/zed/issues/12054

Replaces the `copypasta`/`smithay-clipboard` implementation with a new,
custom one

TODO list:

- [x] Cleanup code
- [x] Remove `smithay-clipboard`
- [x] Add more mime types to the supported list

Release Notes:

- Fixed drag and drop on Gnome
- Fixed clipboard paste on Hyprland
2024-06-18 10:04:19 -07:00

8 lines
103 B
Rust

mod client;
mod clipboard;
mod cursor;
mod display;
mod serial;
mod window;
pub(crate) use client::*;