wac-parser 0.10.0

A library for parsing and encoding WebAssembly Composition (WAC) source files.
Documentation
package test:comp;

/// Import by func type
import a: func();

/// Import by ident
import b: x;

/// Import by package path
import c: foo:bar/baz;

/// Import by func type with kebab name string
import d as "hello-world": func(name: string);

/// Import by inline interface
import e: interface {
    x: func();
};

/// Import by package path with version
import f: foo:bar/baz@1.0.0;

/// Import by func type with kebab name identifier
import g as hello-world: func(name: string);