diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-31 08:54:29 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-31 08:54:29 +0800 |
| commit | 39f4f34cfdf940e1c74184edb3387ef8900ba4b4 (patch) | |
| tree | 844c865be02b23d5681d7f1ed301c36614d612d7 /mingling/src | |
| parent | 4421fb2794f2af292f8781e7d12ae002a3f10a9b (diff) | |
Update workspace dependencies and feature structure
- Bump mingling and mingling_macros to version 0.1.2
- Move macros from mingling_core to mingling crate
- Remove unused transitive dependencies from Cargo.lock
- Simplify tokio features in mingling_core
- Adjust feature dependencies between crates
Diffstat (limited to 'mingling/src')
| -rw-r--r-- | mingling/src/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs index 19c2db9..a0efc19 100644 --- a/mingling/src/lib.rs +++ b/mingling/src/lib.rs @@ -4,3 +4,16 @@ pub use mingling_core as mingling; #[cfg(feature = "parser")] pub mod parser; + +#[allow(unused_imports)] +pub mod macros { + pub use mingling_macros::chain; + pub use mingling_macros::chain_struct; + pub use mingling_macros::dispatcher; + pub use mingling_macros::dispatcher_render; + pub use mingling_macros::node; + pub use mingling_macros::program; + pub use mingling_macros::r_print; + pub use mingling_macros::r_println; + pub use mingling_macros::renderer; +} |
