config_file_types/types/
mod.rs

1
2
3
4
5
6
7
8
9
10
#[cfg(feature = "hcl")]
pub mod hcl;
#[cfg(feature = "json")]
pub mod json;
#[cfg(feature = "toml")]
pub mod toml;
#[cfg(feature = "xml")]
pub mod xml;
#[cfg(feature = "yml")]
pub mod yml;