From 9976b31a56bcc3ed37ac878b351bd8d097dc67cc Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 21 Jul 2026 15:10:38 +0800 Subject: feat(mling): add linter framework with async support and registry generation --- mingling_cli/Cargo.toml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'mingling_cli/Cargo.toml') 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] -- cgit