aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/lib.rs
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/src/lib.rs
parentaae29170dc7ae7a8976699c4d1f7011f9f238a06 (diff)
Refactor general_renderer into granular format-specific features
Diffstat (limited to 'mingling/src/lib.rs')
-rw-r--r--mingling/src/lib.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/mingling/src/lib.rs b/mingling/src/lib.rs
index 6a165b2..4803c23 100644
--- a/mingling/src/lib.rs
+++ b/mingling/src/lib.rs
@@ -171,6 +171,18 @@ pub mod feature {
/// Whether the `repl` feature is enabled
pub use crate::features::MINGLING_REPL;
+
+ /// Whether the `json_serde_fmt` feature is enabled
+ pub use crate::features::MINGLING_JSON_SERDE_FMT;
+
+ /// Whether the `ron_serde_fmt` feature is enabled
+ pub use crate::features::MINGLING_RON_SERDE_FMT;
+
+ /// Whether the `toml_serde_fmt` feature is enabled
+ pub use crate::features::MINGLING_TOML_SERDE_FMT;
+
+ /// Whether the `yaml_serde_fmt` feature is enabled
+ pub use crate::features::MINGLING_YAML_SERDE_FMT;
}
mod setups;