wit-parser 0.247.0

Tooling for parsing `*.wit` files and working with their contents.
Documentation
package baz:name {
  interface i3 {
    type a = u32;
  }

  world w3 {
    import imp3: interface {
        use i3.{a};
    }
  }
}

package qux:name {
  interface i4 {
    type b = u32;
  }

  world w4 {
    import imp4: interface {
        use i4.{b};
    }
  }
}