A joint crate for GCode parsing and emission.
The parser is written in Rust using the LALRPOP parser generator.
A custom lexer is used as LALRPOP currently does not handle whitespace well. This would prevent proper checksum computation.
cargo run --example parse ./tests/vandy_commodores_logo.gcode
Output: https://gist.github.com/sameer/5fe20dad6faa6329926df48b82e68581
Basic primitives for GCode emission.
See svg2gcode.