1//! WASM-based map transform implementation
2//!
3//! This module provides a stateless transform that executes WASM modules
4//! for field-level transformations (rename, cast, compute, route).
56pub mod runtime;
7pub mod task;
89pub use runtime::WasmRuntime;
10pub use task::WasmTransformTask;