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 b19bfb9..90989fc 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/*",
@@ -9,7 +25,7 @@ exclude = [
"examples/*",
# Dev Tools
- "dev_tools",
+ ".run",
# Tests
"mingling_core/tests/*",
@@ -20,8 +36,10 @@ exclude = [
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_fmt = "0.2.0"
just_template = "0.2.0"
serde = { version = "1.0.228", features = ["derive"] }
@@ -43,7 +61,7 @@ log = "0.4.33"
env_logger = "0.11.11"
[workspace.package]
-version = "0.2.0"
+version = "0.3.0"
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mingling-rs/mingling"