Jeff Simpson
Jeff Simpson
@sbinet and @vibhavp any update on this? I am trying to run a function in a wasm file that looks like this in wat: ``` (func $transfer (export "transfer") (type...
Yes it looks like it still fails some of the `exec/TestSpec/testdata/spec` tests: ``` --- FAIL: TestSpec (0.01s) --- PASS: TestSpec/testdata/spec/unreachable.wasm (0.00s) --- PASS: TestSpec/testdata/spec/traps_int_rem.wasm (0.00s) --- PASS: TestSpec/testdata/spec/traps_int_div.wasm (0.00s) ---...
After further investigation I found that the problem was in my FunctionIndexSpace for 2 native functions that I added. I was using the wrong signature ParamTypes (ValueTypeI64 instead of ValueTypeI32)...
I am not sure if you already figured this out but I ran into this same issue and found out it was because I was using both wasmtime and wasmer...
For the ContributionsCollection it expects a DateTime so I have set the values by converting time to a DateTime like this: ``` "fromTime": githubv4.DateTime{Time: fromTime}, "toTime": githubv4.DateTime{Time: toTime}, ```
Thanks for the suggestion! Just to confirm I was able to get the derives working by using the wit-bindgen macro directly. However, I think it would still be nice to...
I am looking into this as well. Does this mean there would be build target support for generating modules (wasip1 only) versus generating components (wasip2) from compilers? I have been...
Is there any update on this? I ran into a similar issue with a WIT interface for a resource that has a constructor that takes other resources and may fail....
I ran into the same issue and upgraded to 0.39 which resolved the `httptrace` but still running into missing `httputil` ``` ../../../../../../../pkg/mod/google.golang.org/[email protected]/internal/transport/proxy.go:29:2: package net/http/httputil is not in std ``` Is...