summary refs log tree commit diff stats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d4e5d98..308559a 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -190,11 +190,14 @@
  */
 
 #![cfg_attr(feature="nightly_tests", feature(c_variadic))]
+#![cfg_attr(feature="nightly_tests", feature(generic_associated_types))]
 
 #[macro_use]
 extern crate impl_trait;
 #[doc(hidden)]
 pub extern crate libc;
+extern crate ltptr;
+
 
 // private macros
 
@@ -220,14 +223,14 @@ mod pluginfo;
 mod strip;
 mod word;
 
-pub use eat::*;
-pub use infoid::InfoId;
-pub use strip::*;
-pub use word::*;
+pub use crate::eat::*;
+pub use crate::infoid::InfoId;
+pub use crate::strip::*;
+pub use crate::word::*;
 
-use internals::HexchatEventAttrs as RawAttrs;
-use internals::Ph as RawPh;
-use pluginfo::PluginInfo;
+use crate::internals::HexchatEventAttrs as RawAttrs;
+use crate::internals::Ph as RawPh;
+use crate::pluginfo::PluginInfo;
 
 use std::borrow::Cow;
 use std::cell::Cell;
@@ -399,7 +402,7 @@ mod valid_context {
         }
     }
 }
-pub use valid_context::ValidContext;
+pub use crate::valid_context::ValidContext;
 
 /// Event attributes.
 // TODO better docs.