wit-bindgen icon indicating copy to clipboard operation
wit-bindgen copied to clipboard

A language binding generator for WebAssembly interface types

Results 226 wit-bindgen issues
Sort by recently updated
recently updated
newest added

cc @bytecodealliance/dotnet-core As part of the future work, I'm was trying to tidy up the location of the import and export methods. At present we have this for the `import-export-same-func.wit`...

It would be nice if wit-bindgen could have first class support for F#. Since wit-bindgen already supports C#, I've managed to come up with something a little hacky so that...

Changes ``` --stubs If true, generate stub implementations for any exported functions, interfaces, and/or resources ``` to ``` --stubs Whether to generate stub implementations for any exported functions, interfaces, and/or...

Does anything speak against adding a `--generate-stub` flag for Rust, like the one for CSharp? ```shell > wit-bindgen csharp --help | grep stub --generate-stub Whether or not to generate a...

Reading: https://component-model.bytecodealliance.org/design/wit.html#comments I tried applying comments to my wit files, and documentation and generating markdown. But they do not work as I would expect. All comments are ending up in...

I have wit file like this: ``` package my:demo; world demo { record preset { id: u16, len: u16, offset: u16 } export get-presets: func() -> list; } ``` How...

gen-c