From 58ef8a8f42a68c7a81118ef9120705730ce3f458 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 11 Apr 2026 16:50:57 +0800 Subject: Add shell completion script generation feature --- mingling_core/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mingling_core/Cargo.toml') diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml index ef0ea5d..0d4baaa 100644 --- a/mingling_core/Cargo.toml +++ b/mingling_core/Cargo.toml @@ -9,7 +9,7 @@ repository = "https://github.com/catilgrass/mingling" [features] default = [] full = ["comp", "general_renderer"] -comp = [] +comp = ["dep:just_template"] general_renderer = [ "dep:serde", "dep:ron", @@ -20,6 +20,7 @@ general_renderer = [ [dependencies] just_fmt = "0.1.2" +just_template = { version = "0.1.3", optional = true } serde = { version = "1.0", features = ["derive"], optional = true } thiserror = "2" tokio = { version = "1", features = ["io-std", "io-util"] } -- cgit