From 30e5327c1cae3b4ed0ed509f803caa67da968234 Mon Sep 17 00:00:00 2001 From: Kumar Anirudha Date: Wed, 3 Apr 2024 23:03:55 +0530 Subject: [PATCH] updated readme instructions on compiling --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fc54acf..baadab3 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,13 @@ You can see the full list of tasks available by running `just --list`. ### Compiling +Best to run `cargo update` to have synced versions just in case. + You can compile your module by running the following command: ```sh just wasm ``` -This should result in an artifacts directory being created in your project root. Inside you will find a `my_module.wasm` file that is your module’s binary. +This should result in an artifacts directory being created in your project root. Inside you will find a `my_module.wasm` file that is your module’s binary. Make sure it's the same name as mentioned in `Cargo.toml` file. If not, just edit it to match. ### Testing