diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-11 16:03:09 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-11 16:03:09 +0800 |
| commit | 4bf23c20f2d7cdfcc988b654a93abae1cd211ad8 (patch) | |
| tree | 79a2fb71c7294a8eece4ee7961e7a4ac3158f308 /mingling | |
| parent | ed29ce55f264a6a3cce22b4ec6daa28edeee157c (diff) | |
feat(mingling): add Write import and doc comment for picker re-export
Diffstat (limited to 'mingling')
| -rw-r--r-- | mingling/src/lib.rs | 5 |
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; } |
