aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml26
1 files changed, 22 insertions, 4 deletions
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"