From 4bf23c20f2d7cdfcc988b654a93abae1cd211ad8 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 11 Jul 2026 16:03:09 +0800 Subject: feat(mingling): add Write import and doc comment for picker re-export --- mingling/src/lib.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; } -- cgit