aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_cli')
-rw-r--r--mingling_cli/Cargo.toml18
1 files changed, 14 insertions, 4 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml
index bc8d59f..ab51d9e 100644
--- a/mingling_cli/Cargo.toml
+++ b/mingling_cli/Cargo.toml
@@ -18,9 +18,9 @@ path = "src/main.rs"
[dependencies.mingling]
path = "../mingling"
features = [
+ "extra_macros",
"picker",
"pathf",
- "extra_macros",
"async",
]
@@ -32,18 +32,28 @@ features = [
]
[dependencies]
-annotate-snippets = "0.12.16"
+
+# Project analyze
cargo_metadata = { version = "0.23.1", features = ["builder"] }
-just_template = "0.2.0"
+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"] }
+
+# Configure & Serialization
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
-syn = { version = "3.0.2", features = ["full", "extra-traits"] }
+
+# 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]