diff options
Diffstat (limited to 'mingling/src/lib.rs')
| -rw-r--r-- | mingling/src/lib.rs | 12 |
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; |
