aboutsummaryrefslogtreecommitdiff
path: root/mingling_core/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-16 00:07:59 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-16 00:09:55 +0800
commita127d6f3cf2741d4dc404959c5481fa61651e133 (patch)
treeec82ed1260e5a3d5744f2181b79d21ffb65e54e8 /mingling_core/Cargo.toml
parentaae29170dc7ae7a8976699c4d1f7011f9f238a06 (diff)
Refactor general_renderer into granular format-specific features
Diffstat (limited to 'mingling_core/Cargo.toml')
-rw-r--r--mingling_core/Cargo.toml13
1 files changed, 6 insertions, 7 deletions
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 = []