aboutsummaryrefslogtreecommitdiff
path: root/mingling_cli/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-21 15:10:38 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-21 15:12:52 +0800
commit9976b31a56bcc3ed37ac878b351bd8d097dc67cc (patch)
treee7b092aee5e82f5d4c1f50332a17f1d2176ae51b /mingling_cli/Cargo.toml
parentee01756279ef17487d19659adedc0639547bbd25 (diff)
feat(mling): add linter framework with async support and registry
generation
Diffstat (limited to 'mingling_cli/Cargo.toml')
-rw-r--r--mingling_cli/Cargo.toml14
1 files changed, 12 insertions, 2 deletions
diff --git a/mingling_cli/Cargo.toml b/mingling_cli/Cargo.toml
index 93021f0..bc8d59f 100644
--- a/mingling_cli/Cargo.toml
+++ b/mingling_cli/Cargo.toml
@@ -21,7 +21,7 @@ features = [
"picker",
"pathf",
"extra_macros",
- "structural_renderer"
+ "async",
]
[build-dependencies.mingling]
@@ -32,8 +32,18 @@ features = [
]
[dependencies]
-cargo_metadata = "0.23.1"
+annotate-snippets = "0.12.16"
+cargo_metadata = { version = "0.23.1", features = ["builder"] }
+just_template = "0.2.0"
+proc-macro2 = { version = "1.0.107", features = ["span-locations"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
+syn = { version = "3.0.2", features = ["full", "extra-traits"] }
+tokio = { version = "1.53.1", features = ["full"] }
+
+[build-dependencies]
+serde = { version = "1.0.229", features = ["derive"] }
+serde_json = "1.0.151"
+just_template = "0.2.0"
[workspace]