wit-component 0.238.0

Tooling for working with `*.wit` and component files together.
Documentation
(component
  (core module (;0;)
    (type (;0;) (func (param i32) (result i32)))
    (type (;1;) (func (result i32)))
    (import "[export]foo:bar/foo" "[resource-new]r" (func $new (;0;) (type 0)))
    (export "anon#f" (func 1))
    (func (;1;) (type 1) (result i32)
      i32.const 100
      call $new
    )
    (@producers
      (processed-by "wit-component" "$CARGO_PKG_VERSION")
      (processed-by "my-fake-bindgen" "123.45")
    )
  )
  (type (;0;) (resource (rep i32)))
  (type (;1;) (own 0))
  (core func (;0;) (canon resource.new 0))
  (core instance (;0;)
    (export "[resource-new]r" (func 0))
  )
  (core instance (;1;) (instantiate 0
      (with "[export]foo:bar/foo" (instance 0))
    )
  )
  (component (;0;)
    (import "import-type-r" (type (;0;) (sub resource)))
    (export (;1;) "r" (type 0))
    (type (;2;) (own 1))
    (export (;3;) "handle" (type 2))
  )
  (instance (;0;) (instantiate 0
      (with "import-type-r" (type 0))
    )
  )
  (export (;1;) "foo:bar/foo" (instance 0))
  (type (;2;) (func (result 1)))
  (alias core export 1 "anon#f" (core func (;1;)))
  (func (;0;) (type 2) (canon lift (core func 1)))
  (alias export 1 "r" (type (;3;)))
  (alias export 1 "handle" (type (;4;)))
  (component (;1;)
    (import "import-type-r" (type (;0;) (sub resource)))
    (type (;1;) (own 0))
    (import "import-type-handle" (type (;2;) (eq 1)))
    (import "import-type-handle0" (type (;3;) (eq 2)))
    (type (;4;) (func (result 3)))
    (import "import-func-f" (func (;0;) (type 4)))
    (export (;5;) "handle" (type 2))
    (type (;6;) (func (result 5)))
    (export (;1;) "f" (func 0) (func (type 6)))
  )
  (instance (;2;) (instantiate 1
      (with "import-func-f" (func 0))
      (with "import-type-r" (type 3))
      (with "import-type-handle" (type 4))
      (with "import-type-handle0" (type 1))
    )
  )
  (export (;3;) "anon" (instance 2))
  (@producers
    (processed-by "wit-component" "$CARGO_PKG_VERSION")
  )
)