From a4780f04172b3ef9fb11af5f7bc8abd7139cbe54 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 21 Jul 2026 15:26:59 +0800 Subject: chore(Cargo.toml): reorganize dependencies and add section comments Group dependencies by purpose with inline comments for clarity --- mingling_cli/Cargo.toml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'mingling_cli') 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] -- cgit