wit-component 0.246.2

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

interface a {
  resource r;
}

interface b {
  use a.{r};
}

world module {
  export b;
  export some-name: interface {
    use b.{r};

    f: func() -> r;
  }
  export a;
}