diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-11 01:51:35 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-11 01:51:35 +0800 |
| commit | 9245799135458d9afd5e779b6d061cee0962d585 (patch) | |
| tree | 1ed86601fd566ea4373fa34dd16e5c8a798707ac /Cargo.toml | |
| parent | fe2f3405f518e5ad34fc6f6e409fdfafbb10e8d9 (diff) | |
feat: add mingling-picker and mingling-picker-macros crates
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 22 insertions, 4 deletions
@@ -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" |
