Move the toml helpers to elefren::helpers::toml

This commit is contained in:
Paul Woolcock
2018-08-25 09:13:49 -04:00
parent c5788b8bd5
commit 45f4cbbbfe
6 changed files with 94 additions and 93 deletions
+11
View File
@@ -0,0 +1,11 @@
#[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;