wit-component 0.17.0

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

interface b {
  record the-type {
    f: u8,
  }
}

interface a {
  use b.{the-type}
}

interface b2 {
  use b.{the-type}
}

interface a2 {
  use b.{the-type}
}