diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-21 15:26:59 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-21 15:26:59 +0800 |
| commit | a4780f04172b3ef9fb11af5f7bc8abd7139cbe54 (patch) | |
| tree | 0fe2fa8e5785e2545c9ed9afba2684100353af3b /mingling_cli | |
| parent | 9976b31a56bcc3ed37ac878b351bd8d097dc67cc (diff) | |
chore(Cargo.toml): reorganize dependencies and add section comments
Group dependencies by purpose with inline comments for clarity
Diffstat (limited to 'mingling_cli')
| -rw-r--r-- | mingling_cli/Cargo.toml | 18 |
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] |
