wit-parser 0.5.0

Tooling for parsing `*.wit` files and working with their contents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
interface foo {
  type x = u32
}

default interface something-else {
  type y = u64
}

interface bar {
  use self.foo.{x}
  use pkg.foo.foo.{x as x2}
  use pkg.foo.{y}
  use self.something-else.{y as y2}
  use pkg.bar.{a-name}
}