forked from MightyPork/elefren-fork
12 lines
277 B
Rust
12 lines
277 B
Rust
#[cfg(feature = "toml")]
|
|
/// Helpers for serializing to/deserializing from toml
|
|
///
|
|
/// In order to use this module, set the "toml" feature in your Cargo.toml:
|
|
///
|
|
/// ```toml,ignore
|
|
/// [dependencies.elefren]
|
|
/// version = "0.13"
|
|
/// features = ["toml"]
|
|
/// ```
|
|
pub mod toml;
|