wit-parser 0.221.0

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

  world w {
    import imp: interface {
        use i.{a};
    }
  }
}

package bar:name {
  interface i {
    type a = u32;
  }

  world w {
    import imp: interface {
        use i.{a};
    }
  }
}