24 releases

Uses old Rust 2015

0.10.0 Jul 27, 2020
0.9.2 Sep 10, 2019
0.9.1 Aug 12, 2019
0.9.0 Jul 24, 2019
0.2.2 Mar 11, 2018

#344 in WebAssembly

Download history 1407/week @ 2023-12-18 910/week @ 2023-12-25 1434/week @ 2024-01-01 1993/week @ 2024-01-08 2521/week @ 2024-01-15 2008/week @ 2024-01-22 2438/week @ 2024-01-29 2266/week @ 2024-02-05 2913/week @ 2024-02-12 2210/week @ 2024-02-19 2211/week @ 2024-02-26 1929/week @ 2024-03-04 2413/week @ 2024-03-11 2469/week @ 2024-03-18 2627/week @ 2024-03-25 2783/week @ 2024-04-01

10,417 downloads per month
Used in 63 crates (54 directly)

Apache-2.0

15MB
252K SLoC

WebAssembly 139K SLoC // 0.0% comments C++ 74K SLoC // 0.1% comments Python 21K SLoC // 0.3% comments JavaScript 9K SLoC // 0.1% comments Visual Studio Project 3K SLoC C 2.5K SLoC // 0.1% comments Rust 1.5K SLoC // 0.0% comments Bazel 512 SLoC // 0.2% comments Automake 422 SLoC // 0.2% comments Shell 399 SLoC // 0.6% comments M4 254 SLoC // 0.4% comments Visual Studio Solution 233 SLoC VB6 149 SLoC Xcode Config 32 SLoC // 0.7% comments Batch 6 SLoC // 0.7% comments Forge Config 1 SLoC

WABT bindings for Rust

crates.io docs.rs

Rust bindings for WABT.

Usage

Add this to your Cargo.toml:

[dependencies]
wabt = "0.9.0"

Use cases

Assemble a given program in WebAssembly text format (aka wat) and translate it into binary.

extern crate wabt;
use wabt::wat2wasm;

fn main() {
    assert_eq!(
        wat2wasm("(module)").unwrap(),
        &[
            0, 97, 115, 109, // \0ASM - magic
            1, 0, 0, 0       //  0x01 - version
        ]
    );
}

or disassemble a wasm binary into the text format.

extern crate wabt;
use wabt::wasm2wat;
fn main() {
    assert_eq!(
        wasm2wat(&[
            0, 97, 115, 109, // \0ASM - magic
            1, 0, 0, 0       //    01 - version
        ]),
        Ok("(module)\n".to_owned()),
    );
}

wabt can be also used for parsing the official testsuite scripts.

use wabt::script::{ScriptParser, Command, CommandKind, Action, Value};

let wast = r#"
;; Define anonymous module with function export named `sub`.
(module
  (func (export "sub") (param $x i32) (param $y i32) (result i32)
    ;; return x - y;
    (i32.sub
      (get_local $x) (get_local $y)
    )
  )
)

;; Assert that invoking export `sub` with parameters (8, 3)
;; should return 5.
(assert_return
  (invoke "sub"
    (i32.const 8) (i32.const 3)
  )
  (i32.const 5)
)
"#;

let mut parser = ScriptParser::<f32, f64>::from_str(wast)?;
while let Some(Command { kind, .. }) = parser.next()? {
    match kind {
        CommandKind::Module { module, name } => {
            // The module is declared as anonymous.
            assert_eq!(name, None);

            // Convert the module into the binary representation and check the magic number.
            let module_binary = module.into_vec();
            assert_eq!(&module_binary[0..4], &[0, 97, 115, 109]);
        }
        CommandKind::AssertReturn { action, expected } => {
            assert_eq!(action, Action::Invoke {
                module: None,
                field: "sub".to_string(),
                args: vec![
                    Value::I32(8),
                    Value::I32(3)
                ],
            });
            assert_eq!(expected, vec![Value::I32(5)]);
        },
        _ => panic!("there are no other commands apart from that defined above"),
    }
}

Alternatives

You might find wat or wast crate useful if you only want to parse .wat or .wast source. The advantage of using them is that they are implemented completely in Rust. Moreover, wast among other things allows you to add your own extensions to WebAssembly text format.

For print the text representation of a wasm binary, wasmprinter can work better for you, since it is implemented completely in Rust.

Dependencies