aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-11 02:47:25 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-11 02:47:25 +0800
commite715f16883d198cae1ec3801647b0970b22a68f1 (patch)
tree93beb19195c385595379f04441b7e6aee4235b76
parentb8e87b1b62696c2b05856c9f091d7bf2e2fa494f (diff)
chore: Add LOCAL/VERSION markers to workspace dependenciesfeature/picker2
-rw-r--r--Cargo.toml19
1 files changed, 14 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b3c3496..fdadcfd 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -33,11 +33,20 @@ exclude = [
]
[workspace.dependencies]
-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 }
+mingling_core = { path = "mingling_core", default-features = false } # LOCAL
+# mingling_core = { version = "<<version>>", default-features = false } # VERSION
+
+mingling_macros = { path = "mingling_macros", default-features = false } # LOCAL
+# mingling_macros = { version = "<<version>>", default-features = false } # VERSION
+
+mingling_pathf = { path = "mingling_pathf", default-features = false } # LOCAL
+# mingling_pathf = { version = "<<version>>", default-features = false } # VERSION
+
+mingling_picker = { path = "mingling_picker", default-features = false } # LOCAL
+# mingling_picker = { version = "<<version>>", default-features = false } # VERSION
+
+mingling_picker_macros = { path = "mingling_picker_macros", default-features = false } # LOCAL
+# mingling_picker_macros = { version = "<<version>>", default-features = false } # VERSION
just_fmt = "0.1.2"
just_template = "0.2.0"