Glue is a parser combinator framework for parsing text based formats, it is easy to use and relatively fast too.
```rust use glue::prelude::*;
fn main() { match take(1.., is(alphabetic)).parse((), "foobar") { Ok((, result, _)) => { println!("Found: {}", result); } Err() => { println!("Nothing found!"); } } }
```
```rust use glue::prelude::*;
enum Token { Identifier(String), }
fn identifier
Ok(((), Token::Identifier(token.into()), input))
}
}
fn main() { assert_eq!( identifier().parse((), "foobar"), Ok(((), Token::Identifier("foobar".into()), "")) ); }
```
Glue does the hard work of implementing error messages for you, have a look at [this example] which created the following message:
1 │ foo xxx
· │ ┃
· ┢━━━━━━━┻━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
· ┃ Unexpected 'xxx' ┃
· ┃ Expected bar ┃
· ┃ At 1:7 of path/to/file ┃
┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
For more information see the [examples directory] in the [git repository].