Skip to main content

barcode_pao_wasm/
lib.rs

1//! Barcode generation via C++ WASM engine.
2//!
3//! This crate provides Rust wrappers for the barcode C++ WASM module.
4//! It uses Node.js as a bridge to execute the Emscripten-compiled WASM engine.
5//!
6//! Architecture:
7//! ```text
8//! Rust code → JSON → node _barcode_runner.mjs → barcode.mjs → WASM → JSON → Rust
9//! ```
10
11mod wrapper;
12
13pub use wrapper::*;