zpl_toolchain_core 0.1.3

Core parser, emitter, and validator for ZPL II label code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// ZPL abstract syntax tree types.
pub mod ast;
/// Re-exports from the diagnostics crate.
pub mod diag;
/// JSON serialization helpers for the AST.
pub mod dump;
/// ZPL emitter — converts an AST back to formatted ZPL text.
pub mod emit;
/// ZPL lexer — tokenizes raw input into a stream of borrowed tokens.
pub mod lexer;
/// ZPL parser — converts tokens into an AST.
pub mod parser;
/// Re-exports of spec tables types used by the parser and validator.
pub mod tables;