Crates.io | cargo-wasm |
lib.rs | cargo-wasm |
version | 0.4.1 |
source | src |
created_at | 2017-10-12 05:58:26.145993 |
updated_at | 2018-04-23 14:40:25.291236 |
description | Make developing a wasm project in Rust easy |
homepage | https://github.com/mgattozzi/cargo-wasm |
repository | https://github.com/mgattozzi/cargo-wasm |
max_upload_size | |
id | 35345 |
size | 37,077 |
Right now I have quite a few things going on and I'm more involved with the wasm-wg group currently.
I originally made this as a way to wrap the need to call --target=wasm32-unknown-unknown
each
time. While you can still use this as is, I won't be releasing fixes or taking prs anytime soon as
this project is just not a priority for me right now.
A cargo subcommand for working with Rust wasm projects!
See https://github.com/rust-lang-nursery/rust-wasm for the manual steps if cargo-wasm doesn't work for you.
You'll need the latest stable version of rustc
, rustup
, and cargo
installed already.
# For the latest unstable version
cargo install --git https://github.com/mgattozzi/cargo-wasm
# For the version released to crates.io
cargo install cargo-wasm
That's all you need to do! Then you can start running commands!
If you have never setup rustup
for wasm or wasm-gc
yet at all you need to run:
cargo wasm setup
This will install wasm-gc
for you as well as setting up rustup to use the
wasm32
backend.
To start a new wasm project run:
cargo wasm new <project_name>
This will setup a project with a bare wasm skeleton to run wasm function from an
index.html
file under the site
folder.
This command assumes you are at the project root. To build a wasm project run:
cargo wasm build
All builds are currently built/run in release mode due to a wasm bug in debug builds. See issue #1.
This command assumes you are at the project root. To run a wasm project run:
cargo wasm run
This will try to open your default browser and run the code from there.
All builds are currently built/run in release mode due to a wasm bug in debug builds. See issue #1.
See CONTRIBUTING.md for more information.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.