cargo-wasi icon indicating copy to clipboard operation
cargo-wasi copied to clipboard

A lightweight Cargo subcommand to build Rust code for the `wasm32-wasi` target

Results 27 cargo-wasi issues
Sort by recently updated
recently updated
newest added

When I run ``` cargo new missing_manifest_path cargo wasi test --manifest-path missing_manifest_path/Cargo.toml ``` I get the following error ``` error: could not find `Cargo.toml` in `/private/tmp` or any parent directory...

Trying to run my library with `cargo wasi test --doc` has no output besides `Finished test [unoptimized + debuginfo] target(s) in 0.04s`. I have doc tests present in my code,...

1. As @PiotrSikora says, in order to run`wasm_opt`, a dynamic library needs to be installed (for Linux and mac os). https://github.com/bytecodealliance/cargo-wasi/pull/91#issuecomment-787433832 And the cache folder's structure will be as follow....

I am having an issue building the **markdown** example. I clone the repo and tried to build the markdown example using the following command `cargo wasi build --release` The build...

Hello! I am very new to the wasm ecosystem and trying a bit all the tools/framework/runtime out there. I am working on porting https://github.com/cloudflare/sliceslice-rs to wasm. That project requires simd...

```bash cargo add zstd-sys # or any other C-dependent crate cargo wasi build ``` Results in: ``` warning: zstd/lib/common/zstd_deps.h:29:10: fatal error: 'string.h' file not found warning: #include … error occurred:...

Updates the requirements on [predicates](https://github.com/assert-rs/predicates-rs) to permit the latest version. Changelog Sourced from predicates's changelog. [2.0.2] - 2021-08-16 Added All predicates now implement Send and Sync when it's appropriate [2.0.1]...

dependencies

Updates the requirements on [wasmparser](https://github.com/bytecodealliance/wasm-tools) to permit the latest version. Commits 4bc2577 Bump crate versions (#302) 24d9682 Add memarg64 to FunctionBody (#303) ca7ac1b Document MemoryImmediate::offset 52a8049 Flatten MemoryType into a...

dependencies

Updates the requirements on [semver](https://github.com/dtolnay/semver) to permit the latest version. Commits a2ce577 Release 1.0.0 ac8e718 Fix typo in Version syntax docs f55448e Merge pull request #239 from jtgeibel/tests-for-issue-217 6fc4e39 Add...

dependencies

Something like `cargo wasi build -t wat`. Right now, I'm running `cargo wasi build` followed by `wasm2wat /path/to/project.wasm` which generates `/path/to/project.wat`.