Skip to main content

wasi_assembler/formats/wasm/
mod.rs

1#![doc = include_str!("readme.md")]
2
3pub mod reader;
4pub mod writer;
5
6#[derive(Copy, Clone, Debug)]
7pub struct WasmReadConfig {
8    pub check_magic_head: bool,
9}