glue 0.8.7

Glue is a parser combinator framework for parsing text based formats, it is easy to use and relatively fast too.
Documentation
1
2
3
4
5
6
7
8
9
fn filter_items(items: Vec<Ini>) -> Vec<Ini> {
    items
        .into_iter()
        .filter(|item| match item {
            Ini::LineBreak => false,
            _ => true,
        })
        .collect()
}