wit-component 0.246.2

Tooling for working with `*.wit` and component files together.
Documentation
package foo:foo;

world foo {
  import foo: func();
  export foo2: func();

  import bar: func(arg: u32);
  export bar2: func() -> u32;

  import some-interface: interface {}
  export another-interface: interface {}
}

world just-import {
  import foo: func();
}

world just-export {
  export foo: func();
}