-
|
Dioxus noob here. I'm on nixos and only have wasm-bindgen-cli 0.2.105. I get this error: Ok fine. So thought I'd downgrade dioxus in my Cargo.toml from 0.7.2 to 0.7.1. But when I do that, the version in Cargo.lock remains 0.7.2. If I change dioxus to 0.6 in the Cargo.toml, then the versions in Cargo.lock change. Why would I be unable to use 0.7.1? TY |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The version in your |
Beta Was this translation helpful? Give feedback.
The version in your
cargo.tomlby default is a minimum version within the same major version.dioxus = "0.7.1"means dioxus needs to be between 0.7.1 and 0.8. To set an exact version you need = like this:dioxus = "=0.7.1"