We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Supporting a WASM version of MLA would be nice. For instance, it would allow the support of:
Targeting WASM in Rust has some requirements. This issue is made to track them:
For now, compiling to WASM WASI is working:
# Compile to WASI $ cd mlar $ cargo build --target=wasm32-wasi --release # Get the resulting `wasm` file $ cd /workspace/MLA/target/wasm32-wasi/release/ $ file mlar.wasm mlar.wasm: WebAssembly (wasm) binary module version 0x1 (MVP) # Execute it using `wasmtime` (file access is sandboxed) $ wasmtime mlar.wasm list -i /workspaces/MLA/samples/archive_v1.mla -k /workspaces/MLA/samples/test_x25519_archive_v1.pem ... [ERROR] ... failed to find a pre-opened file descriptor ... # Allow accesses to the source directory $ wasmtime --dir /workspaces/MLA/samples/ mlar.wasm list -i /workspaces/MLA/samples/archive_v1.mla -k /workspaces/MLA/samples/test_x25519_archive_v1.pem | head big file_0 file_1 file_10 file_100 file_101 file_102 ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Supporting a WASM version of MLA would be nice.
For instance, it would allow the support of:
Targeting WASM in Rust has some requirements. This issue is made to track them:
For now, compiling to WASM WASI is working:
The text was updated successfully, but these errors were encountered: