summaryrefslogtreecommitdiffstats
path: root/src/helpers/mod.rs
blob: 89adbb7b78887906677ca15946d93be46b091227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#[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.17"
/// features = ["toml"]
/// ```
pub mod toml;

#[cfg(feature = "json")]
/// Helpers for serializing to/deserializing from json
///
/// In order to use this module, set the "json" feature in your Cargo.toml:
///
/// ```toml,ignore
/// [dependencies.elefen]
/// version = "0.17"
/// features = ["json"]
/// ```
pub mod json;

/// Helpers for working with the command line
pub mod cli;