From 9e89aaa477369b20a06f4b9f636d7fd543c4c985 Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Sun, 28 Apr 2019 20:21:39 +0000 Subject: Switch from copypasta to rust-clipboard This switches our own `copypasta` crate with the more standardized `clipboard` library, which allows us to get rid of the `xclip` dependency on X11. Additionally, this lays the foundation for native Wayland clipboard support once the clipboard crate is updated (or a fork is created). Fixes #5. --- alacritty_terminal/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'alacritty_terminal/src/lib.rs') diff --git a/alacritty_terminal/src/lib.rs b/alacritty_terminal/src/lib.rs index ab1ba35e..182d7811 100644 --- a/alacritty_terminal/src/lib.rs +++ b/alacritty_terminal/src/lib.rs @@ -30,6 +30,7 @@ extern crate objc; pub mod macros; pub mod ansi; pub mod cli; +pub mod clipboard; pub mod config; mod cursor; pub mod display; -- cgit