wit-parser 0.3.1

Tooling for parsing `*.wit` files and working with their contents.
Documentation
{
  "worlds": [
    {
      "name": "the-world",
      "default": {
        "name": ""
      },
      "imports": [
        [
          "foo",
          {
            "name": "foo"
          }
        ],
        [
          "bar",
          {
            "name": "bar"
          }
        ],
        [
          "baz",
          {
            "name": "",
            "functions": [
              {
                "name": "foo",
                "params": [],
                "results": []
              }
            ]
          }
        ]
      ],
      "exports": [
        [
          "foo",
          {
            "name": "foo"
          }
        ],
        [
          "bar",
          {
            "name": "bar"
          }
        ],
        [
          "baz",
          {
            "name": "",
            "functions": [
              {
                "name": "foo",
                "params": [],
                "results": []
              }
            ]
          }
        ]
      ]
    }
  ],
  "interfaces": [
    {
      "name": "foo"
    },
    {
      "name": "bar"
    }
  ]
}