aboutsummaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-09 15:12:11 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-09 15:12:11 +0800
commit4764c3c818e3da16a3cba3b9877d9beb635e4237 (patch)
tree3adc438ca9b56f0fcd95354af4bd8329640ecce4 /mingling/Cargo.toml
parent240361b240d638363346013160b0943b47769c37 (diff)
Add basic completion module with shell integration
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 3d19be4..09b490b 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -17,13 +17,14 @@ mingling = { path = ".", features = ["full"] }
[features]
default = ["mingling_core/default"]
-full = ["mingling_core/full", "general_renderer", "parser"]
+full = ["mingling_core/full", "mingling_macros/full", "comp", "parser"]
general_renderer = [
"mingling_core/general_renderer",
"dep:serde",
"mingling_macros/general_renderer",
]
+comp = ["mingling_core/comp", "mingling_macros/comp"]
parser = ["dep:size"]
[dependencies]