//! Parse annotated wat into wasm object files with `linking` and `reloc.CODE`
//! custom sections.
//!
//! The main entry point is [`parse_rwat`], which accepts wat source using the
//! `(@rwat)`, `(@sym)`, and `(@reloc)` annotations and returns encoded wasm
//! bytes suitable for linking with tools such as `wasm-ld`.
pub use parse_rwat;
pub use ;