wit-component 0.225.0

Tooling for working with `*.wit` and component files together.
Documentation
(component
  (core module (;0;)
    (@producers
      (processed-by "wit-component" "$CARGO_PKG_VERSION")
      (processed-by "my-fake-bindgen" "123.45")
    )
  )
  (type (;0;) (resource (rep i32)))
  (core instance (;0;) (instantiate 0))
  (component (;0;)
    (import "import-type-name" (type (;0;) (sub resource)))
    (export (;1;) "name" (type 0))
  )
  (instance (;0;) (instantiate 0
      (with "import-type-name" (type 0))
    )
  )
  (export (;1;) "foo:bar/foo" (instance 0))
  (alias export 1 "name" (type (;1;)))
  (component (;1;)
    (import "import-type-name" (type (;0;) (sub resource)))
    (export (;1;) "name" (type 0))
  )
  (instance (;2;) (instantiate 1
      (with "import-type-name" (type 1))
    )
  )
  (export (;3;) "foo:bar/name" (instance 2))
  (alias export 3 "name" (type (;2;)))
  (component (;2;)
    (import "import-type-name" (type (;0;) (sub resource)))
    (import "import-type-name0" (type (;1;) (eq 0)))
    (export (;2;) "name" (type 1))
  )
  (instance (;4;) (instantiate 2
      (with "import-type-name" (type 1))
      (with "import-type-name0" (type 2))
    )
  )
  (export (;5;) "name" (instance 4))
  (@producers
    (processed-by "wit-component" "$CARGO_PKG_VERSION")
  )
)