You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
277 B
12 lines
277 B
7 years ago
|
#[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.12"
|
||
|
/// features = ["toml"]
|
||
|
/// ```
|
||
|
pub mod toml;
|