zpl-forge 0.2.0

A fast, memory-safe ZPL (Zebra Programming Language) parser and renderer.
Documentation
1
2
3
4
5
6
7
8
9
10
//! # AST (Abstract Syntax Tree)
//!
//! This module contains the logic for parsing raw ZPL strings into a structured
//! sequence of commands. It uses `nom` for efficient and robust parsing.

pub mod cmd;
pub mod commons;
mod parser;

pub use parser::parse_zpl;