wasm-tools 1.251.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
;; RUN: component unbundle --module-dir %tmpdir --wat % --threshold 0

(component $C
  (core module $outer
    (import "a" "b" (global i32))
  )
  (component $C2
    (core module $inner
      (import "b" "c" (global f32))
    )
  )
)