aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mingling/src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs
index 524d061..019c20d 100644
--- a/mingling/src/lib.rs
+++ b/mingling/src/lib.rs
@@ -168,7 +168,7 @@ pub mod macros {
/// `suggest_enum!(EnumNames)` - Used to generate enum suggestions
#[cfg(feature = "comp")]
pub use mingling_macros::suggest_enum;
-
+ /// New Parser provided by the `picker` feature
#[cfg(feature = "picker")]
pub use mingling_macros::*;
}
@@ -259,4 +259,7 @@ pub mod prelude {
#[cfg(feature = "picker")]
pub use mingling_picker::prelude::*;
+
+ /// Used to enable the `writeln!` macro for `RenderResult`
+ pub use std::io::Write;
}