From a42fd69ee13d3f15920be084be86d749d53877cc Mon Sep 17 00:00:00 2001 From: Lucas Timmins Date: Thu, 6 Jun 2019 16:07:49 +0800 Subject: [PATCH] Specify crate:: for pre rust 1.32 compatibility --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1f84d61..3effa74 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -14,5 +14,5 @@ #![warn(missing_docs)] mod threaded; -pub use threaded::ThreadedClipboard; -pub use threaded::ThreadedClipboard as WaylandClipboard; +pub use crate::threaded::ThreadedClipboard; +pub use crate::threaded::ThreadedClipboard as WaylandClipboard;