wac_parser/
lib.rs

1//! A library for encoding and decoding WebAssembly compositions.
2
3#![deny(missing_docs)]
4
5mod ast;
6pub mod lexer;
7pub mod resolution;
8
9pub use ast::*;