wit-component 0.5.0

Tooling for working with `*.wit` and component files together.
Documentation
interface shared {
  enum the-enum {
    a
  }
}

world w1 {
  import foo: interface {
    use self.shared.{the-enum}
  }
  import bar: interface {
    use self.shared.{the-enum}
  }
}

world w2 {
  import foo: interface {
    use self.shared.{the-enum}
  }
  export bar: interface {
    use self.shared.{the-enum}
  }
}

world w3 {
  export bar: interface {
    use self.shared.{the-enum}
  }
}