easy_config 0.5.3

A language, parser, and lexer designed to make easy to read and write configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod lexer;
pub mod expression;
pub mod expression_iterator;
#[allow(dead_code)]
pub mod parser;
pub mod serialization;
pub mod lexical_span;
pub mod config_error;
mod binding_map;
mod tests;

#[cfg(feature = "derive")]
pub use easy_config_derive::EasyConfig;