From 9245799135458d9afd5e779b6d061cee0962d585 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 11 Jul 2026 01:51:35 +0800 Subject: feat: add mingling-picker and mingling-picker-macros crates --- Cargo.toml | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 201f88e..66d616d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,22 @@ [workspace] resolver = "2" -members = ["mingling", "mingling_core", "mingling_macros", "mingling_pathf", "mling"] +members = [ + # Core + "mingling", + "mingling_core", + "mingling_macros", + + # Pathfinder + "mingling_pathf", + + # Picker2 + "mingling_picker", + "mingling_picker_macros", + + # Scaffolding tool + "mling" +] + exclude = [ # README-Tests "./temp/*", @@ -17,9 +33,11 @@ exclude = [ ] [workspace.dependencies] -mingling_core = { version = "0.2.2", default-features = false } -mingling_macros = { version = "0.2.2", default-features = false } -mingling_pathf = { version = "0.2.2", default-features = false } +mingling_core = { path = "mingling_core", default-features = false } +mingling_macros = { path = "mingling_macros", default-features = false } +mingling_pathf = { path = "mingling_pathf", default-features = false } +mingling_picker = { path = "mingling_picker", default-features = false } +mingling_picker_macros = { path = "mingling_picker_macros", default-features = false } just_fmt = "0.1.2" just_template = "0.2.0" -- cgit