kayh

Results 36 issues of kayh

https://github.com/vrm-c/vrm-specification/tree/master/specification/VRMC_vrm-1.0

https://github.com/vrm-c/vrm-specification/tree/master/specification/VRMC_vrm_animation-1.0

I have a simple schema: ```wit package example:schema; world my-world { export my-interface; } interface my-interface { resource my-res { constructor(); my-method: func(value: f32); } } ``` I am able...

Hello I am back with more Send confusion :p When calling async functions from the host using `.call_myfn(store).await`, it is required that the store's data is `Send`. Keeping a `ResourceTable`...

When building for web, `ResourceTable` becomes annoying to use because the error type is not compatible with anyhow: ```bash the trait `StdError` is not implemented for `ResourceTableError`, which is required...

```bash panicked at /home/kayh/.cargo/git/checkouts/wasm_component_layer-68f3e78cecb79e56/dd46b91/src/abi.rs:1272:45: called `Option::unwrap()` on a `None` value ``` I have a host-implemented method on a resource that returns `option`. This works when I return a Some, but...