alexcrichton opened PR #6942 from alexcrichton:bindgen-some-sync-imports
to bytecodealliance:main
:
This commit takes a leaf out of
wiggle
's book to enable bindings generation for async host functions where only some host functions are async instead of all of them. Unlikewiggle
however the configuration key isasync_except_imports: ["..."]
to provide a deny-list instead of an allow-list. This is done thinking that the majority of functions probably want to beasync
and it's easier to specify a list of synchronous imports instead of all the async ones. This key name also reflects how exports will be async no matter what, and it's just some imports which may be exempted.<!--
Please make sure you include the following information:
If this work has been discussed elsewhere, please include a link to that
conversation. If it was discussed in an issue, just mention "issue #...".Explain why this change is needed. If the details are in an issue already,
this can be brief.Our development process is documented in the Wasmtime book:
https://docs.wasmtime.dev/contributing-development-process.htmlPlease ensure all communication follows the code of conduct:
https://github.com/bytecodealliance/wasmtime/blob/main/CODE_OF_CONDUCT.md
-->
alexcrichton requested wasmtime-core-reviewers for a review on PR #6942.
alexcrichton requested pchickey for a review on PR #6942.
alexcrichton updated PR #6942.
alexcrichton edited PR #6942:
This commit takes a leaf out of
wiggle
's book to enable bindings
generation for async host functions where only some host functions are
async instead of all of them. This enhances theasync
key with a few
more options:async: { except_imports: ["foo"], only_imports: ["bar"], }
This is beyond what
wiggle
supports where either an allow-list or
deny-list can be specified (although only one can be specified). This
can be useful if either the list of sync imports or the list of async
imports is small.
pchickey submitted PR review.
alexcrichton merged PR #6942.
Last updated: Nov 22 2024 at 16:03 UTC