messense / leptos_sse

Leptos server signals synced through Server-Sent-Events (SSE)
Other
29 stars 9 forks source link

Feat: upgrade dependencies: axum to 0.7 and leptos 0.6. Fix axum- and actix-examples #8

Closed LouneCode closed 8 months ago

LouneCode commented 9 months ago

Upgrade dependencies: axum to 0.7 and leptos 0.6

PR upgrades leptos_sse to use the lates leptos and axum versions. Also both axum and actix-examples are fixed.

Fixed examples assume you’re using nightly version of Rust and the nightly feature of Leptos. To use nightly Rust, you can set your toolchain on per-project basics by adding rust-toolchain.toml file in to the project.

rust-toolchain.toml file is added in both example folders.

[toolchain]
channel = "nightly"
targets = ["wasm32-unknown-unknown"]

Upgrade background information and ideas




Let's do IT better

LouneCode commented 9 months ago

OK, I'll remove the rust-toolchain.toml file from the root of the project and see if the project still compiles.

LouneCode commented 9 months ago

It seems Axum 0.7 depends on leptos 0.6 and this project won't compile without the "night" channel toolchain setting at the moment. This also applies to the actix example, as it refers to the sse_events library, which should be the same version level and use the same leptos version 0.6.

Maybe this change should be postponed until the project can be compiled without "nightly" channel configuration?

Do you have any ideas how to solve this problem?

LouneCode commented 9 months ago

rust-toolchain.toml removed from project root folder as requested. I was able to compile this PR without errors after running the rustup update. rustup update
Compile command in root folder:
cargo build

...and thx Your Awesome work ;)