wit-component 0.8.3

Tooling for working with `*.wit` and component files together.
Documentation
world simple {
  record foo {
  }

  type bar = foo

  import a: func(a: foo) -> bar
  export b: func(a: foo) -> bar
}

interface import-me {
  type foo = u32
}

world with-imports {
  use self.import-me.{foo}

  import a: func(a: foo)
  export b: func(a: foo)
}