Allow using WASI APIs in the Python extension (#533)
* Allow using WASI APIs in the Python extension This commit adds support to the Python extension to load the WASI implementation when a WASI module is seen allowing Python to load WebAssembly modules that use WASI. This is pretty primitive right now because there's no way to configure the environment/args/preopens/etc, but it's hoped to be at least a start! * rustfmt * Refactor checks for the wasi module name * Move the check into `wasmtime-wasi` itself * Make it conservative for now and match anything that says `wasi*` * Leave a `FIXME` for improving this later on * Enable missing feature of winapi for `winx`
This commit is contained in:
committed by
Dan Gohman
parent
0006a2af95
commit
d9edb95218
@@ -18,12 +18,13 @@ features = [
|
||||
"errhandlingapi",
|
||||
"handleapi",
|
||||
"processthreadsapi",
|
||||
"profileapi",
|
||||
"securitybaseapi",
|
||||
"winbase",
|
||||
"winerror",
|
||||
"ws2def",
|
||||
"fileapi",
|
||||
"aclapi"
|
||||
"aclapi",
|
||||
]
|
||||
|
||||
[badges]
|
||||
|
||||
Reference in New Issue
Block a user