diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-16 00:07:59 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-05-16 00:09:55 +0800 |
| commit | a127d6f3cf2741d4dc404959c5481fa61651e133 (patch) | |
| tree | ec82ed1260e5a3d5744f2181b79d21ffb65e54e8 /mingling_core/Cargo.toml | |
| parent | aae29170dc7ae7a8976699c4d1f7011f9f238a06 (diff) | |
Refactor general_renderer into granular format-specific features
Diffstat (limited to 'mingling_core/Cargo.toml')
| -rw-r--r-- | mingling_core/Cargo.toml | 13 |
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 = [] |
