component-model
component-model copied to clipboard
Repository for design and specification of the Component Model
See #534 - I stuck `fullversion` in the import/export productions rather than `interfacename` because I wanted it to be clear that it wouldn't be lowered into the core name. -...
Wasmtime currently performs a [slightly complicated dance](https://docs.rs/wasmtime/34.0.1/wasmtime/component/struct.Linker.html#names-and-semver) to allow a guest import/export of an interface to be linked with a different but semver-compatible host version of that interface. For a...
Currently function parameters cannot have documentation. This feels like pretty arbitrary restriction (which might be biased, even if not intentionally, from rust not supporting it? It is a very requested...
# Pre-Proposal: Wasm GC Support in the Canonical ABI This issue proposes extensions to the Component Model's Canonical ABI for Wasm GC support and describes some of the motivation for...
I came across the use case in [the wasmCloud runtime linking docs](https://wasmcloud.com/docs/concepts/linking-components/linking-at-runtime/#defining-and-using-link-names). Excerpt: > For example, a component may use the `wasi:keyvalue` interface to link to both a local key-value...
Currently, adding a new case to an enum or variant, would likely be a breaking change, as user code needs to handle a new case. It would be great to...
I wanted to write up something quick, and am happy to expand on the request if there's any interest in doing so. The short of it is that I believe...
This parses: ``` world union-my-world-a { include world-one; include world-two with { a as b } } ``` but if I add a `;` to the `with` it fails ```...
While discussing [this componentize-py issue](https://github.com/bytecodealliance/componentize-py/issues/146), I realized it would be useful to allow a component to be entered one last time _after_ it traps in order to get additional debug...
Programs like eBPF usually hire a callback function to let underlying framework to invoke it when a certain kind of event happened, to support this in WASM component model, it...