toml-parse 0.2.11

Set of modules for parsing, sorting and formating toml.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod common;
mod sort;
// mod struc;
mod tkn_tree;
mod toml_fmt;

pub use sort::{sort_toml_items, Matcher};
// pub use struc::{Heading, InTable, KvPair, Table, Toml, Value};
pub use tkn_tree::{
    parse_it,
    walk::{walk, walk_tokens, walk_tokens_non_ws},
    ParsedToml, Parser, SyntaxElement, SyntaxNode, SyntaxNodeExtTrait, SyntaxToken, Tokenizer,
    TomlKind,
};
pub use toml_fmt::Formatter;