Bailey Hayes
Bailey Hayes
Wasmtime supports [wasi-crypto](https://github.com/WebAssembly/wasi-crypto) behind a [flag](https://docs.wasmtime.dev/stability-wasi-proposals-support.html). We should support Wasm modules and components that depend on wasi-crypto APIs. For implementation, it may be valuable to have a provider that is...
Today Smithy documentation is generated for https://wasmcloud.github.io/interfaces/. With the proposed changes for an actor SDK based on WIT (#336), we should ensure that these new interfaces similarly have documentation. This...
How should components bundle static assets? We have seen several early incantations of this for WebAssembly modules, e.g. [emscripten file systems](https://emscripten.org/docs/porting/files/file_systems_overview.html). Many languages have a concept of embedding data, e.g....
This PR defaults `cargo wasi test` to always be run with the current working directory preopened. The goal is to allow existing tests to run without modification. Fixes #128
Related to #17, tests that rely on any kind of test file, like expected results or test data, are unable to run with `cargo wasi test`. When running tests, we...
When building with clang and warnings, I bumped into a warning about a potential buffer overflow. This is easily mitigated by changing to snprintf.
### RFC Title RFC: Create a Postgres specific interface ### Introduction Prior to 1.0, wasmCloud supported a `wasmCloud-sqldb` contract. Very similar to `wasmCloud-sqldb`, there is a proposal for `wasi:sql` world...
- changed make target for test to depend on a wasm module. That way we can test both release and debug in the CI. - If I spied rust unit...
- recurse through dirs and build all - hook for running tests in each proj - in main gh action, secret for publish to GCS - filter by changed files
Fixed SIMD is enabled by default in the [wasmtime runtime](https://docs.rs/wasmtime/latest/wasmtime/struct.Config.html#method.wasm_simd). A very straightforward example with few dependencies is desired before adding a more complex real-world use-case. For example `multiply_arrays` from...