NewGyu
NewGyu
Hello developers, I'm a rd lover. I would like to say thank you for the great product. BTW, the same type error is also occurred on Windows 11 Pro, but...
Hello, I also have the same problem when using "Feature". On my environment, it perfectly reproduces when "Feature" is given in .devcontainer.json. ```shell [2024-03-20T02:37:15.235Z] [+] Building 2.6s (3/3) FINISHED docker:default...
Hello, changing `credsStore` value to "pass" resolves this. ```json $ cat ~/.docker/config.json { "credsStore": "pass" } ``` In addition, my environment could not resolve the name of `ghcr.io`. In order...
Sorry for lack of information about my usecase. I used this npm for command line tool which is run on node.js. I didn't thik about the case running on Browser....
Thank you for quick respoindig @peterhuene . As following your advice, I have changed Cargo.toml. https://github.com/NewGyu/wasm-component-example/commit/90bf72c4aa73a7540edc52771be4aebe221bc16c Then the behavior has changed. ```shell $ cargo component build --release Encoding target for...
Did that mean that current `comp1.wasm` binary is incorrect? I guess that it is needed to re-build comp1 after #121 is applied. By the way, import declaration to `newgyu:comp1` is...
Thank you for the details. Information you gave is helpful for me. I think I didn't identify the difference between `component.dependencies` and `component.target.dependencies`. I didn't also get the term of...
Thank you for great improvement. ```shell $ cargo component --version cargo-component-component 0.1.0 (86ccf3e 2023-08-28 wasi:e250334) ``` To use the above version, expected bindings are generated, ```rust cargo_component_bindings::generate!(); // Generated binding...