From a127d6f3cf2741d4dc404959c5481fa61651e133 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 16 May 2026 00:07:59 +0800 Subject: Refactor general_renderer into granular format-specific features --- mingling_core/Cargo.toml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'mingling_core/Cargo.toml') diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml index 118813c..84b974b 100644 --- a/mingling_core/Cargo.toml +++ b/mingling_core/Cargo.toml @@ -13,13 +13,12 @@ async = [] builds = ["dep:dirs"] dispatch_tree = [] -general_renderer = [ - "dep:serde", - "dep:ron", - "dep:serde_json", - "dep:serde_yaml", - "dep:toml", -] +general_renderer = ["dep:serde"] +ron_serde_fmt = ["dep:ron"] +json_serde_fmt = ["dep:serde_json"] +yaml_serde_fmt = ["dep:serde_yaml"] +toml_serde_fmt = ["dep:toml"] + repl = [] clap = [] -- cgit