wit-component 0.247.0

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

world foo {
  import some-interface: interface {
  }
  import foo: func();
  import bar: func(arg: u32);

  export foo2: func();
  export bar2: func() -> u32;
  export another-interface: interface {
  }
}
world just-import {
  import foo: func();
}
world just-export {
  export foo: func();
}