aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_cli/Cargo.toml')
-rw-r--r--mingling_cli/Cargo.toml39
1 files changed, 37 insertions, 2 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml
index 1cc45b6..5b36c6b 100644
--- a/mingling_cli/Cargo.toml
+++ b/mingling_cli/Cargo.toml
@@ -11,15 +11,50 @@ description = "Mingling's scaffolding tool for generating, analyzing, and modify
keywords = ["cli", "cli-framework", "command-line", "tools"]
categories = ["command-line-interface"]
+[[bin]]
+name = "mling"
+path = "src/main.rs"
+
[dependencies.mingling]
path = "../mingling"
features = [
+ "extra_macros",
"picker",
"pathf",
- "dispatch_tree",
- "extra_macros"
+ "async",
+]
+
+[build-dependencies.mingling]
+path = "../mingling"
+features = [
+ "builds",
+ "pathf",
]
[dependencies]
+# Project analyze
+cargo_metadata = { version = "0.23.1", features = ["builder"] }
+annotate-snippets = "0.12.16"
+
+# Code analyze
+proc-macro2 = { version = "1.0.107", features = ["span-locations"] }
+syn = { version = "3.0.2", features = ["full", "extra-traits"] }
+quote = "1.0.47"
+
+# Configure & Serialization
+serde = { version = "1.0.229", features = ["derive"] }
+serde_json = "1.0.151"
+
+# Parallelism
+tokio = { version = "1.53.1", features = ["full"] }
+
+[build-dependencies]
+# Configure & Serialization
+serde = { version = "1.0.229", features = ["derive"] }
+serde_json = "1.0.151"
+
+# Code gen
+just_template = "0.2.0"
+
[workspace]