Open zavalyshyn opened 2 years ago
I am facing the exact issue here, did you manage to make it work?
Since reporting this issue I installed wasmedge in my system directly (instead of using a Docker container). It makes things easier for me and I don't run into compatibility issues anymore.
I am facing the same problem, docker or base linux (ubuntu 21). Any updates on that point?
Error: Error during execution of `cargo metadata`: Updating crates.io index
Downloading crates ...
Downloaded wasm-bindgen-shared v0.2.61
Downloaded unicode-ident v1.0.11
Downloaded quote v1.0.33
Downloaded proc-macro2 v1.0.66
error: failed to parse manifest at `/root/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.66/Cargo.toml`
Caused by:
failed to parse the `edition` key
Caused by:
this version of Cargo is older than the `2021` edition, and only supports `2015` and `2018` editions.
rustwasmc is no longer updated. Instead, we moved forward to the quickjs solution for the nodejs extensions. Ref: https://github.com/second-state/wasmedge-quickjs
I will make this repo a public archive.
Hi, I'm following your tutorial using your provided Docker container.
When I use
wasmedge/appdev_x86_64:0.8.2
Docker image therustwasmc build
command fails when trying to compile a bumpalo-3.9.1 package:I suspect the build fails because of outdated
rustc
version used by wasmedge. It's 1.5.0 version in that Docker image.When I try a more recent Docker image (wasmedge/appdev_x86_64:0.9.0) and run the same command I get the following:
So what is the right version to use? And what can I do to build your example code? Thanks