aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-15 03:42:31 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-15 03:42:31 +0800
commit57e20f69efea609d8332cc39d223f4aa46be3c78 (patch)
tree42e0aa5435a9cb03bba49b4aa3838105f056bae2 /mingling_core/src/lib.rs
parentec6c87d12062576271231b88364a4aa00765ae65 (diff)
feat(core): add public ArgumentSplitter utility
Move the REPL's argument splitting logic into a new public `utils` module exposing the `ArgumentSplitter` trait for reuse by downstream code.
Diffstat (limited to 'mingling_core/src/lib.rs')
-rw-r--r--mingling_core/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mingling_core/src/lib.rs b/mingling_core/src/lib.rs
index 7048307..641118c 100644
--- a/mingling_core/src/lib.rs
+++ b/mingling_core/src/lib.rs
@@ -110,3 +110,6 @@ pub mod __private {
/// Mingling's convention metadatas, which can be bound to types using `#[metadata]`, to provide identification for types
pub mod metadata;
+
+/// Some common utilities in Mingling, providing a collection of functionality needed by many modules.
+pub mod utils;