diff options
author | Matias Linares <matiaslina@openmailbox.org> | 2016-05-25 13:18:18 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@openmailbox.org> | 2016-05-25 13:18:18 -0300 |
commit | da3fa00ccf4cde76d1d6489c6043d7e56d4f52c5 (patch) | |
tree | 49dbdb5ce9d0baed54ee41a64393b01b6953f2e6 /src/main.rs | |
parent | 77e4450afef9fb5d1acb8f2b690bd5e228f61d8e (diff) | |
download | dotwm-da3fa00ccf4cde76d1d6489c6043d7e56d4f52c5.tar.gz |
Add a lazy_static connection to the X server
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 2f5e80c..4f292b6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ extern crate libc; extern crate x11; extern crate unix_socket; #[macro_use] -extern crate nom; +extern crate lazy_static; pub mod safe_x11; pub mod command; @@ -21,7 +21,6 @@ use socket::parser; use std::collections::HashMap; use x11::xlib; -use x11::xlib::XEvent; use x11::keysym; use std::fs; |