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
fn name_character(character: char) -> bool {
    character.is_alphanumeric() || character == '_' || character == '-'
}