DEV Community

Discussion on: Let's Build a Rust Frontend with Yew - Part 1

Collapse
 
brotherbill profile image
Brother Bill Steinberg • Edited

Failed hitting the big button.
Replaced dependencies as displayed below.

conflicting implementations of traityew::Renderable` for type

The fix is to replace in Cargo.toml
[dependencies.yew]
git = "https://github.com/DenisKolodin/yew"

with
[dependencies.yew]
yew = "0.9.2"

Collapse
 
deciduously profile image
Ben Lovy

Yikes, sorry I missed this! Thanks for the fix, I definitely had some issues with Cargo versioning while writing this post. Glad the stable version number works, editing the post.