From 44bc4fbc31d4f4dd1fc71ce0324df470811f4f8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=86gir=20=C3=96rn=20S=C3=ADmonarson?= Date: Fri, 19 Sep 2025 15:35:51 +0000 Subject: [PATCH] Locking dependencies in cargo-leptos install example (#4295) This limits dependencies errors on install --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78dc9d13c..91a3a8f50 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ Here are some resources for learning more about Leptos: [`cargo-leptos`](https://github.com/leptos-rs/cargo-leptos) is a build tool that's designed to make it easy to build apps that run on both the client and the server, with seamless integration. The best way to get started with a real Leptos project right now is to use `cargo-leptos` and our starter templates for [Actix](https://github.com/leptos-rs/start) or [Axum](https://github.com/leptos-rs/start-axum). ```bash -cargo install cargo-leptos +cargo install cargo-leptos --locked cargo leptos new --git https://github.com/leptos-rs/start-axum cd [your project name] cargo leptos watch