From ec2a7898fa6f4214cef0c50dd0a7fe519f9a945b Mon Sep 17 00:00:00 2001 From: Raimundo Saona <37874270+saona-raimundo@users.noreply.github.com> Date: Thu, 13 Apr 2023 09:10:21 +0200 Subject: [PATCH] Fixes upstream issue in `cargo_toml` --- docs/0.3.4/en-US/tutorials/hello-world.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/0.3.4/en-US/tutorials/hello-world.md b/docs/0.3.4/en-US/tutorials/hello-world.md index df807d3264..baf9d89e5a 100644 --- a/docs/0.3.4/en-US/tutorials/hello-world.md +++ b/docs/0.3.4/en-US/tutorials/hello-world.md @@ -51,7 +51,7 @@ Also notice that we define this `PerseusApp` in a function called `main`, but yo -Now install the Perseus CLI with `cargo install perseus-cli` (you'll need `wasm-pack` to let Perseus build your app, use `cargo install wasm-pack` to install it) to make your life way easier, and deploy your app to by running `perseus serve` inside the root of your project! This will take a while the first time, because it's got to fetch all your dependencies and build your app. +Now install the Perseus CLI with `cargo install perseus-cli --locked` (you'll need `wasm-pack` to let Perseus build your app, use `cargo install wasm-pack` to install it) to make your life way easier, and deploy your app to by running `perseus serve` inside the root of your project! This will take a while the first time, because it's got to fetch all your dependencies and build your app.
Why do I need a CLI?