aeon 0.6.0

A configuration file format with macros for brevity.
Documentation
#[derive(Debug)]
pub enum Token {
    LeftBracket,
    RightBracket,
    LeftBrace,
    RightBrace,
    LeftParenthesis,
    RightParenthesis,
    Colon,
    Comma,
    Identifier(String),
    String(String),
    Integer(i64),
    Double(f64),
    At,
    True,
    False,
    Nil,
}