leptos-rs / start-actix-0.6

Starter template for use with the Leptos web framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Lepts setip project fails due to build erros

NuLL3rr0r opened this issue · comments

Just started testing out Leptos:

$ cargo install trunk cargo-leptos   

$cargo leptos new --git https://github.com/leptos-rs/star

And then I do:

$ cargo leptos watch

Or, even:

$ cargo leptos build --release

I get the attached filer errors
build.log

The following appears 33 times in the attached log:

  = note: the `wasm32-unknown-unknown` target may not be installed
  = help: consider downloading the target with `rustup target add wasm32-unknown-unknown`

Have you added the wasm32-unknown-unknown target?

Thanks for pointing that out, I've never been so embarrassed for not carefully reading the logs 🙈 though according to rustup I already have it:

~/.cargo/bin/rustup target add wasm32-unknown-unknown
                                                       
info: component 'rust-std' for target 'wasm32-unknown-unknown' is up to date

I use stable, but the link you've mentioned states "By default, cargo-leptos uses nightly Rust, ..."., so I switched to nightly:

~/.cargo/bin/rustup default nightly
~/.cargo/bin/rustup update

And it's building fine, thank you very much! I'll close the issue since it seems (if I'm not mistaken) nightly is a requirement.